Documentation
¶
Overview ¶
Package libc is a partial reimplementation of C libc in pure Go.
Package libc provides run time support for programs generated by the ccgo C to Go transpiler, version 4 or later.
Concurrency ¶
Many C libc functions are not thread safe. Such functions are not safe for concurrent use by multiple goroutines in the Go translation as well.
Thread Local Storage ¶
C threads are modeled as Go goroutines. Every such C thread, ie. a Go goroutine, must use its own Thread Local Storage instance implemented by the TLS type.
Signals ¶
Signal handling in translated C code is not coordinated with the Go runtime. This is probably the same as when running C code via CGo.
Environmental variables ¶
This package synchronizes its environ with the current Go environ lazily and only once.
libc API documentation copyright ¶
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Since the Linux kernel and libraries are constantly changing, this manual page may be incorrect or out-of-date. The author(s) assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. The author(s) may not have taken the same level of care in the production of this manual, which is licensed free of charge, as they might when working professionally. Formatted or processed versions of this manual, if unaccompanied by the source, must acknowledge the copyright and authors of this work.
Index ¶
- Constants
- Variables
- func AssignAddComplex64(p *complex64, v complex64) complex64
- func AssignAddComplex128(p *complex128, v complex128) complex128
- func AssignAddFloat32(p *float32, v float32) float32
- func AssignAddFloat64(p *float64, v float64) float64
- func AssignAddInt8(p *int8, v int8) int8
- func AssignAddInt16(p *int16, v int16) int16
- func AssignAddInt32(p *int32, v int32) int32
- func AssignAddInt64(p *int64, v int64) int64
- func AssignAddPtrComplex64(p uintptr, v complex64) complex64
- func AssignAddPtrComplex128(p uintptr, v complex128) complex128
- func AssignAddPtrFloat32(p uintptr, v float32) float32
- func AssignAddPtrFloat64(p uintptr, v float64) float64
- func AssignAddPtrInt8(p uintptr, v int8) int8
- func AssignAddPtrInt16(p uintptr, v int16) int16
- func AssignAddPtrInt32(p uintptr, v int32) int32
- func AssignAddPtrInt64(p uintptr, v int64) int64
- func AssignAddPtrUint8(p uintptr, v uint8) uint8
- func AssignAddPtrUint16(p uintptr, v uint16) uint16
- func AssignAddPtrUint32(p uintptr, v uint32) uint32
- func AssignAddPtrUint64(p uintptr, v uint64) uint64
- func AssignAddPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignAddUint8(p *uint8, v uint8) uint8
- func AssignAddUint16(p *uint16, v uint16) uint16
- func AssignAddUint32(p *uint32, v uint32) uint32
- func AssignAddUint64(p *uint64, v uint64) uint64
- func AssignAddUintptr(p *uintptr, v uintptr) uintptr
- func AssignAndInt8(p *int8, v int8) int8
- func AssignAndInt16(p *int16, v int16) int16
- func AssignAndInt32(p *int32, v int32) int32
- func AssignAndInt64(p *int64, v int64) int64
- func AssignAndPtrInt8(p uintptr, v int8) int8
- func AssignAndPtrInt16(p uintptr, v int16) int16
- func AssignAndPtrInt32(p uintptr, v int32) int32
- func AssignAndPtrInt64(p uintptr, v int64) int64
- func AssignAndPtrUint8(p uintptr, v uint8) uint8
- func AssignAndPtrUint16(p uintptr, v uint16) uint16
- func AssignAndPtrUint32(p uintptr, v uint32) uint32
- func AssignAndPtrUint64(p uintptr, v uint64) uint64
- func AssignAndPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignAndUint8(p *uint8, v uint8) uint8
- func AssignAndUint16(p *uint16, v uint16) uint16
- func AssignAndUint32(p *uint32, v uint32) uint32
- func AssignAndUint64(p *uint64, v uint64) uint64
- func AssignAndUintptr(p *uintptr, v uintptr) uintptr
- func AssignBitFieldPtr8Int8(p uintptr, v int8, w, off int, mask uint8) int8
- func AssignBitFieldPtr8Int16(p uintptr, v int16, w, off int, mask uint8) int16
- func AssignBitFieldPtr8Int32(p uintptr, v int32, w, off int, mask uint8) int32
- func AssignBitFieldPtr8Int64(p uintptr, v int64, w, off int, mask uint8) int64
- func AssignBitFieldPtr8Uint8(p uintptr, v uint8, w, off int, mask uint8) uint8
- func AssignBitFieldPtr8Uint16(p uintptr, v uint16, w, off int, mask uint8) uint16
- func AssignBitFieldPtr8Uint32(p uintptr, v uint32, w, off int, mask uint8) uint32
- func AssignBitFieldPtr8Uint64(p uintptr, v uint64, w, off int, mask uint8) uint64
- func AssignBitFieldPtr16Int8(p uintptr, v int8, w, off int, mask uint16) int8
- func AssignBitFieldPtr16Int16(p uintptr, v int16, w, off int, mask uint16) int16
- func AssignBitFieldPtr16Int32(p uintptr, v int32, w, off int, mask uint16) int32
- func AssignBitFieldPtr16Int64(p uintptr, v int64, w, off int, mask uint16) int64
- func AssignBitFieldPtr16Uint8(p uintptr, v uint8, w, off int, mask uint16) uint8
- func AssignBitFieldPtr16Uint16(p uintptr, v uint16, w, off int, mask uint16) uint16
- func AssignBitFieldPtr16Uint32(p uintptr, v uint32, w, off int, mask uint16) uint32
- func AssignBitFieldPtr16Uint64(p uintptr, v uint64, w, off int, mask uint16) uint64
- func AssignBitFieldPtr32Int8(p uintptr, v int8, w, off int, mask uint32) int8
- func AssignBitFieldPtr32Int16(p uintptr, v int16, w, off int, mask uint32) int16
- func AssignBitFieldPtr32Int32(p uintptr, v int32, w, off int, mask uint32) int32
- func AssignBitFieldPtr32Int64(p uintptr, v int64, w, off int, mask uint32) int64
- func AssignBitFieldPtr32Uint8(p uintptr, v uint8, w, off int, mask uint32) uint8
- func AssignBitFieldPtr32Uint16(p uintptr, v uint16, w, off int, mask uint32) uint16
- func AssignBitFieldPtr32Uint32(p uintptr, v uint32, w, off int, mask uint32) uint32
- func AssignBitFieldPtr32Uint64(p uintptr, v uint64, w, off int, mask uint32) uint64
- func AssignBitFieldPtr64Int8(p uintptr, v int8, w, off int, mask uint64) int8
- func AssignBitFieldPtr64Int16(p uintptr, v int16, w, off int, mask uint64) int16
- func AssignBitFieldPtr64Int32(p uintptr, v int32, w, off int, mask uint64) int32
- func AssignBitFieldPtr64Int64(p uintptr, v int64, w, off int, mask uint64) int64
- func AssignBitFieldPtr64Uint8(p uintptr, v uint8, w, off int, mask uint64) uint8
- func AssignBitFieldPtr64Uint16(p uintptr, v uint16, w, off int, mask uint64) uint16
- func AssignBitFieldPtr64Uint32(p uintptr, v uint32, w, off int, mask uint64) uint32
- func AssignBitFieldPtr64Uint64(p uintptr, v uint64, w, off int, mask uint64) uint64
- func AssignComplex64(p *complex64, v complex64) complex64
- func AssignComplex128(p *complex128, v complex128) complex128
- func AssignDivComplex64(p *complex64, v complex64) complex64
- func AssignDivComplex128(p *complex128, v complex128) complex128
- func AssignDivFloat32(p *float32, v float32) float32
- func AssignDivFloat64(p *float64, v float64) float64
- func AssignDivInt8(p *int8, v int8) int8
- func AssignDivInt16(p *int16, v int16) int16
- func AssignDivInt32(p *int32, v int32) int32
- func AssignDivInt64(p *int64, v int64) int64
- func AssignDivPtrComplex64(p uintptr, v complex64) complex64
- func AssignDivPtrComplex128(p uintptr, v complex128) complex128
- func AssignDivPtrFloat32(p uintptr, v float32) float32
- func AssignDivPtrFloat64(p uintptr, v float64) float64
- func AssignDivPtrInt8(p uintptr, v int8) int8
- func AssignDivPtrInt16(p uintptr, v int16) int16
- func AssignDivPtrInt32(p uintptr, v int32) int32
- func AssignDivPtrInt64(p uintptr, v int64) int64
- func AssignDivPtrUint8(p uintptr, v uint8) uint8
- func AssignDivPtrUint16(p uintptr, v uint16) uint16
- func AssignDivPtrUint32(p uintptr, v uint32) uint32
- func AssignDivPtrUint64(p uintptr, v uint64) uint64
- func AssignDivPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignDivUint8(p *uint8, v uint8) uint8
- func AssignDivUint16(p *uint16, v uint16) uint16
- func AssignDivUint32(p *uint32, v uint32) uint32
- func AssignDivUint64(p *uint64, v uint64) uint64
- func AssignDivUintptr(p *uintptr, v uintptr) uintptr
- func AssignFloat32(p *float32, v float32) float32
- func AssignFloat64(p *float64, v float64) float64
- func AssignInt8(p *int8, v int8) int8
- func AssignInt16(p *int16, v int16) int16
- func AssignInt32(p *int32, v int32) int32
- func AssignInt64(p *int64, v int64) int64
- func AssignMulComplex64(p *complex64, v complex64) complex64
- func AssignMulComplex128(p *complex128, v complex128) complex128
- func AssignMulFloat32(p *float32, v float32) float32
- func AssignMulFloat64(p *float64, v float64) float64
- func AssignMulInt8(p *int8, v int8) int8
- func AssignMulInt16(p *int16, v int16) int16
- func AssignMulInt32(p *int32, v int32) int32
- func AssignMulInt64(p *int64, v int64) int64
- func AssignMulPtrComplex64(p uintptr, v complex64) complex64
- func AssignMulPtrComplex128(p uintptr, v complex128) complex128
- func AssignMulPtrFloat32(p uintptr, v float32) float32
- func AssignMulPtrFloat64(p uintptr, v float64) float64
- func AssignMulPtrInt8(p uintptr, v int8) int8
- func AssignMulPtrInt16(p uintptr, v int16) int16
- func AssignMulPtrInt32(p uintptr, v int32) int32
- func AssignMulPtrInt64(p uintptr, v int64) int64
- func AssignMulPtrUint8(p uintptr, v uint8) uint8
- func AssignMulPtrUint16(p uintptr, v uint16) uint16
- func AssignMulPtrUint32(p uintptr, v uint32) uint32
- func AssignMulPtrUint64(p uintptr, v uint64) uint64
- func AssignMulPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignMulUint8(p *uint8, v uint8) uint8
- func AssignMulUint16(p *uint16, v uint16) uint16
- func AssignMulUint32(p *uint32, v uint32) uint32
- func AssignMulUint64(p *uint64, v uint64) uint64
- func AssignMulUintptr(p *uintptr, v uintptr) uintptr
- func AssignOrInt8(p *int8, v int8) int8
- func AssignOrInt16(p *int16, v int16) int16
- func AssignOrInt32(p *int32, v int32) int32
- func AssignOrInt64(p *int64, v int64) int64
- func AssignOrPtrInt8(p uintptr, v int8) int8
- func AssignOrPtrInt16(p uintptr, v int16) int16
- func AssignOrPtrInt32(p uintptr, v int32) int32
- func AssignOrPtrInt64(p uintptr, v int64) int64
- func AssignOrPtrUint8(p uintptr, v uint8) uint8
- func AssignOrPtrUint16(p uintptr, v uint16) uint16
- func AssignOrPtrUint32(p uintptr, v uint32) uint32
- func AssignOrPtrUint64(p uintptr, v uint64) uint64
- func AssignOrPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignOrUint8(p *uint8, v uint8) uint8
- func AssignOrUint16(p *uint16, v uint16) uint16
- func AssignOrUint32(p *uint32, v uint32) uint32
- func AssignOrUint64(p *uint64, v uint64) uint64
- func AssignOrUintptr(p *uintptr, v uintptr) uintptr
- func AssignPtrComplex64(p uintptr, v complex64) complex64
- func AssignPtrComplex128(p uintptr, v complex128) complex128
- func AssignPtrFloat32(p uintptr, v float32) float32
- func AssignPtrFloat64(p uintptr, v float64) float64
- func AssignPtrInt8(p uintptr, v int8) int8
- func AssignPtrInt16(p uintptr, v int16) int16
- func AssignPtrInt32(p uintptr, v int32) int32
- func AssignPtrInt64(p uintptr, v int64) int64
- func AssignPtrUint8(p uintptr, v uint8) uint8
- func AssignPtrUint16(p uintptr, v uint16) uint16
- func AssignPtrUint32(p uintptr, v uint32) uint32
- func AssignPtrUint64(p uintptr, v uint64) uint64
- func AssignPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignRemInt8(p *int8, v int8) int8
- func AssignRemInt16(p *int16, v int16) int16
- func AssignRemInt32(p *int32, v int32) int32
- func AssignRemInt64(p *int64, v int64) int64
- func AssignRemPtrInt8(p uintptr, v int8) int8
- func AssignRemPtrInt16(p uintptr, v int16) int16
- func AssignRemPtrInt32(p uintptr, v int32) int32
- func AssignRemPtrInt64(p uintptr, v int64) int64
- func AssignRemPtrUint8(p uintptr, v uint8) uint8
- func AssignRemPtrUint16(p uintptr, v uint16) uint16
- func AssignRemPtrUint32(p uintptr, v uint32) uint32
- func AssignRemPtrUint64(p uintptr, v uint64) uint64
- func AssignRemPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignRemUint8(p *uint8, v uint8) uint8
- func AssignRemUint16(p *uint16, v uint16) uint16
- func AssignRemUint32(p *uint32, v uint32) uint32
- func AssignRemUint64(p *uint64, v uint64) uint64
- func AssignRemUintptr(p *uintptr, v uintptr) uintptr
- func AssignShlInt8(p *int8, v int) int8
- func AssignShlInt16(p *int16, v int) int16
- func AssignShlInt32(p *int32, v int) int32
- func AssignShlInt64(p *int64, v int) int64
- func AssignShlPtrInt8(p uintptr, v int) int8
- func AssignShlPtrInt16(p uintptr, v int) int16
- func AssignShlPtrInt32(p uintptr, v int) int32
- func AssignShlPtrInt64(p uintptr, v int) int64
- func AssignShlPtrUint8(p uintptr, v int) uint8
- func AssignShlPtrUint16(p uintptr, v int) uint16
- func AssignShlPtrUint32(p uintptr, v int) uint32
- func AssignShlPtrUint64(p uintptr, v int) uint64
- func AssignShlPtrUintptr(p uintptr, v int) uintptr
- func AssignShlUint8(p *uint8, v int) uint8
- func AssignShlUint16(p *uint16, v int) uint16
- func AssignShlUint32(p *uint32, v int) uint32
- func AssignShlUint64(p *uint64, v int) uint64
- func AssignShlUintptr(p *uintptr, v int) uintptr
- func AssignShrInt8(p *int8, v int) int8
- func AssignShrInt16(p *int16, v int) int16
- func AssignShrInt32(p *int32, v int) int32
- func AssignShrInt64(p *int64, v int) int64
- func AssignShrPtrInt8(p uintptr, v int) int8
- func AssignShrPtrInt16(p uintptr, v int) int16
- func AssignShrPtrInt32(p uintptr, v int) int32
- func AssignShrPtrInt64(p uintptr, v int) int64
- func AssignShrPtrUint8(p uintptr, v int) uint8
- func AssignShrPtrUint16(p uintptr, v int) uint16
- func AssignShrPtrUint32(p uintptr, v int) uint32
- func AssignShrPtrUint64(p uintptr, v int) uint64
- func AssignShrPtrUintptr(p uintptr, v int) uintptr
- func AssignShrUint8(p *uint8, v int) uint8
- func AssignShrUint16(p *uint16, v int) uint16
- func AssignShrUint32(p *uint32, v int) uint32
- func AssignShrUint64(p *uint64, v int) uint64
- func AssignShrUintptr(p *uintptr, v int) uintptr
- func AssignSubComplex64(p *complex64, v complex64) complex64
- func AssignSubComplex128(p *complex128, v complex128) complex128
- func AssignSubFloat32(p *float32, v float32) float32
- func AssignSubFloat64(p *float64, v float64) float64
- func AssignSubInt8(p *int8, v int8) int8
- func AssignSubInt16(p *int16, v int16) int16
- func AssignSubInt32(p *int32, v int32) int32
- func AssignSubInt64(p *int64, v int64) int64
- func AssignSubPtrComplex64(p uintptr, v complex64) complex64
- func AssignSubPtrComplex128(p uintptr, v complex128) complex128
- func AssignSubPtrFloat32(p uintptr, v float32) float32
- func AssignSubPtrFloat64(p uintptr, v float64) float64
- func AssignSubPtrInt8(p uintptr, v int8) int8
- func AssignSubPtrInt16(p uintptr, v int16) int16
- func AssignSubPtrInt32(p uintptr, v int32) int32
- func AssignSubPtrInt64(p uintptr, v int64) int64
- func AssignSubPtrUint8(p uintptr, v uint8) uint8
- func AssignSubPtrUint16(p uintptr, v uint16) uint16
- func AssignSubPtrUint32(p uintptr, v uint32) uint32
- func AssignSubPtrUint64(p uintptr, v uint64) uint64
- func AssignSubPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignSubUint8(p *uint8, v uint8) uint8
- func AssignSubUint16(p *uint16, v uint16) uint16
- func AssignSubUint32(p *uint32, v uint32) uint32
- func AssignSubUint64(p *uint64, v uint64) uint64
- func AssignSubUintptr(p *uintptr, v uintptr) uintptr
- func AssignUint8(p *uint8, v uint8) uint8
- func AssignUint16(p *uint16, v uint16) uint16
- func AssignUint32(p *uint32, v uint32) uint32
- func AssignUint64(p *uint64, v uint64) uint64
- func AssignUintptr(p *uintptr, v uintptr) uintptr
- func AssignXorInt8(p *int8, v int8) int8
- func AssignXorInt16(p *int16, v int16) int16
- func AssignXorInt32(p *int32, v int32) int32
- func AssignXorInt64(p *int64, v int64) int64
- func AssignXorPtrInt8(p uintptr, v int8) int8
- func AssignXorPtrInt16(p uintptr, v int16) int16
- func AssignXorPtrInt32(p uintptr, v int32) int32
- func AssignXorPtrInt64(p uintptr, v int64) int64
- func AssignXorPtrUint8(p uintptr, v uint8) uint8
- func AssignXorPtrUint16(p uintptr, v uint16) uint16
- func AssignXorPtrUint32(p uintptr, v uint32) uint32
- func AssignXorPtrUint64(p uintptr, v uint64) uint64
- func AssignXorPtrUintptr(p uintptr, v uintptr) uintptr
- func AssignXorUint8(p *uint8, v uint8) uint8
- func AssignXorUint16(p *uint16, v uint16) uint16
- func AssignXorUint32(p *uint32, v uint32) uint32
- func AssignXorUint64(p *uint64, v uint64) uint64
- func AssignXorUintptr(p *uintptr, v uintptr) uintptr
- func AtExit(f func())
- func AtomicAddFloat32(addr *float32, delta float32) (new float32)
- func AtomicAddFloat64(addr *float64, delta float64) (new float64)
- func AtomicAddInt32(addr *int32, delta int32) (new int32)
- func AtomicAddInt64(addr *int64, delta int64) (new int64)
- func AtomicAddUint32(addr *uint32, delta uint32) (new uint32)
- func AtomicAddUint64(addr *uint64, delta uint64) (new uint64)
- func AtomicAddUintptr(addr *uintptr, delta uintptr) (new uintptr)
- func AtomicLoadFloat32(addr *float32) (val float32)
- func AtomicLoadFloat64(addr *float64) (val float64)
- func AtomicLoadInt32(addr *int32) (val int32)
- func AtomicLoadInt64(addr *int64) (val int64)
- func AtomicLoadNInt32(ptr uintptr, memorder int32) int32
- func AtomicLoadNInt64(ptr uintptr, memorder int32) int64
- func AtomicLoadNUint8(ptr uintptr, memorder int32) uint8
- func AtomicLoadNUint16(ptr uintptr, memorder int32) uint16
- func AtomicLoadNUint32(ptr uintptr, memorder int32) uint32
- func AtomicLoadNUint64(ptr uintptr, memorder int32) uint64
- func AtomicLoadNUintptr(ptr uintptr, memorder int32) uintptr
- func AtomicLoadPFloat32(addr uintptr) (val float32)
- func AtomicLoadPFloat64(addr uintptr) (val float64)
- func AtomicLoadPInt8(addr uintptr) (val int8)
- func AtomicLoadPInt16(addr uintptr) (val int16)
- func AtomicLoadPInt32(addr uintptr) (val int32)
- func AtomicLoadPInt64(addr uintptr) (val int64)
- func AtomicLoadPUint8(addr uintptr) byte
- func AtomicLoadPUint16(addr uintptr) uint16
- func AtomicLoadPUint32(addr uintptr) (val uint32)
- func AtomicLoadPUint64(addr uintptr) (val uint64)
- func AtomicLoadPUintptr(addr uintptr) (val uintptr)
- func AtomicLoadUint32(addr *uint32) (val uint32)
- func AtomicLoadUint64(addr *uint64) (val uint64)
- func AtomicLoadUintptr(addr *uintptr) (val uintptr)
- func AtomicStoreFloat32(addr *float32, val float32)
- func AtomicStoreFloat64(addr *float64, val float64)
- func AtomicStoreInt32(addr *int32, val int32)
- func AtomicStoreInt64(addr *int64, val int64)
- func AtomicStoreNInt32(ptr uintptr, val int32, memorder int32)
- func AtomicStoreNInt64(ptr uintptr, val int64, memorder int32)
- func AtomicStoreNUint8(ptr uintptr, val uint8, memorder int32)
- func AtomicStoreNUint16(ptr uintptr, val uint16, memorder int32)
- func AtomicStoreNUint32(ptr uintptr, val uint32, memorder int32)
- func AtomicStoreNUint64(ptr uintptr, val uint64, memorder int32)
- func AtomicStoreNUintptr(ptr uintptr, val uintptr, memorder int32)
- func AtomicStorePFloat32(addr uintptr, val float32) float32
- func AtomicStorePFloat64(addr uintptr, val float64) float64
- func AtomicStorePInt8(addr uintptr, val int8) int8
- func AtomicStorePInt32(addr uintptr, val int32) int32
- func AtomicStorePInt64(addr uintptr, val int64) int64
- func AtomicStorePUint8(addr uintptr, val byte) byte
- func AtomicStorePUint32(addr uintptr, val uint32) uint32
- func AtomicStorePUint64(addr uintptr, val uint64) uint64
- func AtomicStorePUintptr(addr uintptr, val uintptr) uintptr
- func AtomicStoreUint32(addr *uint32, val uint32)
- func AtomicStoreUint64(addr *uint64, val uint64)
- func AtomicStoreUintptr(addr *uintptr, val uintptr)
- func Bool(v bool) bool
- func Bool32(b bool) int32
- func Bool64(b bool) int64
- func BoolInt8(b bool) int8
- func BoolInt16(b bool) int16
- func BoolInt32(b bool) int32
- func BoolInt64(b bool) int64
- func BoolUint8(b bool) uint8
- func BoolUint16(b bool) uint16
- func BoolUint32(b bool) uint32
- func BoolUint64(b bool) uint64
- func BoolUintptr(b bool) uintptr
- func CString(s string) (uintptr, error)
- func Complex64(n complex64) complex64
- func Complex64FromComplex64(n complex64) complex64
- func Complex64FromComplex128(n complex128) complex64
- func Complex64FromFloat32(n float32) complex64
- func Complex64FromFloat64(n float64) complex64
- func Complex64FromInt8(n int8) complex64
- func Complex64FromInt16(n int16) complex64
- func Complex64FromInt32(n int32) complex64
- func Complex64FromInt64(n int64) complex64
- func Complex64FromUint8(n uint8) complex64
- func Complex64FromUint16(n uint16) complex64
- func Complex64FromUint32(n uint32) complex64
- func Complex64FromUint64(n uint64) complex64
- func Complex64FromUintptr(n uintptr) complex64
- func Complex128(n complex128) complex128
- func Complex128FromComplex64(n complex64) complex128
- func Complex128FromComplex128(n complex128) complex128
- func Complex128FromFloat32(n float32) complex128
- func Complex128FromFloat64(n float64) complex128
- func Complex128FromInt8(n int8) complex128
- func Complex128FromInt16(n int16) complex128
- func Complex128FromInt32(n int32) complex128
- func Complex128FromInt64(n int64) complex128
- func Complex128FromUint8(n uint8) complex128
- func Complex128FromUint16(n uint16) complex128
- func Complex128FromUint32(n uint32) complex128
- func Complex128FromUint64(n uint64) complex128
- func Complex128FromUintptr(n uintptr) complex128
- func Cover()
- func CoverC(s string)
- func CoverCReport(w io.Writer) error
- func CoverReport(w io.Writer) error
- func CplInt8(n int8) int8
- func CplInt16(n int16) int16
- func CplInt32(n int32) int32
- func CplInt64(n int64) int64
- func CplUint8(n uint8) uint8
- func CplUint16(n uint16) uint16
- func CplUint32(n uint32) uint32
- func CplUint64(n uint64) uint64
- func CplUintptr(n uintptr) uintptr
- func Dmesg(s string, args ...interface{})
- func Environ() uintptr
- func EnvironP() uintptr
- func Float32(n float32) float32
- func Float32FromComplex64(n complex64) float32
- func Float32FromComplex128(n complex128) float32
- func Float32FromFloat32(n float32) float32
- func Float32FromFloat64(n float64) float32
- func Float32FromInt8(n int8) float32
- func Float32FromInt16(n int16) float32
- func Float32FromInt32(n int32) float32
- func Float32FromInt64(n int64) float32
- func Float32FromUint8(n uint8) float32
- func Float32FromUint16(n uint16) float32
- func Float32FromUint32(n uint32) float32
- func Float32FromUint64(n uint64) float32
- func Float32FromUintptr(n uintptr) float32
- func Float64(n float64) float64
- func Float64FromComplex64(n complex64) float64
- func Float64FromComplex128(n complex128) float64
- func Float64FromFloat32(n float32) float64
- func Float64FromFloat64(n float64) float64
- func Float64FromInt8(n int8) float64
- func Float64FromInt16(n int16) float64
- func Float64FromInt32(n int32) float64
- func Float64FromInt64(n int64) float64
- func Float64FromUint8(n uint8) float64
- func Float64FromUint16(n uint16) float64
- func Float64FromUint32(n uint32) float64
- func Float64FromUint64(n uint64) float64
- func Float64FromUintptr(n uintptr) float64
- func GetEnviron() (r []string)
- func GetMaxMmapCount() int64
- func GoBytes(s uintptr, len int) []byte
- func GoString(s uintptr) string
- func Int8(n int8) int8
- func Int8FromComplex64(n complex64) int8
- func Int8FromComplex128(n complex128) int8
- func Int8FromFloat32(n float32) int8
- func Int8FromFloat64(n float64) int8
- func Int8FromInt8(n int8) int8
- func Int8FromInt16(n int16) int8
- func Int8FromInt32(n int32) int8
- func Int8FromInt64(n int64) int8
- func Int8FromUint8(n uint8) int8
- func Int8FromUint16(n uint16) int8
- func Int8FromUint32(n uint32) int8
- func Int8FromUint64(n uint64) int8
- func Int8FromUintptr(n uintptr) int8
- func Int16(n int16) int16
- func Int16FromComplex64(n complex64) int16
- func Int16FromComplex128(n complex128) int16
- func Int16FromFloat32(n float32) int16
- func Int16FromFloat64(n float64) int16
- func Int16FromInt8(n int8) int16
- func Int16FromInt16(n int16) int16
- func Int16FromInt32(n int32) int16
- func Int16FromInt64(n int64) int16
- func Int16FromUint8(n uint8) int16
- func Int16FromUint16(n uint16) int16
- func Int16FromUint32(n uint32) int16
- func Int16FromUint64(n uint64) int16
- func Int16FromUintptr(n uintptr) int16
- func Int32(n int32) int32
- func Int32FromComplex64(n complex64) int32
- func Int32FromComplex128(n complex128) int32
- func Int32FromFloat32(n float32) int32
- func Int32FromFloat64(n float64) int32
- func Int32FromInt8(n int8) int32
- func Int32FromInt16(n int16) int32
- func Int32FromInt32(n int32) int32
- func Int32FromInt64(n int64) int32
- func Int32FromUint8(n uint8) int32
- func Int32FromUint16(n uint16) int32
- func Int32FromUint32(n uint32) int32
- func Int32FromUint64(n uint64) int32
- func Int32FromUintptr(n uintptr) int32
- func Int64(n int64) int64
- func Int64FromComplex64(n complex64) int64
- func Int64FromComplex128(n complex128) int64
- func Int64FromFloat32(n float32) int64
- func Int64FromFloat64(n float64) int64
- func Int64FromInt8(n int8) int64
- func Int64FromInt16(n int16) int64
- func Int64FromInt32(n int32) int64
- func Int64FromInt64(n int64) int64
- func Int64FromUint8(n uint8) int64
- func Int64FromUint16(n uint16) int64
- func Int64FromUint32(n uint32) int64
- func Int64FromUint64(n uint64) int64
- func Int64FromUintptr(n uintptr) int64
- func MemAuditReport() error
- func MemAuditStart()
- func NegInt8(n int8) int8
- func NegInt16(n int16) int16
- func NegInt32(n int32) int32
- func NegInt64(n int64) int64
- func NegUint8(n uint8) uint8
- func NegUint16(n uint16) uint16
- func NegUint32(n uint32) uint32
- func NegUint64(n uint64) uint64
- func NegUintptr(n uintptr) uintptr
- func NewVaList(args ...interface{}) (va_list uintptr)
- func NewVaListN(n int) (va_list uintptr)
- func PostDecAtomicInt32(p *int32, d int32) int32
- func PostDecAtomicInt64(p *int64, d int64) int64
- func PostDecAtomicUint32(p *uint32, d uint32) uint32
- func PostDecAtomicUint64(p *uint64, d uint64) uint64
- func PostDecAtomicUintptr(p *uintptr, d uintptr) uintptr
- func PostDecBitFieldPtr8Int8(p uintptr, d int8, w, off int, mask uint8) (r int8)
- func PostDecBitFieldPtr8Int16(p uintptr, d int16, w, off int, mask uint8) (r int16)
- func PostDecBitFieldPtr8Int32(p uintptr, d int32, w, off int, mask uint8) (r int32)
- func PostDecBitFieldPtr8Int64(p uintptr, d int64, w, off int, mask uint8) (r int64)
- func PostDecBitFieldPtr8Uint8(p uintptr, d uint8, w, off int, mask uint8) (r uint8)
- func PostDecBitFieldPtr8Uint16(p uintptr, d uint16, w, off int, mask uint8) (r uint16)
- func PostDecBitFieldPtr8Uint32(p uintptr, d uint32, w, off int, mask uint8) (r uint32)
- func PostDecBitFieldPtr8Uint64(p uintptr, d uint64, w, off int, mask uint8) (r uint64)
- func PostDecBitFieldPtr16Int8(p uintptr, d int8, w, off int, mask uint16) (r int8)
- func PostDecBitFieldPtr16Int16(p uintptr, d int16, w, off int, mask uint16) (r int16)
- func PostDecBitFieldPtr16Int32(p uintptr, d int32, w, off int, mask uint16) (r int32)
- func PostDecBitFieldPtr16Int64(p uintptr, d int64, w, off int, mask uint16) (r int64)
- func PostDecBitFieldPtr16Uint8(p uintptr, d uint8, w, off int, mask uint16) (r uint8)
- func PostDecBitFieldPtr16Uint16(p uintptr, d uint16, w, off int, mask uint16) (r uint16)
- func PostDecBitFieldPtr16Uint32(p uintptr, d uint32, w, off int, mask uint16) (r uint32)
- func PostDecBitFieldPtr16Uint64(p uintptr, d uint64, w, off int, mask uint16) (r uint64)
- func PostDecBitFieldPtr32Int8(p uintptr, d int8, w, off int, mask uint32) (r int8)
- func PostDecBitFieldPtr32Int16(p uintptr, d int16, w, off int, mask uint32) (r int16)
- func PostDecBitFieldPtr32Int32(p uintptr, d int32, w, off int, mask uint32) (r int32)
- func PostDecBitFieldPtr32Int64(p uintptr, d int64, w, off int, mask uint32) (r int64)
- func PostDecBitFieldPtr32Uint8(p uintptr, d uint8, w, off int, mask uint32) (r uint8)
- func PostDecBitFieldPtr32Uint16(p uintptr, d uint16, w, off int, mask uint32) (r uint16)
- func PostDecBitFieldPtr32Uint32(p uintptr, d uint32, w, off int, mask uint32) (r uint32)
- func PostDecBitFieldPtr32Uint64(p uintptr, d uint64, w, off int, mask uint32) (r uint64)
- func PostDecBitFieldPtr64Int8(p uintptr, d int8, w, off int, mask uint64) (r int8)
- func PostDecBitFieldPtr64Int16(p uintptr, d int16, w, off int, mask uint64) (r int16)
- func PostDecBitFieldPtr64Int32(p uintptr, d int32, w, off int, mask uint64) (r int32)
- func PostDecBitFieldPtr64Int64(p uintptr, d int64, w, off int, mask uint64) (r int64)
- func PostDecBitFieldPtr64Uint8(p uintptr, d uint8, w, off int, mask uint64) (r uint8)
- func PostDecBitFieldPtr64Uint16(p uintptr, d uint16, w, off int, mask uint64) (r uint16)
- func PostDecBitFieldPtr64Uint32(p uintptr, d uint32, w, off int, mask uint64) (r uint32)
- func PostDecBitFieldPtr64Uint64(p uintptr, d uint64, w, off int, mask uint64) (r uint64)
- func PostDecComplex64(p *complex64, d complex64) complex64
- func PostDecComplex128(p *complex128, d complex128) complex128
- func PostDecFloat32(p *float32, d float32) float32
- func PostDecFloat64(p *float64, d float64) float64
- func PostDecInt8(p *int8, d int8) int8
- func PostDecInt16(p *int16, d int16) int16
- func PostDecInt32(p *int32, d int32) int32
- func PostDecInt64(p *int64, d int64) int64
- func PostDecUint8(p *uint8, d uint8) uint8
- func PostDecUint16(p *uint16, d uint16) uint16
- func PostDecUint32(p *uint32, d uint32) uint32
- func PostDecUint64(p *uint64, d uint64) uint64
- func PostDecUintptr(p *uintptr, d uintptr) uintptr
- func PostIncAtomicInt32(p *int32, d int32) int32
- func PostIncAtomicInt32P(p uintptr, d int32) int32
- func PostIncAtomicInt64(p *int64, d int64) int64
- func PostIncAtomicInt64P(p uintptr, d int64) int64
- func PostIncAtomicUint32(p *uint32, d uint32) uint32
- func PostIncAtomicUint32P(p uintptr, d uint32) uint32
- func PostIncAtomicUint64(p *uint64, d uint64) uint64
- func PostIncAtomicUint64P(p uintptr, d uint64) uint64
- func PostIncAtomicUintptr(p *uintptr, d uintptr) uintptr
- func PostIncAtomicUintptrP(p uintptr, d uintptr) uintptr
- func PostIncBitFieldPtr8Int8(p uintptr, d int8, w, off int, mask uint8) (r int8)
- func PostIncBitFieldPtr8Int16(p uintptr, d int16, w, off int, mask uint8) (r int16)
- func PostIncBitFieldPtr8Int32(p uintptr, d int32, w, off int, mask uint8) (r int32)
- func PostIncBitFieldPtr8Int64(p uintptr, d int64, w, off int, mask uint8) (r int64)
- func PostIncBitFieldPtr8Uint8(p uintptr, d uint8, w, off int, mask uint8) (r uint8)
- func PostIncBitFieldPtr8Uint16(p uintptr, d uint16, w, off int, mask uint8) (r uint16)
- func PostIncBitFieldPtr8Uint32(p uintptr, d uint32, w, off int, mask uint8) (r uint32)
- func PostIncBitFieldPtr8Uint64(p uintptr, d uint64, w, off int, mask uint8) (r uint64)
- func PostIncBitFieldPtr16Int8(p uintptr, d int8, w, off int, mask uint16) (r int8)
- func PostIncBitFieldPtr16Int16(p uintptr, d int16, w, off int, mask uint16) (r int16)
- func PostIncBitFieldPtr16Int32(p uintptr, d int32, w, off int, mask uint16) (r int32)
- func PostIncBitFieldPtr16Int64(p uintptr, d int64, w, off int, mask uint16) (r int64)
- func PostIncBitFieldPtr16Uint8(p uintptr, d uint8, w, off int, mask uint16) (r uint8)
- func PostIncBitFieldPtr16Uint16(p uintptr, d uint16, w, off int, mask uint16) (r uint16)
- func PostIncBitFieldPtr16Uint32(p uintptr, d uint32, w, off int, mask uint16) (r uint32)
- func PostIncBitFieldPtr16Uint64(p uintptr, d uint64, w, off int, mask uint16) (r uint64)
- func PostIncBitFieldPtr32Int8(p uintptr, d int8, w, off int, mask uint32) (r int8)
- func PostIncBitFieldPtr32Int16(p uintptr, d int16, w, off int, mask uint32) (r int16)
- func PostIncBitFieldPtr32Int32(p uintptr, d int32, w, off int, mask uint32) (r int32)
- func PostIncBitFieldPtr32Int64(p uintptr, d int64, w, off int, mask uint32) (r int64)
- func PostIncBitFieldPtr32Uint8(p uintptr, d uint8, w, off int, mask uint32) (r uint8)
- func PostIncBitFieldPtr32Uint16(p uintptr, d uint16, w, off int, mask uint32) (r uint16)
- func PostIncBitFieldPtr32Uint32(p uintptr, d uint32, w, off int, mask uint32) (r uint32)
- func PostIncBitFieldPtr32Uint64(p uintptr, d uint64, w, off int, mask uint32) (r uint64)
- func PostIncBitFieldPtr64Int8(p uintptr, d int8, w, off int, mask uint64) (r int8)
- func PostIncBitFieldPtr64Int16(p uintptr, d int16, w, off int, mask uint64) (r int16)
- func PostIncBitFieldPtr64Int32(p uintptr, d int32, w, off int, mask uint64) (r int32)
- func PostIncBitFieldPtr64Int64(p uintptr, d int64, w, off int, mask uint64) (r int64)
- func PostIncBitFieldPtr64Uint8(p uintptr, d uint8, w, off int, mask uint64) (r uint8)
- func PostIncBitFieldPtr64Uint16(p uintptr, d uint16, w, off int, mask uint64) (r uint16)
- func PostIncBitFieldPtr64Uint32(p uintptr, d uint32, w, off int, mask uint64) (r uint32)
- func PostIncBitFieldPtr64Uint64(p uintptr, d uint64, w, off int, mask uint64) (r uint64)
- func PostIncComplex64(p *complex64, d complex64) complex64
- func PostIncComplex128(p *complex128, d complex128) complex128
- func PostIncFloat32(p *float32, d float32) float32
- func PostIncFloat64(p *float64, d float64) float64
- func PostIncInt8(p *int8, d int8) int8
- func PostIncInt16(p *int16, d int16) int16
- func PostIncInt32(p *int32, d int32) int32
- func PostIncInt64(p *int64, d int64) int64
- func PostIncUint8(p *uint8, d uint8) uint8
- func PostIncUint16(p *uint16, d uint16) uint16
- func PostIncUint32(p *uint32, d uint32) uint32
- func PostIncUint64(p *uint64, d uint64) uint64
- func PostIncUintptr(p *uintptr, d uintptr) uintptr
- func PreDecAtomicInt32(p *int32, d int32) int32
- func PreDecAtomicInt64(p *int64, d int64) int64
- func PreDecAtomicUint32(p *uint32, d uint32) uint32
- func PreDecAtomicUint64(p *uint64, d uint64) uint64
- func PreDecAtomicUintptr(p *uintptr, d uintptr) uintptr
- func PreDecComplex64(p *complex64, d complex64) complex64
- func PreDecComplex128(p *complex128, d complex128) complex128
- func PreDecFloat32(p *float32, d float32) float32
- func PreDecFloat64(p *float64, d float64) float64
- func PreDecInt8(p *int8, d int8) int8
- func PreDecInt16(p *int16, d int16) int16
- func PreDecInt32(p *int32, d int32) int32
- func PreDecInt64(p *int64, d int64) int64
- func PreDecUint8(p *uint8, d uint8) uint8
- func PreDecUint16(p *uint16, d uint16) uint16
- func PreDecUint32(p *uint32, d uint32) uint32
- func PreDecUint64(p *uint64, d uint64) uint64
- func PreDecUintptr(p *uintptr, d uintptr) uintptr
- func PreIncAtomicInt32(p *int32, d int32) int32
- func PreIncAtomicInt32P(p uintptr, d int32) int32
- func PreIncAtomicInt64(p *int64, d int64) int64
- func PreIncAtomicInt64P(p uintptr, d int64) int64
- func PreIncAtomicUint32(p *uint32, d uint32) uint32
- func PreIncAtomicUint32P(p uintptr, d uint32) uint32
- func PreIncAtomicUint64(p *uint64, d uint64) uint64
- func PreIncAtomicUint64P(p uintptr, d uint64) uint64
- func PreIncAtomicUintptr(p *uintptr, d uintptr) uintptr
- func PreIncComplex64(p *complex64, d complex64) complex64
- func PreIncComplex128(p *complex128, d complex128) complex128
- func PreIncFloat32(p *float32, d float32) float32
- func PreIncFloat64(p *float64, d float64) float64
- func PreIncInt8(p *int8, d int8) int8
- func PreIncInt16(p *int16, d int16) int16
- func PreIncInt32(p *int32, d int32) int32
- func PreIncInt64(p *int64, d int64) int64
- func PreIncUint8(p *uint8, d uint8) uint8
- func PreIncUint16(p *uint16, d uint16) uint16
- func PreIncUint32(p *uint32, d uint32) uint32
- func PreIncUint64(p *uint64, d uint64) uint64
- func PreIncUintptr(p *uintptr, d uintptr) uintptr
- func PreInrAtomicUintptrP(p uintptr, d uintptr) uintptr
- func SetBitFieldPtr8Int8(p uintptr, v int8, off int, mask uint8)
- func SetBitFieldPtr8Int16(p uintptr, v int16, off int, mask uint8)
- func SetBitFieldPtr8Int32(p uintptr, v int32, off int, mask uint8)
- func SetBitFieldPtr8Int64(p uintptr, v int64, off int, mask uint8)
- func SetBitFieldPtr8Uint8(p uintptr, v uint8, off int, mask uint8)
- func SetBitFieldPtr8Uint16(p uintptr, v uint16, off int, mask uint8)
- func SetBitFieldPtr8Uint32(p uintptr, v uint32, off int, mask uint8)
- func SetBitFieldPtr8Uint64(p uintptr, v uint64, off int, mask uint8)
- func SetBitFieldPtr16Int8(p uintptr, v int8, off int, mask uint16)
- func SetBitFieldPtr16Int16(p uintptr, v int16, off int, mask uint16)
- func SetBitFieldPtr16Int32(p uintptr, v int32, off int, mask uint16)
- func SetBitFieldPtr16Int64(p uintptr, v int64, off int, mask uint16)
- func SetBitFieldPtr16Uint8(p uintptr, v uint8, off int, mask uint16)
- func SetBitFieldPtr16Uint16(p uintptr, v uint16, off int, mask uint16)
- func SetBitFieldPtr16Uint32(p uintptr, v uint32, off int, mask uint16)
- func SetBitFieldPtr16Uint64(p uintptr, v uint64, off int, mask uint16)
- func SetBitFieldPtr32Int8(p uintptr, v int8, off int, mask uint32)
- func SetBitFieldPtr32Int16(p uintptr, v int16, off int, mask uint32)
- func SetBitFieldPtr32Int32(p uintptr, v int32, off int, mask uint32)
- func SetBitFieldPtr32Int64(p uintptr, v int64, off int, mask uint32)
- func SetBitFieldPtr32Uint8(p uintptr, v uint8, off int, mask uint32)
- func SetBitFieldPtr32Uint16(p uintptr, v uint16, off int, mask uint32)
- func SetBitFieldPtr32Uint32(p uintptr, v uint32, off int, mask uint32)
- func SetBitFieldPtr32Uint64(p uintptr, v uint64, off int, mask uint32)
- func SetBitFieldPtr64Int8(p uintptr, v int8, off int, mask uint64)
- func SetBitFieldPtr64Int16(p uintptr, v int16, off int, mask uint64)
- func SetBitFieldPtr64Int32(p uintptr, v int32, off int, mask uint64)
- func SetBitFieldPtr64Int64(p uintptr, v int64, off int, mask uint64)
- func SetBitFieldPtr64Uint8(p uintptr, v uint8, off int, mask uint64)
- func SetBitFieldPtr64Uint16(p uintptr, v uint16, off int, mask uint64)
- func SetBitFieldPtr64Uint32(p uintptr, v uint32, off int, mask uint64)
- func SetBitFieldPtr64Uint64(p uintptr, v uint64, off int, mask uint64)
- func SetEnviron(t *TLS, env []string)
- func Start(main func(*TLS, int32, uintptr) int32)
- func TLSAlloc(p0 *TLS, p1 int) uintptr
- func TLSAllocaEntry(p0 *TLS)
- func TLSAllocaExit(p0 *TLS)
- func TLSFree(p0 *TLS, p1 int)
- func Uint8(n uint8) uint8
- func Uint8FromComplex64(n complex64) uint8
- func Uint8FromComplex128(n complex128) uint8
- func Uint8FromFloat32(n float32) uint8
- func Uint8FromFloat64(n float64) uint8
- func Uint8FromInt8(n int8) uint8
- func Uint8FromInt16(n int16) uint8
- func Uint8FromInt32(n int32) uint8
- func Uint8FromInt64(n int64) uint8
- func Uint8FromUint8(n uint8) uint8
- func Uint8FromUint16(n uint16) uint8
- func Uint8FromUint32(n uint32) uint8
- func Uint8FromUint64(n uint64) uint8
- func Uint8FromUintptr(n uintptr) uint8
- func Uint16(n uint16) uint16
- func Uint16FromComplex64(n complex64) uint16
- func Uint16FromComplex128(n complex128) uint16
- func Uint16FromFloat32(n float32) uint16
- func Uint16FromFloat64(n float64) uint16
- func Uint16FromInt8(n int8) uint16
- func Uint16FromInt16(n int16) uint16
- func Uint16FromInt32(n int32) uint16
- func Uint16FromInt64(n int64) uint16
- func Uint16FromUint8(n uint8) uint16
- func Uint16FromUint16(n uint16) uint16
- func Uint16FromUint32(n uint32) uint16
- func Uint16FromUint64(n uint64) uint16
- func Uint16FromUintptr(n uintptr) uint16
- func Uint32(n uint32) uint32
- func Uint32FromComplex64(n complex64) uint32
- func Uint32FromComplex128(n complex128) uint32
- func Uint32FromFloat32(n float32) uint32
- func Uint32FromFloat64(n float64) uint32
- func Uint32FromInt8(n int8) uint32
- func Uint32FromInt16(n int16) uint32
- func Uint32FromInt32(n int32) uint32
- func Uint32FromInt64(n int64) uint32
- func Uint32FromUint8(n uint8) uint32
- func Uint32FromUint16(n uint16) uint32
- func Uint32FromUint32(n uint32) uint32
- func Uint32FromUint64(n uint64) uint32
- func Uint32FromUintptr(n uintptr) uint32
- func Uint64(n uint64) uint64
- func Uint64FromComplex64(n complex64) uint64
- func Uint64FromComplex128(n complex128) uint64
- func Uint64FromFloat32(n float32) uint64
- func Uint64FromFloat64(n float64) uint64
- func Uint64FromInt8(n int8) uint64
- func Uint64FromInt16(n int16) uint64
- func Uint64FromInt32(n int32) uint64
- func Uint64FromInt64(n int64) uint64
- func Uint64FromUint8(n uint8) uint64
- func Uint64FromUint16(n uint16) uint64
- func Uint64FromUint32(n uint32) uint64
- func Uint64FromUint64(n uint64) uint64
- func Uint64FromUintptr(n uintptr) uint64
- func Uintptr(n uintptr) uintptr
- func UintptrFromComplex64(n complex64) uintptr
- func UintptrFromComplex128(n complex128) uintptr
- func UintptrFromFloat32(n float32) uintptr
- func UintptrFromFloat64(n float64) uintptr
- func UintptrFromInt8(n int8) uintptr
- func UintptrFromInt16(n int16) uintptr
- func UintptrFromInt32(n int32) uintptr
- func UintptrFromInt64(n int64) uintptr
- func UintptrFromUint8(n uint8) uintptr
- func UintptrFromUint16(n uint16) uintptr
- func UintptrFromUint32(n uint32) uintptr
- func UintptrFromUint64(n uint64) uintptr
- func UintptrFromUintptr(n uintptr) uintptr
- func VaFloat32(app *uintptr) float32
- func VaFloat64(app *uintptr) float64
- func VaInt32(app *uintptr) int32
- func VaInt64(app *uintptr) int64
- func VaList(p uintptr, args ...interface{}) (r uintptr)
- func VaOther(app *uintptr, sz uint64) (r uintptr)
- func VaUint32(app *uintptr) uint32
- func VaUint64(app *uintptr) uint64
- func VaUintptr(app *uintptr) uintptr
- func Watch()
- func WatchDelete(p uintptr)
- func WatchFloat32(p uintptr, msg string)
- func WatchFloat64(p uintptr, msg string)
- func WatchInt8(p uintptr, msg string)
- func WatchInt16(p uintptr, msg string)
- func WatchInt32(p uintptr, msg string)
- func WatchInt64(p uintptr, msg string)
- func WatchPtr(p uintptr, msg string)
- func WatchUint8(p uintptr, msg string)
- func WatchUint16(p uintptr, msg string)
- func WatchUint32(p uintptr, msg string)
- func WatchUint64(p uintptr, msg string)
- func X_Exit(tls *TLS, ec int32)
- func X_IO_feof_unlocked(tls *TLS, f uintptr) (r int32)
- func X_IO_ferror_unlocked(tls *TLS, f uintptr) (r int32)
- func X_IO_getc(tls *TLS, f1 uintptr) (r int32)
- func X_IO_getc_unlocked(tls *TLS, f uintptr) (r int32)
- func X_IO_putc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func X_IO_putc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func X___errno_location(tls *TLS) (r uintptr)
- func X__aio_close(tls *TLS, fd int32) int32
- func X__asctime_r(tls *TLS, tm uintptr, buf uintptr) (r uintptr)
- func X__assert_fail(tls *TLS, expr uintptr, file uintptr, line int32, func1 uintptr)
- func X__atomic_compare_exchangeInt8(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeInt16(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeInt32(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeInt64(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeUint8(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeUint16(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeUint32(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_compare_exchangeUint64(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) int32
- func X__atomic_exchangeInt8(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeInt16(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeInt32(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeInt64(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeUint8(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeUint16(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeUint32(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_exchangeUint64(t *TLS, ptr, val, ret uintptr, _ int32)
- func X__atomic_fetch_addInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__atomic_fetch_addInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__atomic_fetch_addInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__atomic_fetch_addInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__atomic_fetch_addUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__atomic_fetch_addUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__atomic_fetch_addUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__atomic_fetch_addUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__atomic_fetch_andInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__atomic_fetch_andInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__atomic_fetch_andInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__atomic_fetch_andInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__atomic_fetch_andUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__atomic_fetch_andUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__atomic_fetch_andUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__atomic_fetch_andUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__atomic_fetch_orInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__atomic_fetch_orInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__atomic_fetch_orInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__atomic_fetch_orInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__atomic_fetch_orUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__atomic_fetch_orUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__atomic_fetch_orUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__atomic_fetch_orUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__atomic_fetch_subInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__atomic_fetch_subInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__atomic_fetch_subInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__atomic_fetch_subInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__atomic_fetch_subUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__atomic_fetch_subUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__atomic_fetch_subUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__atomic_fetch_subUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__atomic_fetch_xorInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__atomic_fetch_xorInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__atomic_fetch_xorInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__atomic_fetch_xorInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__atomic_fetch_xorUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__atomic_fetch_xorUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__atomic_fetch_xorUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__atomic_fetch_xorUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__atomic_loadInt8(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadInt16(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadInt32(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadInt64(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadUint8(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadUint16(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadUint32(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_loadUint64(t *TLS, ptr, ret uintptr, memorder int32)
- func X__atomic_storeInt8(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeInt16(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeInt32(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeInt64(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeUint8(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeUint16(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeUint32(t *TLS, ptr, val uintptr, memorder int32)
- func X__atomic_storeUint64(t *TLS, ptr, val uintptr, memorder int32)
- func X__block_all_sigs(tls *TLS, set uintptr)
- func X__block_app_sigs(tls *TLS, set uintptr)
- func X__builtin___memcpy_chk(t *TLS, dest, src uintptr, n, os Tsize_t) (r uintptr)
- func X__builtin___memmove_chk(t *TLS, dest, src uintptr, n, os Tsize_t) uintptr
- func X__builtin___memset_chk(t *TLS, s uintptr, c int32, n, os Tsize_t) uintptr
- func X__builtin___snprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, ...) (r int32)
- func X__builtin___sprintf_chk(t *TLS, s uintptr, flag int32, os Tsize_t, format, args uintptr) (r int32)
- func X__builtin___strcat_chk(t *TLS, dest, src uintptr, os Tsize_t) (r uintptr)
- func X__builtin___strcpy_chk(t *TLS, dest, src uintptr, os Tsize_t) uintptr
- func X__builtin___strncpy_chk(t *TLS, dest, src uintptr, n, os Tsize_t) (r uintptr)
- func X__builtin___vsnprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, ...) (r int32)
- func X__builtin_abort(t *TLS)
- func X__builtin_abs(t *TLS, j int32) int32
- func X__builtin_add_overflowInt64(t *TLS, a, b int64, res uintptr) int32
- func X__builtin_add_overflowUint32(t *TLS, a, b uint32, res uintptr) int32
- func X__builtin_add_overflowUint64(t *TLS, a, b uint64, res uintptr) int32
- func X__builtin_alloca(tls *TLS, size Tsize_t) uintptr
- func X__builtin_bswap16(t *TLS, x uint16) uint16
- func X__builtin_bswap32(t *TLS, x uint32) uint32
- func X__builtin_bswap64(t *TLS, x uint64) uint64
- func X__builtin_bzero(t *TLS, s uintptr, n Tsize_t)
- func X__builtin_clz(t *TLS, n uint32) int32
- func X__builtin_clzl(t *TLS, n ulong) int32
- func X__builtin_clzll(t *TLS, n uint64) int32
- func X__builtin_constant_p_impl()
- func X__builtin_copysign(t *TLS, x, y float64) float64
- func X__builtin_copysignf(t *TLS, x, y float32) float32
- func X__builtin_copysignl(t *TLS, x, y float64) float64
- func X__builtin_ctz(t *TLS, n uint32) int32
- func X__builtin_ctzl(tls *TLS, x ulong) int32
- func X__builtin_exit(t *TLS, status int32)
- func X__builtin_expect(t *TLS, exp, c long) long
- func X__builtin_fabs(t *TLS, x float64) float64
- func X__builtin_fabsf(t *TLS, x float32) float32
- func X__builtin_fabsl(t *TLS, x float64) float64
- func X__builtin_ffs(tls *TLS, i int32) (r int32)
- func X__builtin_fma(tls *TLS, x, y, z float64) (r float64)
- func X__builtin_fmax(tls *TLS, x float64, y float64) (r float64)
- func X__builtin_fmin(tls *TLS, x float64, y float64) (r float64)
- func X__builtin_free(t *TLS, ptr uintptr)
- func X__builtin_getentropy(t *TLS, buf uintptr, n Tsize_t) int32
- func X__builtin_huge_val(t *TLS) float64
- func X__builtin_huge_valf(t *TLS) float32
- func X__builtin_hypot(tls *TLS, x float64, y float64) (r float64)
- func X__builtin_inf(t *TLS) float64
- func X__builtin_inff(tls *TLS) float32
- func X__builtin_infl(t *TLS) float64
- func X__builtin_isblank(tls *TLS, c int32) (r int32)
- func X__builtin_isnan(t *TLS, x float64) int32
- func X__builtin_isnanf(t *TLS, x float32) int32
- func X__builtin_isnanl(t *TLS, x float64) int32
- func X__builtin_isprint(tls *TLS, c int32) (r int32)
- func X__builtin_isunordered(t *TLS, a, b float64) int32
- func X__builtin_llabs(tls *TLS, a int64) int64
- func X__builtin_log2(t *TLS, x float64) float64
- func X__builtin_lrint(tls *TLS, x float64) (r long)
- func X__builtin_lrintf(tls *TLS, x float32) (r long)
- func X__builtin_lround(tls *TLS, x float64) (r long)
- func X__builtin_malloc(t *TLS, size Tsize_t) uintptr
- func X__builtin_memcmp(t *TLS, s1, s2 uintptr, n Tsize_t) int32
- func X__builtin_memcpy(t *TLS, dest, src uintptr, n Tsize_t) (r uintptr)
- func X__builtin_memset(t *TLS, s uintptr, c int32, n Tsize_t) uintptr
- func X__builtin_mmap(t *TLS, addr uintptr, length Tsize_t, prot, flags, fd int32, offset Toff_t) uintptr
- func X__builtin_mul_overflowInt64(t *TLS, a, b int64, res uintptr) int32
- func X__builtin_mul_overflowUint64(t *TLS, a, b uint64, res uintptr) int32
- func X__builtin_mul_overflowUint128(t *TLS, a, b Uint128, res uintptr) int32
- func X__builtin_nan(t *TLS, s uintptr) float64
- func X__builtin_nanf(tls *TLS, s uintptr) float32
- func X__builtin_nanl(t *TLS, s uintptr) float64
- func X__builtin_popcount(t *TLS, x uint32) int32
- func X__builtin_popcountl(t *TLS, x ulong) int32
- func X__builtin_prefetch(t *TLS, addr, args uintptr)
- func X__builtin_printf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func X__builtin_rintf(tls *TLS, x float32) (r float32)
- func X__builtin_round(tls *TLS, x float64) (r float64)
- func X__builtin_roundf(tls *TLS, x float32) (r float32)
- func X__builtin_snprintf(t *TLS, str uintptr, size Tsize_t, format, args uintptr) int32
- func X__builtin_sprintf(t *TLS, str, format, args uintptr) (r int32)
- func X__builtin_strchr(t *TLS, s uintptr, c int32) uintptr
- func X__builtin_strcmp(t *TLS, s1, s2 uintptr) int32
- func X__builtin_strcpy(t *TLS, dest, src uintptr) uintptr
- func X__builtin_sub_overflowInt64(t *TLS, a, b int64, res uintptr) int32
- func X__builtin_trap(t *TLS)
- func X__builtin_trunc(tls *TLS, x float64) (r float64)
- func X__builtin_unreachable(t *TLS)
- func X__builtin_vsnprintf(t *TLS, str uintptr, size Tsize_t, format, va uintptr) int32
- func X__c11_atomic_compare_exchange_strongInt8(t *TLS, ptr, expected uintptr, desired int8, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongInt16(t *TLS, ptr, expected uintptr, desired int16, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongInt32(t *TLS, ptr, expected uintptr, desired, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongInt64(t *TLS, ptr, expected uintptr, desired int64, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongUint8(t *TLS, ptr, expected uintptr, desired uint8, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongUint16(t *TLS, ptr, expected uintptr, desired uint16, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongUint32(t *TLS, ptr, expected uintptr, desired uint32, success, failure int32) int32
- func X__c11_atomic_compare_exchange_strongUint64(t *TLS, ptr, expected uintptr, desired uint64, success, failure int32) int32
- func X__c11_atomic_exchangeInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_exchangeInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_exchangeInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_exchangeInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_exchangeUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_exchangeUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_exchangeUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_exchangeUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_fetch_addInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_fetch_addInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_fetch_addInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_fetch_addInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_fetch_addUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_fetch_addUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_fetch_addUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_fetch_addUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_fetch_andInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_fetch_andInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_fetch_andInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_fetch_andInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_fetch_andUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_fetch_andUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_fetch_andUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_fetch_andUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_fetch_orInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_fetch_orInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_fetch_orInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_fetch_orInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_fetch_orUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_fetch_orUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_fetch_orUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_fetch_orUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_fetch_subInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_fetch_subInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_fetch_subInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_fetch_subInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_fetch_subUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_fetch_subUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_fetch_subUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_fetch_subUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_fetch_xorInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func X__c11_atomic_fetch_xorInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func X__c11_atomic_fetch_xorInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func X__c11_atomic_fetch_xorInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func X__c11_atomic_fetch_xorUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func X__c11_atomic_fetch_xorUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func X__c11_atomic_fetch_xorUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func X__c11_atomic_fetch_xorUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func X__c11_atomic_loadInt8(t *TLS, ptr uintptr, memorder int32) (r int8)
- func X__c11_atomic_loadInt16(t *TLS, ptr uintptr, memorder int32) (r int16)
- func X__c11_atomic_loadInt32(t *TLS, ptr uintptr, memorder int32) (r int32)
- func X__c11_atomic_loadInt64(t *TLS, ptr uintptr, memorder int32) (r int64)
- func X__c11_atomic_loadUint8(t *TLS, ptr uintptr, memorder int32) (r uint8)
- func X__c11_atomic_loadUint16(t *TLS, ptr uintptr, memorder int32) (r uint16)
- func X__c11_atomic_loadUint32(t *TLS, ptr uintptr, memorder int32) (r uint32)
- func X__c11_atomic_loadUint64(t *TLS, ptr uintptr, memorder int32) (r uint64)
- func X__c11_atomic_storeInt8(t *TLS, ptr uintptr, val int8, memorder int32)
- func X__c11_atomic_storeInt16(t *TLS, ptr uintptr, val int16, memorder int32)
- func X__c11_atomic_storeInt32(t *TLS, ptr uintptr, val int32, memorder int32)
- func X__c11_atomic_storeInt64(t *TLS, ptr uintptr, val int64, memorder int32)
- func X__c11_atomic_storeUint8(t *TLS, ptr uintptr, val uint8, memorder int32)
- func X__c11_atomic_storeUint16(t *TLS, ptr uintptr, val uint16, memorder int32)
- func X__c11_atomic_storeUint32(t *TLS, ptr uintptr, val uint32, memorder int32)
- func X__c11_atomic_storeUint64(t *TLS, ptr uintptr, val uint64, memorder int32)
- func X__ccgo_dmesg(t *TLS, fmt uintptr, va uintptr)
- func X__ccgo_getMutexType(tls *TLS, m uintptr) int32
- func X__ccgo_in6addr_anyp(t *TLS) uintptr
- func X__ccgo_pthreadAttrGetDetachState(tls *TLS, a uintptr) int32
- func X__ccgo_pthreadMutexattrGettype(tls *TLS, a uintptr) int32
- func X__ccgo_sqlite3_log(t *TLS, iErrCode int32, zFormat uintptr, args uintptr)
- func X__clock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r1 int32)
- func X__clock_nanosleep(tls *TLS, clk Tclockid_t, flags int32, req uintptr, rem uintptr) (r int32)
- func X__cmsg_nxthdr(t *TLS, msgh, cmsg uintptr) uintptr
- func X__convert_scm_timestamps(tls *TLS, msg uintptr, csize Tsocklen_t)
- func X__cos(tls *TLS, x float64, y float64) (r1 float64)
- func X__cosdf(tls *TLS, x float64) (r1 float32)
- func X__crypt_blowfish(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func X__crypt_des(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func X__crypt_md5(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func X__crypt_r(tls *TLS, key uintptr, salt uintptr, data uintptr) (r uintptr)
- func X__crypt_sha256(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func X__crypt_sha512(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func X__ctype_b_loc(tls *TLS) (r uintptr)
- func X__ctype_tolower_loc(tls *TLS) (r uintptr)
- func X__ctype_toupper_loc(tls *TLS) (r uintptr)
- func X__des_setkey(tls *TLS, key uintptr, ekey uintptr)
- func X__dn_expand(tls *TLS, base uintptr, end uintptr, src uintptr, dest uintptr, space int32) (r int32)
- func X__dns_parse(tls *TLS, r uintptr, rlen int32, __ccgo_fp_callback uintptr, ctx uintptr) (r1 int32)
- func X__do_des(tls *TLS, l_in Tuint32_t, r_in Tuint32_t, l_out uintptr, r_out uintptr, ...)
- func X__do_orphaned_stdio_locks(tls *TLS)
- func X__dup3(tls *TLS, old int32, new1 int32, flags int32) (r1 int32)
- func X__env_rm_add(tls *TLS, old uintptr, new1 uintptr)
- func X__errno_location(tls *TLS) (r uintptr)
- func X__execvpe(tls *TLS, file uintptr, argv uintptr, envp uintptr) (r int32)
- func X__expo2(tls *TLS, x float64, sign float64) (r float64)
- func X__expo2f(tls *TLS, x float32, sign float32) (r float32)
- func X__fclose_ca(tls *TLS, f uintptr) (r int32)
- func X__fdopen(tls *TLS, fd int32, mode uintptr) (r uintptr)
- func X__fesetround(tls *TLS, r int32) (r1 int32)
- func X__flbf(tls *TLS, f uintptr) (r int32)
- func X__floatscan(tls *TLS, f uintptr, prec int32, pok int32) (r float64)
- func X__fmodeflags(tls *TLS, mode uintptr) (r int32)
- func X__fopen_rb_ca(tls *TLS, filename uintptr, f uintptr, buf uintptr, len1 Tsize_t) (r uintptr)
- func X__fpclassify(tls *TLS, x float64) (r int32)
- func X__fpclassifyf(tls *TLS, x float32) (r int32)
- func X__fpclassifyl(tls *TLS, x float64) (r int32)
- func X__fpurge(tls *TLS, f uintptr) (r int32)
- func X__freadable(tls *TLS, f uintptr) (r int32)
- func X__freading(tls *TLS, f uintptr) (r int32)
- func X__freadptr(tls *TLS, f uintptr, sizep uintptr) (r uintptr)
- func X__freadptrinc(tls *TLS, f uintptr, inc Tsize_t)
- func X__freelocale(tls *TLS, l Tlocale_t)
- func X__fseeko(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func X__fseeko_unlocked(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func X__fseterr(tls *TLS, f uintptr)
- func X__fsetlocking(tls *TLS, f uintptr, type1 int32) (r int32)
- func X__fstat(tls *TLS, fd int32, st uintptr) (r int32)
- func X__fstatat(tls *TLS, fd int32, path uintptr, st uintptr, flag int32) (r int32)
- func X__funcs_on_quick_exit(tls *TLS)
- func X__futimesat(tls *TLS, dirfd int32, pathname uintptr, times uintptr) (r int32)
- func X__fwritable(tls *TLS, f uintptr) (r int32)
- func X__fwriting(tls *TLS, f uintptr) (r int32)
- func X__fxstat(tls *TLS, ver int32, fd int32, buf uintptr) (r int32)
- func X__fxstatat(tls *TLS, ver int32, fd int32, path uintptr, buf uintptr, flag int32) (r int32)
- func X__get_handler_set(tls *TLS, set uintptr)
- func X__get_locale(tls *TLS, cat int32, val uintptr) (r uintptr)
- func X__get_resolv_conf(tls *TLS, conf uintptr, search uintptr, search_sz Tsize_t) (r int32)
- func X__getauxval(tls *TLS, item uint64) (r uint64)
- func X__getgr_a(tls *TLS, name uintptr, gid Tgid_t, gr uintptr, buf uintptr, size uintptr, ...) (r int32)
- func X__getgrent_a(tls *TLS, f uintptr, gr uintptr, line uintptr, size uintptr, mem uintptr, ...) (r int32)
- func X__getopt_msg(tls *TLS, a uintptr, b uintptr, c uintptr, l Tsize_t)
- func X__getpw_a(tls *TLS, name uintptr, uid Tuid_t, pw uintptr, buf uintptr, size uintptr, ...) (r int32)
- func X__getpwent_a(tls *TLS, f uintptr, pw uintptr, line uintptr, size uintptr, res uintptr) (r int32)
- func X__gettextdomain(tls *TLS) (r uintptr)
- func X__gmtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func X__h_errno_location(tls *TLS) (r uintptr)
- func X__inet_aton(tls *TLS, s0 uintptr, dest uintptr) (r int32)
- func X__init_ssp(tls *TLS, entropy uintptr)
- func X__intscan(tls *TLS, f uintptr, base uint32, pok int32, lim uint64) (r uint64)
- func X__isalnum_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isalpha_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isblank_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__iscntrl_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isfinite(tls *TLS, d float64) int32
- func X__isfinitef(tls *TLS, f float32) int32
- func X__isfinitel(tls *TLS, d float64) int32
- func X__isgraph_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__islower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isnan(t *TLS, x float64) int32
- func X__isnanf(t *TLS, arg float32) int32
- func X__isnanl(t *TLS, arg float64) int32
- func X__isoc99_fscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func X__isoc99_fwscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func X__isoc99_scanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func X__isoc99_sscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func X__isoc99_swscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func X__isoc99_vfscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_vfwscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_vscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_vsscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_vswscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_vwscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func X__isoc99_wscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func X__isprint_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__ispunct_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isspace_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__isupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__iswalnum_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswalpha_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswblank_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswcntrl_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswctype_l(tls *TLS, c Twint_t, t Twctype_t, l Tlocale_t) (r int32)
- func X__iswdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswgraph_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswprint_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswpunct_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswspace_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__iswxdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func X__isxdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__lctrans(tls *TLS, msg uintptr, lm uintptr) (r uintptr)
- func X__lctrans_cur(tls *TLS, msg uintptr) (r uintptr)
- func X__lctrans_impl(tls *TLS, msg uintptr, lm uintptr) (r uintptr)
- func X__ldexp_cexp(tls *TLS, z complex128, expt int32) (r complex128)
- func X__ldexp_cexpf(tls *TLS, z complex64, expt int32) (r complex64)
- func X__lgamma_r(tls *TLS, x float64, signgamp uintptr) (r1 float64)
- func X__lgammaf_r(tls *TLS, x float32, signgamp uintptr) (r1 float32)
- func X__lgammal_r(tls *TLS, x float64, sg uintptr) (r float64)
- func X__libc_current_sigrtmax(tls *TLS) (r int32)
- func X__libc_current_sigrtmin(tls *TLS) (r int32)
- func X__libc_sigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r1 int32)
- func X__loc_is_allocated(tls *TLS, loc Tlocale_t) (r int32)
- func X__localtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func X__lockfile(tls *TLS, file uintptr) int32
- func X__lookup_ipliteral(tls *TLS, buf uintptr, name uintptr, family int32) (r int32)
- func X__lookup_name(tls *TLS, buf uintptr, canon uintptr, name uintptr, family int32, flags int32) (r int32)
- func X__lookup_serv(tls *TLS, buf uintptr, name uintptr, proto int32, socktype int32, flags int32) (r int32)
- func X__lsysinfo(tls *TLS, info uintptr) (r int32)
- func X__lxstat(tls *TLS, ver int32, path uintptr, buf uintptr) (r int32)
- func X__madvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func X__map_file(tls *TLS, pathname uintptr, size uintptr) (r uintptr)
- func X__math_divzero(tls *TLS, sign Tuint32_t) (r float64)
- func X__math_divzerof(tls *TLS, sign Tuint32_t) (r float32)
- func X__math_invalid(tls *TLS, x float64) (r float64)
- func X__math_invalidf(tls *TLS, x float32) (r float32)
- func X__math_oflow(tls *TLS, sign Tuint32_t) (r float64)
- func X__math_oflowf(tls *TLS, sign Tuint32_t) (r float32)
- func X__math_uflow(tls *TLS, sign Tuint32_t) (r float64)
- func X__math_uflowf(tls *TLS, sign Tuint32_t) (r float32)
- func X__math_xflow(tls *TLS, sign Tuint32_t, y2 float64) (r float64)
- func X__math_xflowf(tls *TLS, sign Tuint32_t, y2 float32) (r float32)
- func X__memrchr(tls *TLS, m uintptr, c int32, n Tsize_t) (r uintptr)
- func X__mkostemps(tls *TLS, template uintptr, len1 int32, flags int32) (r int32)
- func X__mmap(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func X__mo_lookup(tls *TLS, p uintptr, size Tsize_t, s uintptr) (r uintptr)
- func X__month_to_secs(tls *TLS, month int32, is_leap int32) (r int32)
- func X__mprotect(tls *TLS, addr uintptr, len1 Tsize_t, prot int32) (r int32)
- func X__mremap(tls *TLS, old_addr uintptr, old_len Tsize_t, new_len Tsize_t, flags int32, ...) (r uintptr)
- func X__munmap(tls *TLS, start uintptr, len1 Tsize_t) (r int32)
- func X__nl_langinfo(tls *TLS, item Tnl_item) (r uintptr)
- func X__nl_langinfo_l(tls *TLS, item Tnl_item, loc Tlocale_t) (r uintptr)
- func X__nscd_query(tls *TLS, req Tint32_t, key uintptr, buf uintptr, len1 Tsize_t, swap uintptr) (r uintptr)
- func X__ofl_add(tls *TLS, f uintptr) (r uintptr)
- func X__ofl_lock(tls *TLS) (r uintptr)
- func X__ofl_unlock(tls *TLS)
- func X__overflow(tls *TLS, f uintptr, _c int32) (r int32)
- func X__pleval(tls *TLS, s uintptr, n uint64) (r uint64)
- func X__posix_getopt(tls *TLS, argc int32, argv uintptr, optstring uintptr) (r int32)
- func X__procfdname(tls *TLS, buf uintptr, fd uint32)
- func X__ptsname_r(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func X__putenv(tls *TLS, s uintptr, l Tsize_t, r uintptr) (r1 int32)
- func X__qsort_r(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun, ...)
- func X__register_locked_file(tls *TLS, f uintptr, self Tpthread_t)
- func X__rem_pio2(tls *TLS, x float64, y uintptr) (r1 int32)
- func X__rem_pio2_large(tls *TLS, x uintptr, y uintptr, e0 int32, nx int32, prec int32) (r int32)
- func X__rem_pio2f(tls *TLS, x float32, y uintptr) (r int32)
- func X__res_mkquery(tls *TLS, op int32, dname uintptr, class int32, type1 int32, data uintptr, ...) (r int32)
- func X__res_msend(tls *TLS, nqueries int32, queries uintptr, qlens uintptr, answers uintptr, ...) (r int32)
- func X__res_msend_rc(tls *TLS, nqueries int32, queries uintptr, qlens uintptr, answers uintptr, ...) (r1 int32)
- func X__res_send(tls *TLS, _msg uintptr, _msglen int32, _answer uintptr, _anslen int32) (r1 int32)
- func X__res_state(tls *TLS) (r uintptr)
- func X__reset_tls(tls *TLS)
- func X__restore(tls *TLS)
- func X__restore_rt(tls *TLS)
- func X__restore_sigs(tls *TLS, set uintptr)
- func X__rtnetlink_enumerate(tls *TLS, link_af int32, addr_af int32, __ccgo_fp_cb uintptr, ctx uintptr) (r1 int32)
- func X__secs_to_tm(tls *TLS, t int64, tm uintptr) (r int32)
- func X__secs_to_zone(tls *TLS, t int64, local int32, isdst uintptr, offset uintptr, oppoff uintptr, ...)
- func X__setxid(tls *TLS, nr int32, id int32, eid int32, sid int32) (r int32)
- func X__shgetc(tls *TLS, f uintptr) (r int32)
- func X__shlim(tls *TLS, f uintptr, lim Toff_t)
- func X__shm_mapname(tls *TLS, name uintptr, buf uintptr) (r uintptr)
- func X__sigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r1 int32)
- func X__signbit(tls *TLS, x float64) (r int32)
- func X__signbitf(tls *TLS, x float32) (r int32)
- func X__signbitl(tls *TLS, x float64) (r int32)
- func X__sigsetjmp_tail(tls *TLS, jb uintptr, ret int32) (r int32)
- func X__sin(tls *TLS, x float64, y float64, iy int32) (r1 float64)
- func X__sindf(tls *TLS, x float64) (r1 float32)
- func X__stack_chk_fail(tls *TLS)
- func X__stack_chk_fail_local(tls *TLS)
- func X__stdio_close(tls *TLS, f uintptr) (r int32)
- func X__stdio_exit(tls *TLS)
- func X__stdio_exit_needed(tls *TLS)
- func X__stpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func X__stpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func X__strcasecmp_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func X__strchrnul(tls *TLS, s uintptr, c int32) (r uintptr)
- func X__strcoll_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func X__strerror_l(tls *TLS, e int32, loc Tlocale_t) (r uintptr)
- func X__strftime_fmt_1(tls *TLS, s uintptr, l uintptr, f int32, tm uintptr, loc Tlocale_t, pad int32) (r uintptr)
- func X__strncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, loc Tlocale_t) (r1 int32)
- func X__strtod_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func X__strtof_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float32)
- func X__strtol_internal(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func X__strtold_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func X__strtoll_internal(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func X__strtoul_internal(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func X__strtoull_internal(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func X__sync_add_and_fetch[T constraints.Integer](t *TLS, p uintptr, v T) T
- func X__sync_add_and_fetch_uint32(t *TLS, p uintptr, v uint32) uint32
- func X__sync_sub_and_fetch[T constraints.Integer](t *TLS, p uintptr, v T) T
- func X__sync_sub_and_fetch_uint32(t *TLS, p uintptr, v uint32) uint32
- func X__sync_synchronize(t *TLS)
- func X__sync_val_compare_and_swapInt8(t *TLS, ptr uintptr, oldval, newval int8) (r int8)
- func X__sync_val_compare_and_swapInt16(t *TLS, ptr uintptr, oldval, newval int16) (r int16)
- func X__sync_val_compare_and_swapInt32(t *TLS, ptr uintptr, oldval, newval int32) (r int32)
- func X__sync_val_compare_and_swapInt64(t *TLS, ptr uintptr, oldval, newval int64) (r int64)
- func X__sync_val_compare_and_swapUint8(t *TLS, ptr uintptr, oldval, newval uint8) (r uint8)
- func X__sync_val_compare_and_swapUint16(t *TLS, ptr uintptr, oldval, newval uint16) (r uint16)
- func X__sync_val_compare_and_swapUint32(t *TLS, ptr uintptr, oldval, newval uint32) (r uint32)
- func X__sync_val_compare_and_swapUint64(t *TLS, ptr uintptr, oldval, newval uint64) (r uint64)
- func X__syscall0(tls *TLS, n long) long
- func X__syscall1(tls *TLS, n, a1 long) long
- func X__syscall2(tls *TLS, n, a1, a2 long) long
- func X__syscall3(tls *TLS, n, a1, a2, a3 long) long
- func X__syscall4(tls *TLS, n, a1, a2, a3, a4 long) long
- func X__syscall5(tls *TLS, n, a1, a2, a3, a4, a5 long) long
- func X__syscall6(tls *TLS, n, a1, a2, a3, a4, a5, a6 long) long
- func X__syscall_ret(tls *TLS, r uint64) (r1 int64)
- func X__tan(tls *TLS, x float64, y float64, odd int32) (r1 float64)
- func X__tandf(tls *TLS, x float64, odd int32) (r1 float32)
- func X__tm_to_secs(tls *TLS, tm uintptr) (r int64)
- func X__tm_to_tzname(tls *TLS, tm uintptr) (r uintptr)
- func X__tolower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__toread(tls *TLS, f uintptr) (r int32)
- func X__toread_needs_stdio_exit(tls *TLS)
- func X__toupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func X__towrite(tls *TLS, f uintptr) (r int32)
- func X__towrite_needs_stdio_exit(tls *TLS)
- func X__tre_mem_alloc_impl(tls *TLS, mem Ttre_mem_t, provided int32, provided_block uintptr, zero int32, ...) (r uintptr)
- func X__tre_mem_destroy(tls *TLS, mem Ttre_mem_t)
- func X__tsearch_balance(tls *TLS, p uintptr) (r int32)
- func X__uflow(tls *TLS, f uintptr) (r int32)
- func X__unlist_locked_file(tls *TLS, f uintptr)
- func X__unlockfile(tls *TLS, file uintptr)
- func X__vm_wait(tls *TLS)
- func X__wcscoll_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func X__xmknod(tls *TLS, ver int32, path uintptr, mode Tmode_t, dev uintptr) (r int32)
- func X__xmknodat(tls *TLS, ver int32, fd int32, path uintptr, mode Tmode_t, dev uintptr) (r int32)
- func X__xpg_basename(tls *TLS, s uintptr) (r uintptr)
- func X__xpg_strerror_r(tls *TLS, err int32, buf uintptr, buflen Tsize_t) (r int32)
- func X__xstat(tls *TLS, ver int32, path uintptr, buf uintptr) (r int32)
- func X__year_to_secs(tls *TLS, year int64, is_leap uintptr) (r int64)
- func X_exit(tls *TLS, status int32)
- func X_flushlbf(tls *TLS)
- func X_longjmp(t *TLS, env uintptr, val int32)
- func X_obstack_begin(t *TLS, obstack uintptr, size, alignment int32, chunkfun, freefun uintptr) int32
- func X_obstack_newchunk(t *TLS, obstack uintptr, length int32) int32
- func X_pthread_cleanup_pop(tls *TLS, _ uintptr, run int32)
- func X_pthread_cleanup_push(tls *TLS, _, f, x uintptr)
- func X_setjmp(t *TLS, env uintptr) int32
- func Xa64l(tls *TLS, s uintptr) (r int64)
- func Xabort(tls *TLS)
- func Xabs(tls *TLS, a int32) (r int32)
- func Xaccept(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Xaccept4(tls *TLS, fd int32, addr uintptr, len1 uintptr, flg int32) (r1 int32)
- func Xaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Xacct(tls *TLS, filename uintptr) (r int32)
- func Xacos(tls *TLS, x float64) (r float64)
- func Xacosf(tls *TLS, x float32) (r float32)
- func Xacosh(tls *TLS, x float64) (r float64)
- func Xacoshf(tls *TLS, x float32) (r float32)
- func Xacoshl(tls *TLS, x float64) (r float64)
- func Xacosl(tls *TLS, x float64) (r float64)
- func Xaddmntent(tls *TLS, f uintptr, mnt uintptr) (r int32)
- func Xadjtime(tls *TLS, in uintptr, out uintptr) (r int32)
- func Xadjtimex(tls *TLS, tx uintptr) (r int32)
- func Xalarm(tls *TLS, seconds uint32) (r uint32)
- func Xalloca(tls *TLS, size Tsize_t) uintptr
- func Xalphasort(tls *TLS, a uintptr, b uintptr) (r int32)
- func Xarch_prctl(tls *TLS, code int32, addr uint64) (r int32)
- func Xasctime(tls *TLS, tm uintptr) (r uintptr)
- func Xasctime_r(tls *TLS, tm uintptr, buf uintptr) (r uintptr)
- func Xasin(tls *TLS, x float64) (r1 float64)
- func Xasinf(tls *TLS, x float32) (r float32)
- func Xasinh(tls *TLS, x3 float64) (r float64)
- func Xasinhf(tls *TLS, x3 float32) (r float32)
- func Xasinhl(tls *TLS, x float64) (r float64)
- func Xasinl(tls *TLS, x float64) (r float64)
- func Xasprintf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Xat_quick_exit(tls *TLS, __ccgo_fp_func uintptr) (r1 int32)
- func Xatan(tls *TLS, x3 float64) (r float64)
- func Xatan2(tls *TLS, y float64, x float64) (r float64)
- func Xatan2f(tls *TLS, y float32, x float32) (r float32)
- func Xatan2l(tls *TLS, y float64, x float64) (r float64)
- func Xatanf(tls *TLS, x3 float32) (r float32)
- func Xatanh(tls *TLS, x3 float64) (r float64)
- func Xatanhf(tls *TLS, x3 float32) (r float32)
- func Xatanhl(tls *TLS, x float64) (r float64)
- func Xatanl(tls *TLS, x float64) (r float64)
- func Xatexit(tls *TLS, func_ uintptr) (r int32)
- func Xatof(tls *TLS, s uintptr) (r float64)
- func Xatoi(tls *TLS, s uintptr) (r int32)
- func Xatol(tls *TLS, s uintptr) (r int64)
- func Xatoll(tls *TLS, s uintptr) (r int64)
- func Xbacktrace(t *TLS, buf uintptr, size int32) int32
- func Xbacktrace_symbols_fd(t *TLS, buffer uintptr, size, fd int32)
- func Xbasename(tls *TLS, s uintptr) (r uintptr)
- func Xbcmp(tls *TLS, s1 uintptr, s2 uintptr, n Tsize_t) (r int32)
- func Xbcopy(tls *TLS, s1 uintptr, s2 uintptr, n Tsize_t)
- func Xbind(tls *TLS, fd int32, addr uintptr, len1 Tsocklen_t) (r1 int32)
- func Xbind_textdomain_codeset(tls *TLS, domainname uintptr, codeset uintptr) (r uintptr)
- func Xbindtextdomain(tls *TLS, domainname uintptr, dirname uintptr) (r uintptr)
- func Xbrk(tls *TLS, end uintptr) (r int32)
- func Xbsearch(tls *TLS, key uintptr, base uintptr, nel Tsize_t, width Tsize_t, ...) (r uintptr)
- func Xbzero(tls *TLS, s uintptr, n Tsize_t)
- func Xcabs(tls *TLS, z complex128) (r float64)
- func Xcabsf(tls *TLS, z complex64) (r float32)
- func Xcabsl(tls *TLS, z complex128) (r float64)
- func Xcacos(tls *TLS, z complex128) (r complex128)
- func Xcacosf(tls *TLS, z complex64) (r complex64)
- func Xcacosh(tls *TLS, z complex128) (r complex128)
- func Xcacoshf(tls *TLS, z complex64) (r complex64)
- func Xcacoshl(tls *TLS, z complex128) (r complex128)
- func Xcacosl(tls *TLS, z complex128) (r complex128)
- func Xcalloc(tls *TLS, m Tsize_t, n Tsize_t) (r uintptr)
- func Xcapget(tls *TLS, a uintptr, b uintptr) (r int32)
- func Xcapset(tls *TLS, a uintptr, b uintptr) (r int32)
- func Xcarg(tls *TLS, z complex128) (r float64)
- func Xcargf(tls *TLS, z complex64) (r float32)
- func Xcargl(tls *TLS, z complex128) (r float64)
- func Xcasin(tls *TLS, z complex128) (r1 complex128)
- func Xcasinf(tls *TLS, z complex64) (r1 complex64)
- func Xcasinh(tls *TLS, z complex128) (r complex128)
- func Xcasinhf(tls *TLS, z complex64) (r complex64)
- func Xcasinhl(tls *TLS, z complex128) (r complex128)
- func Xcasinl(tls *TLS, z complex128) (r complex128)
- func Xcatan(tls *TLS, z complex128) (r complex128)
- func Xcatanf(tls *TLS, z complex64) (r complex64)
- func Xcatanh(tls *TLS, z complex128) (r complex128)
- func Xcatanhf(tls *TLS, z complex64) (r complex64)
- func Xcatanhl(tls *TLS, z complex128) (r complex128)
- func Xcatanl(tls *TLS, z complex128) (r complex128)
- func Xcatclose(tls *TLS, catd Tnl_catd) (r int32)
- func Xcatgets(tls *TLS, catd Tnl_catd, set_id int32, msg_id int32, s uintptr) (r uintptr)
- func Xcbrt(tls *TLS, x float64) (r1 float64)
- func Xcbrtf(tls *TLS, x float32) (r1 float32)
- func Xcbrtl(tls *TLS, x float64) (r float64)
- func Xccos(tls *TLS, z complex128) (r complex128)
- func Xccosf(tls *TLS, z complex64) (r complex64)
- func Xccosh(tls *TLS, z complex128) (r complex128)
- func Xccoshf(tls *TLS, z complex64) (r complex64)
- func Xccoshl(tls *TLS, z complex128) (r complex128)
- func Xccosl(tls *TLS, z complex128) (r complex128)
- func Xceil(tls *TLS, x3 float64) (r float64)
- func Xceilf(tls *TLS, x3 float32) (r float32)
- func Xceill(tls *TLS, x float64) (r float64)
- func Xcexp(tls *TLS, z complex128) (r complex128)
- func Xcexpf(tls *TLS, z complex64) (r complex64)
- func Xcexpl(tls *TLS, z complex128) (r complex128)
- func Xcfmakeraw(tls *TLS, t uintptr)
- func Xcfsetispeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Xcfsetospeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Xcfsetspeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Xchdir(tls *TLS, path uintptr) (r int32)
- func Xchmod(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Xchown(tls *TLS, path uintptr, uid Tuid_t, gid Tgid_t) (r int32)
- func Xchroot(tls *TLS, path uintptr) (r int32)
- func Xcimag(tls *TLS, z complex128) (r float64)
- func Xcimagf(tls *TLS, z complex64) (r float32)
- func Xcimagl(tls *TLS, z complex128) (r float64)
- func Xclearenv(tls *TLS) (r int32)
- func Xclearerr(tls *TLS, f uintptr)
- func Xclearerr_unlocked(tls *TLS, f uintptr)
- func Xclock_adjtime(tls *TLS, clock_id Tclockid_t, utx uintptr) (r1 int32)
- func Xclock_getcpuclockid(tls *TLS, pid Tpid_t, clk uintptr) (r int32)
- func Xclock_getres(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Xclock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Xclock_nanosleep(tls *TLS, clk Tclockid_t, flags int32, req uintptr, rem uintptr) (r int32)
- func Xclock_settime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Xclog(tls *TLS, z complex128) (r1 complex128)
- func Xclogf(tls *TLS, z complex64) (r1 complex64)
- func Xclogl(tls *TLS, z complex128) (r complex128)
- func Xclose(tls *TLS, fd int32) (r1 int32)
- func Xclosedir(tls *TLS, dir uintptr) (r int32)
- func Xcloselog(tls *TLS)
- func Xconj(tls *TLS, z complex128) (r complex128)
- func Xconjf(tls *TLS, z complex64) (r complex64)
- func Xconjl(tls *TLS, z complex128) (r complex128)
- func Xconnect(tls *TLS, fd int32, addr uintptr, len1 Tsocklen_t) (r1 int32)
- func Xcopysign(tls *TLS, x float64, y float64) (r float64)
- func Xcopysignf(tls *TLS, x float32, y float32) (r float32)
- func Xcopysignl(tls *TLS, x float64, y float64) (r float64)
- func Xcos(tls *TLS, x3 float64) (r float64)
- func Xcosf(tls *TLS, x3 float32) (r float32)
- func Xcosh(tls *TLS, x3 float64) (r float64)
- func Xcoshf(tls *TLS, x3 float32) (r float32)
- func Xcoshl(tls *TLS, x float64) (r float64)
- func Xcosl(tls *TLS, x float64) (r float64)
- func Xcpow(tls *TLS, z complex128, c complex128) (r complex128)
- func Xcpowf(tls *TLS, z complex64, c complex64) (r complex64)
- func Xcpowl(tls *TLS, z complex128, c complex128) (r complex128)
- func Xcproj(tls *TLS, z complex128) (r complex128)
- func Xcprojf(tls *TLS, z complex64) (r complex64)
- func Xcprojl(tls *TLS, z complex128) (r complex128)
- func Xcreal(tls *TLS, z complex128) (r float64)
- func Xcrealf(tls *TLS, z complex64) (r float32)
- func Xcreall(tls *TLS, z complex128) (r float64)
- func Xcreat(tls *TLS, filename uintptr, mode Tmode_t) (r int32)
- func Xcrypt(tls *TLS, key uintptr, salt uintptr) (r uintptr)
- func Xcrypt_r(tls *TLS, key uintptr, salt uintptr, data uintptr) (r uintptr)
- func Xcsin(tls *TLS, z complex128) (r complex128)
- func Xcsinf(tls *TLS, z complex64) (r complex64)
- func Xcsinh(tls *TLS, z complex128) (r complex128)
- func Xcsinhf(tls *TLS, z complex64) (r complex64)
- func Xcsinhl(tls *TLS, z complex128) (r complex128)
- func Xcsinl(tls *TLS, z complex128) (r complex128)
- func Xcsqrt(tls *TLS, z complex128) (r complex128)
- func Xcsqrtf(tls *TLS, z complex64) (r complex64)
- func Xcsqrtl(tls *TLS, z complex128) (r complex128)
- func Xctan(tls *TLS, z complex128) (r complex128)
- func Xctanf(tls *TLS, z complex64) (r complex64)
- func Xctanh(tls *TLS, z complex128) (r complex128)
- func Xctanhf(tls *TLS, z complex64) (r complex64)
- func Xctanhl(tls *TLS, z complex128) (r complex128)
- func Xctanl(tls *TLS, z complex128) (r complex128)
- func Xctermid(tls *TLS, s uintptr) (r uintptr)
- func Xctime(tls *TLS, t uintptr) (r uintptr)
- func Xctime_r(tls *TLS, t uintptr, buf uintptr) (r uintptr)
- func Xcuserid(tls *TLS, buf uintptr) (r uintptr)
- func Xdcgettext(tls *TLS, domainname uintptr, msgid uintptr, category int32) (r uintptr)
- func Xdcngettext(tls *TLS, domainname uintptr, msgid1 uintptr, msgid2 uintptr, n uint64, ...) (r1 uintptr)
- func Xdelete_module(tls *TLS, a uintptr, b uint32) (r int32)
- func Xdgettext(tls *TLS, domainname uintptr, msgid uintptr) (r uintptr)
- func Xdifftime(tls *TLS, t1 Ttime_t, t0 Ttime_t) (r float64)
- func Xdirfd(tls *TLS, d uintptr) (r int32)
- func Xdirname(tls *TLS, s uintptr) (r uintptr)
- func Xdlclose(t *TLS, handle uintptr) int32
- func Xdlerror(t *TLS) uintptr
- func Xdlopen(t *TLS, filename uintptr, flags int32) uintptr
- func Xdlsym(t *TLS, handle, symbol uintptr) uintptr
- func Xdn_comp(tls *TLS, src uintptr, dst uintptr, space int32, dnptrs uintptr, ...) (r int32)
- func Xdn_expand(tls *TLS, base uintptr, end uintptr, src uintptr, dest uintptr, space int32) (r int32)
- func Xdn_skipname(tls *TLS, s uintptr, end uintptr) (r int32)
- func Xdngettext(tls *TLS, domainname uintptr, msgid1 uintptr, msgid2 uintptr, n uint64) (r uintptr)
- func Xdprintf(tls *TLS, fd int32, fmt uintptr, va uintptr) (r int32)
- func Xdrand48(tls *TLS) (r float64)
- func Xdrem(tls *TLS, x float64, y float64) (r float64)
- func Xdremf(tls *TLS, x float32, y float32) (r float32)
- func Xdup(tls *TLS, fd int32) (r int32)
- func Xdup2(tls *TLS, old int32, new1 int32) (r1 int32)
- func Xdup3(tls *TLS, old int32, new1 int32, flags int32) (r int32)
- func Xeaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Xecvt(tls *TLS, x float64, n int32, dp uintptr, sign uintptr) (r uintptr)
- func Xencrypt(tls *TLS, block uintptr, edflag int32)
- func Xendgrent(tls *TLS)
- func Xendhostent(tls *TLS)
- func Xendmntent(tls *TLS, f uintptr) (r int32)
- func Xendnetent(tls *TLS)
- func Xendprotoent(tls *TLS)
- func Xendpwent(tls *TLS)
- func Xendservent(tls *TLS)
- func Xendspent(tls *TLS)
- func Xendusershell(tls *TLS)
- func Xendutent(tls *TLS)
- func Xendutxent(tls *TLS)
- func Xepoll_create(tls *TLS, size int32) (r int32)
- func Xepoll_create1(tls *TLS, flags int32) (r1 int32)
- func Xepoll_ctl(tls *TLS, fd int32, op int32, fd2 int32, ev uintptr) (r int32)
- func Xepoll_pwait(tls *TLS, fd int32, ev uintptr, cnt int32, to int32, sigs uintptr) (r1 int32)
- func Xepoll_wait(tls *TLS, fd int32, ev uintptr, cnt int32, to int32) (r int32)
- func Xerand48(tls *TLS, s uintptr) (r float64)
- func Xerf(tls *TLS, x float64) (r1 float64)
- func Xerfc(tls *TLS, x float64) (r1 float64)
- func Xerfcf(tls *TLS, x float32) (r1 float32)
- func Xerfcl(tls *TLS, x float64) (r float64)
- func Xerff(tls *TLS, x float32) (r1 float32)
- func Xerfl(tls *TLS, x float64) (r float64)
- func Xerr(tls *TLS, status int32, fmt uintptr, va uintptr)
- func Xerrx(tls *TLS, status int32, fmt uintptr, va uintptr)
- func Xether_aton(tls *TLS, x uintptr) (r uintptr)
- func Xether_aton_r(tls *TLS, x uintptr, p_a uintptr) (r uintptr)
- func Xether_hostton(tls *TLS, hostname uintptr, e uintptr) (r int32)
- func Xether_line(tls *TLS, l uintptr, e uintptr, hostname uintptr) (r int32)
- func Xether_ntoa(tls *TLS, p_a uintptr) (r uintptr)
- func Xether_ntoa_r(tls *TLS, p_a uintptr, x uintptr) (r uintptr)
- func Xether_ntohost(tls *TLS, hostname uintptr, e uintptr) (r int32)
- func Xeuidaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Xeventfd(tls *TLS, count uint32, flags int32) (r1 int32)
- func Xeventfd_read(tls *TLS, fd int32, value uintptr) (r int32)
- func Xeventfd_write(tls *TLS, fd int32, _value Teventfd_t) (r int32)
- func Xexecl(tls *TLS, path uintptr, argv0 uintptr, va uintptr) (r int32)
- func Xexecle(tls *TLS, path uintptr, argv0 uintptr, va uintptr) (r int32)
- func Xexeclp(tls *TLS, file uintptr, argv0 uintptr, va uintptr) (r int32)
- func Xexecv(tls *TLS, path uintptr, argv uintptr) (r int32)
- func Xexecve(tls *TLS, path uintptr, argv uintptr, envp uintptr) (r int32)
- func Xexecvp(tls *TLS, file uintptr, argv uintptr) (r int32)
- func Xexecvpe(tls *TLS, file uintptr, argv uintptr, envp uintptr) (r int32)
- func Xexit(tls *TLS, code int32)
- func Xexp(tls *TLS, x1 float64) (r1 float64)
- func Xexp2(tls *TLS, x1 float64) (r1 float64)
- func Xexp2f(tls *TLS, x2 float32) (r1 float32)
- func Xexp2l(tls *TLS, x float64) (r float64)
- func Xexp10(tls *TLS, x float64) (r float64)
- func Xexp10f(tls *TLS, x float32) (r float32)
- func Xexp10l(tls *TLS, x float64) (r float64)
- func Xexpf(tls *TLS, x2 float32) (r1 float32)
- func Xexpl(tls *TLS, x float64) (r float64)
- func Xexplicit_bzero(tls *TLS, d uintptr, n Tsize_t)
- func Xexpm1(tls *TLS, x3 float64) (r float64)
- func Xexpm1f(tls *TLS, x3 float32) (r float32)
- func Xexpm1l(tls *TLS, x float64) (r float64)
- func Xfabs(tls *TLS, x float64) (r float64)
- func Xfabsf(tls *TLS, x float32) (r float32)
- func Xfabsl(tls *TLS, x float64) (r float64)
- func Xfaccessat(tls *TLS, fd int32, filename uintptr, amode int32, flag int32) (r int32)
- func Xfallocate(tls *TLS, fd int32, mode int32, base Toff_t, len1 Toff_t) (r int32)
- func Xfanotify_init(tls *TLS, flags uint32, event_f_flags uint32) (r int32)
- func Xfanotify_mark(tls *TLS, fanotify_fd int32, flags uint32, mask uint64, dfd int32, ...) (r int32)
- func Xfchdir(tls *TLS, fd int32) (r int32)
- func Xfchmod(tls *TLS, fd int32, mode Tmode_t) (r int32)
- func Xfchmodat(tls *TLS, fd int32, path uintptr, mode Tmode_t, flag int32) (r int32)
- func Xfchown(tls *TLS, fd int32, uid Tuid_t, gid Tgid_t) (r int32)
- func Xfchownat(tls *TLS, fd int32, path uintptr, uid Tuid_t, gid Tgid_t, flag int32) (r int32)
- func Xfclose(tls *TLS, f uintptr) (r1 int32)
- func Xfcntl(tls *TLS, fd int32, cmd int32, va uintptr) (r int32)
- func Xfcntl64(tls *TLS, fd int32, cmd int32, va uintptr) (r int32)
- func Xfcvt(tls *TLS, x float64, n int32, dp uintptr, sign uintptr) (r uintptr)
- func Xfdatasync(tls *TLS, fd int32) (r int32)
- func Xfdim(tls *TLS, x float64, y float64) (r float64)
- func Xfdimf(tls *TLS, x float32, y float32) (r float32)
- func Xfdiml(tls *TLS, x float64, y float64) (r float64)
- func Xfdopen(tls *TLS, fd int32, mode uintptr) (r uintptr)
- func Xfdopendir(tls *TLS, fd int32) (r uintptr)
- func Xfeclearexcept(tls *TLS, mask int32) (r int32)
- func Xfegetenv(tls *TLS, envp uintptr) (r int32)
- func Xfegetround(tls *TLS) (r int32)
- func Xfeof(tls *TLS, f uintptr) (r int32)
- func Xfeof_unlocked(tls *TLS, f uintptr) (r int32)
- func Xferaiseexcept(tls *TLS, mask int32) (r int32)
- func Xferror(tls *TLS, f uintptr) (r int32)
- func Xferror_unlocked(tls *TLS, f uintptr) (r int32)
- func Xfesetenv(tls *TLS, envp uintptr) (r int32)
- func Xfetestexcept(tls *TLS, mask int32) (r int32)
- func Xfexecve(tls *TLS, fd int32, argv uintptr, envp uintptr) (r1 int32)
- func Xfflush(tls *TLS, f uintptr) (r1 int32)
- func Xfflush_unlocked(tls *TLS, f uintptr) (r int32)
- func Xffs(tls *TLS, i int32) (r int32)
- func Xffsl(tls *TLS, i int64) (r int32)
- func Xffsll(tls *TLS, i int64) (r int32)
- func Xfgetc(tls *TLS, f1 uintptr) (r int32)
- func Xfgetc_unlocked(tls *TLS, f uintptr) (r int32)
- func Xfgetgrent(tls *TLS, f uintptr) (r uintptr)
- func Xfgetln(tls *TLS, f uintptr, plen uintptr) (r uintptr)
- func Xfgetpos(tls *TLS, f uintptr, pos uintptr) (r int32)
- func Xfgetpwent(tls *TLS, f uintptr) (r uintptr)
- func Xfgets(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Xfgets_unlocked(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Xfgetws(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Xfgetws_unlocked(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Xfileno(tls *TLS, f uintptr) (r int32)
- func Xfileno_unlocked(tls *TLS, f uintptr) (r int32)
- func Xfinite(tls *TLS, x float64) (r int32)
- func Xfinitef(tls *TLS, x float32) (r int32)
- func Xflock(tls *TLS, fd int32, op int32) (r int32)
- func Xflockfile(tls *TLS, f uintptr)
- func Xfloor(tls *TLS, x3 float64) (r float64)
- func Xfloorf(tls *TLS, x3 float32) (r float32)
- func Xfloorl(tls *TLS, x float64) (r float64)
- func Xfma(tls *TLS, x1 float64, y float64, z float64) (r1 float64)
- func Xfmal(tls *TLS, x float64, y float64, z float64) (r float64)
- func Xfmax(tls *TLS, x float64, y float64) (r float64)
- func Xfmaxf(tls *TLS, x float32, y float32) (r float32)
- func Xfmaxl(tls *TLS, x float64, y float64) (r float64)
- func Xfmemopen(tls *TLS, buf uintptr, size Tsize_t, mode uintptr) (r uintptr)
- func Xfmin(tls *TLS, x float64, y float64) (r float64)
- func Xfminf(tls *TLS, x float32, y float32) (r float32)
- func Xfminl(tls *TLS, x float64, y float64) (r float64)
- func Xfmod(tls *TLS, x float64, y float64) (r float64)
- func Xfmodf(tls *TLS, x float32, y float32) (r float32)
- func Xfmodl(tls *TLS, x float64, y float64) (r float64)
- func Xfmtmsg(tls *TLS, classification int64, label uintptr, severity int32, text uintptr, ...) (r int32)
- func Xfnmatch(tls *TLS, pat uintptr, str uintptr, flags int32) (r int32)
- func Xfopen(tls *TLS, filename uintptr, mode uintptr) (r uintptr)
- func Xfopen64(tls *TLS, filename uintptr, mode uintptr) (r uintptr)
- func Xfopencookie(tls *TLS, cookie uintptr, mode uintptr, iofuncs Tcookie_io_functions_t) (r uintptr)
- func Xfork(t *TLS) int32
- func Xfpathconf(tls *TLS, fd int32, name int32) (r int64)
- func Xfprintf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Xfpurge(tls *TLS, f uintptr) (r int32)
- func Xfputc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func Xfputc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func Xfputs(tls *TLS, s uintptr, f uintptr) (r int32)
- func Xfputs_unlocked(tls *TLS, s uintptr, f uintptr) (r int32)
- func Xfputws(tls *TLS, _ws uintptr, f uintptr) (r int32)
- func Xfputws_unlocked(tls *TLS, _ws uintptr, f uintptr) (r int32)
- func Xfree(tls *TLS, p uintptr)
- func Xfreeaddrinfo(tls *TLS, p uintptr)
- func Xfreeifaddrs(tls *TLS, ifp uintptr)
- func Xfreelocale(tls *TLS, l Tlocale_t)
- func Xfremovexattr(tls *TLS, fd int32, name uintptr) (r int32)
- func Xfreopen(tls *TLS, filename uintptr, mode uintptr, f uintptr) (r uintptr)
- func Xfrexp(tls *TLS, x float64, e uintptr) (r float64)
- func Xfrexpf(tls *TLS, x float32, e uintptr) (r float32)
- func Xfrexpl(tls *TLS, x float64, e uintptr) (r float64)
- func Xfscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Xfseek(tls *TLS, f uintptr, off int64, whence int32) (r int32)
- func Xfseeko(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func Xfsetpos(tls *TLS, f uintptr, pos uintptr) (r int32)
- func Xfsetxattr(tls *TLS, filedes int32, name uintptr, value uintptr, size Tsize_t, ...) (r int32)
- func Xfstat(tls *TLS, fd int32, st uintptr) (r int32)
- func Xfstat64(tls *TLS, fd int32, st uintptr) (r int32)
- func Xfstatat(tls *TLS, fd int32, path uintptr, st uintptr, flag int32) (r int32)
- func Xfstatfs(tls *TLS, fd int32, buf uintptr) (r int32)
- func Xfstatvfs(tls *TLS, fd int32, buf uintptr) (r int32)
- func Xfsync(tls *TLS, fd int32) (r int32)
- func Xftell(tls *TLS, f uintptr) (r int64)
- func Xftime(tls *TLS, tp uintptr) (r int32)
- func Xftruncate(tls *TLS, fd int32, length Toff_t) (r int32)
- func Xftruncate64(tls *TLS, fd int32, length Toff_t) (r int32)
- func Xftrylockfile(tls *TLS, f uintptr) (r int32)
- func Xfts64_close(t *TLS, ftsp uintptr) int32
- func Xfts64_open(t *TLS, path_argv uintptr, options int32, compar uintptr) uintptr
- func Xfts64_read(t *TLS, ftsp uintptr) uintptr
- func Xfts_close(t *TLS, ftsp uintptr) int32
- func Xfts_open(t *TLS, path_argv uintptr, options int32, compar uintptr) uintptr
- func Xfts_read(t *TLS, ftsp uintptr) uintptr
- func Xftw(tls *TLS, path uintptr, __ccgo_fp_fn uintptr, fd_limit int32) (r int32)
- func Xfunlockfile(tls *TLS, f uintptr)
- func Xfutimens(tls *TLS, fd int32, times uintptr) (r int32)
- func Xfutimes(tls *TLS, fd int32, tv uintptr) (r int32)
- func Xfutimesat(tls *TLS, dirfd int32, pathname uintptr, times uintptr) (r int32)
- func Xfwide(tls *TLS, f uintptr, mode int32) (r int32)
- func Xfwprintf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Xfwscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Xgai_strerror(tls *TLS, ecode int32) (r uintptr)
- func Xgcvt(tls *TLS, x float64, n int32, b uintptr) (r uintptr)
- func Xget_avphys_pages(tls *TLS) (r int64)
- func Xget_current_dir_name(tls *TLS) (r uintptr)
- func Xget_nprocs(tls *TLS) (r int32)
- func Xget_nprocs_conf(tls *TLS) (r int32)
- func Xget_phys_pages(tls *TLS) (r int64)
- func Xgetaddrinfo(tls *TLS, host uintptr, serv uintptr, hint uintptr, res uintptr) (r1 int32)
- func Xgetauxval(tls *TLS, item uint64) (r uint64)
- func Xgetc(tls *TLS, f1 uintptr) (r int32)
- func Xgetc_unlocked(tls *TLS, f uintptr) (r int32)
- func Xgetchar(tls *TLS) (r int32)
- func Xgetchar_unlocked(tls *TLS) (r int32)
- func Xgetcwd(tls *TLS, buf uintptr, size Tsize_t) (r uintptr)
- func Xgetdate(tls *TLS, s uintptr) (r uintptr)
- func Xgetdents(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func Xgetdomainname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Xgetdtablesize(tls *TLS) (r int32)
- func Xgetentropy(tls *TLS, buffer uintptr, len1 Tsize_t) (r int32)
- func Xgetenv(tls *TLS, name uintptr) (r uintptr)
- func Xgetgrent(tls *TLS) (r uintptr)
- func Xgetgrgid(tls *TLS, gid Tgid_t) (r uintptr)
- func Xgetgrgid_r(tls *TLS, gid Tgid_t, gr uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Xgetgrnam(tls *TLS, name uintptr) (r uintptr)
- func Xgetgrnam_r(tls *TLS, name uintptr, gr uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Xgetgrouplist(tls *TLS, user uintptr, gid Tgid_t, groups uintptr, ngroups uintptr) (r int32)
- func Xgetgroups(tls *TLS, count int32, list uintptr) (r int32)
- func Xgethostbyaddr(tls *TLS, a uintptr, l Tsocklen_t, af int32) (r uintptr)
- func Xgethostbyaddr_r(tls *TLS, a uintptr, l Tsocklen_t, af int32, h uintptr, buf uintptr, ...) (r int32)
- func Xgethostbyname(tls *TLS, name uintptr) (r uintptr)
- func Xgethostbyname2(tls *TLS, name uintptr, af int32) (r uintptr)
- func Xgethostbyname2_r(tls *TLS, name uintptr, af int32, h uintptr, buf uintptr, buflen Tsize_t, ...) (r int32)
- func Xgethostbyname_r(tls *TLS, name uintptr, h uintptr, buf uintptr, buflen Tsize_t, res uintptr, ...) (r int32)
- func Xgethostent(tls *TLS) (r uintptr)
- func Xgethostid(tls *TLS) (r int64)
- func Xgethostname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Xgetifaddrs(tls *TLS, ifap uintptr) (r1 int32)
- func Xgetitimer(tls *TLS, which int32, old uintptr) (r1 int32)
- func Xgetloadavg(tls *TLS, a uintptr, n int32) (r int32)
- func Xgetlogin(tls *TLS) (r uintptr)
- func Xgetlogin_r(tls *TLS, name uintptr, size Tsize_t) (r int32)
- func Xgetmntent(tls *TLS, f uintptr) (r uintptr)
- func Xgetmntent_r(tls *TLS, f uintptr, mnt uintptr, linebuf uintptr, buflen int32) (r uintptr)
- func Xgetnameinfo(tls *TLS, sa uintptr, sl Tsocklen_t, node uintptr, nodelen Tsocklen_t, ...) (r int32)
- func Xgetnetbyaddr(tls *TLS, net Tuint32_t, type1 int32) (r uintptr)
- func Xgetnetbyname(tls *TLS, name uintptr) (r uintptr)
- func Xgetnetent(tls *TLS) (r uintptr)
- func Xgetopt(tls *TLS, argc int32, argv uintptr, optstring uintptr) (r int32)
- func Xgetopt_long(tls *TLS, argc int32, argv uintptr, optstring uintptr, longopts uintptr, ...) (r int32)
- func Xgetopt_long_only(tls *TLS, argc int32, argv uintptr, optstring uintptr, longopts uintptr, ...) (r int32)
- func Xgetpagesize(tls *TLS) (r int32)
- func Xgetpass(tls *TLS, prompt uintptr) (r uintptr)
- func Xgetpeername(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Xgetpriority(tls *TLS, which int32, who Tid_t) (r int32)
- func Xgetprotobyname(tls *TLS, name uintptr) (r uintptr)
- func Xgetprotobynumber(tls *TLS, num int32) (r uintptr)
- func Xgetprotoent(tls *TLS) (r uintptr)
- func Xgetpwent(tls *TLS) (r uintptr)
- func Xgetpwnam(tls *TLS, name uintptr) (r uintptr)
- func Xgetpwnam_r(tls *TLS, name uintptr, pw uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Xgetpwuid(tls *TLS, uid Tuid_t) (r uintptr)
- func Xgetpwuid_r(tls *TLS, uid Tuid_t, pw uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Xgetresgid(tls *TLS, rgid uintptr, egid uintptr, sgid uintptr) (r int32)
- func Xgetresuid(tls *TLS, ruid uintptr, euid uintptr, suid uintptr) (r int32)
- func Xgetrlimit(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Xgetrlimit64(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Xgetrusage(tls *TLS, who int32, ru uintptr) (r1 int32)
- func Xgets(tls *TLS, s uintptr) (r uintptr)
- func Xgetservbyname(tls *TLS, name uintptr, prots uintptr) (r uintptr)
- func Xgetservbyname_r(tls *TLS, name uintptr, prots uintptr, se uintptr, buf uintptr, buflen Tsize_t, ...) (r int32)
- func Xgetservent(tls *TLS) (r uintptr)
- func Xgetsockname(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Xgetsockopt(tls *TLS, fd int32, level int32, optname int32, optval uintptr, optlen uintptr) (r2 int32)
- func Xgetspent(tls *TLS) (r uintptr)
- func Xgetsubopt(tls *TLS, opt uintptr, keys uintptr, val uintptr) (r int32)
- func Xgettext(tls *TLS, msgid uintptr) (r uintptr)
- func Xgettimeofday(tls *TLS, tv uintptr, tz uintptr) (r int32)
- func Xgetusershell(tls *TLS) (r uintptr)
- func Xgetutent(tls *TLS) (r uintptr)
- func Xgetutid(tls *TLS, ut uintptr) (r uintptr)
- func Xgetutline(tls *TLS, ut uintptr) (r uintptr)
- func Xgetutxent(tls *TLS) (r uintptr)
- func Xgetutxid(tls *TLS, ut uintptr) (r uintptr)
- func Xgetutxline(tls *TLS, ut uintptr) (r uintptr)
- func Xgetw(tls *TLS, f uintptr) (r int32)
- func Xglob(tls *TLS, pat uintptr, flags int32, __ccgo_fp_errfunc uintptr, g uintptr) (r int32)
- func Xglobfree(tls *TLS, g uintptr)
- func Xgmtime(tls *TLS, t uintptr) (r uintptr)
- func Xgmtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Xgrantpt(tls *TLS, fd int32) (r int32)
- func Xhasmntopt(tls *TLS, mnt uintptr, opt uintptr) (r uintptr)
- func Xhcreate(tls *TLS, nel Tsize_t) (r int32)
- func Xhdestroy(tls *TLS)
- func Xherror(tls *TLS, msg uintptr)
- func Xhsearch(tls *TLS, item TENTRY, action TACTION) (r uintptr)
- func Xhstrerror(tls *TLS, ecode int32) (r uintptr)
- func Xhypot(tls *TLS, x float64, y float64) (r float64)
- func Xhypotf(tls *TLS, x float32, y float32) (r float32)
- func Xhypotl(tls *TLS, x float64, y float64) (r float64)
- func Xiconv_close(tls *TLS, cd Ticonv_t) (r int32)
- func Xif_freenameindex(tls *TLS, idx uintptr)
- func Xif_indextoname(tls *TLS, index uint32, name uintptr) (r1 uintptr)
- func Xif_nameindex(tls *TLS) (r uintptr)
- func Xif_nametoindex(tls *TLS, name uintptr) (r1 uint32)
- func Xilogb(tls *TLS, x3 float64) (r int32)
- func Xilogbf(tls *TLS, x3 float32) (r int32)
- func Xilogbl(tls *TLS, x float64) (r int32)
- func Xindex(tls *TLS, s uintptr, c int32) (r uintptr)
- func Xinet_aton(tls *TLS, s0 uintptr, dest uintptr) (r int32)
- func Xinet_ntoa(tls *TLS, _in Tin_addr) (r uintptr)
- func Xinet_ntop(tls *TLS, af int32, a0 uintptr, s uintptr, l Tsocklen_t) (r uintptr)
- func Xinet_pton(tls *TLS, af int32, s uintptr, a0 uintptr) (r int32)
- func Xinit_module(tls *TLS, a uintptr, b uint64, c uintptr) (r int32)
- func Xinitstate(tls *TLS, seed uint32, state uintptr, size Tsize_t) (r uintptr)
- func Xinitstate_r(t *TLS, seed uint32, statebuf uintptr, statelen Tsize_t, buf uintptr) int32
- func Xinotify_add_watch(tls *TLS, fd int32, pathname uintptr, mask Tuint32_t) (r int32)
- func Xinotify_init(tls *TLS) (r int32)
- func Xinotify_init1(tls *TLS, flags int32) (r1 int32)
- func Xinotify_rm_watch(tls *TLS, fd int32, wd int32) (r int32)
- func Xinsque(tls *TLS, element uintptr, pred uintptr)
- func Xioctl(tls *TLS, fd int32, req int32, va uintptr) (r1 int32)
- func Xioperm(tls *TLS, from uint64, num uint64, turn_on int32) (r int32)
- func Xiopl(tls *TLS, level int32) (r int32)
- func Xisalnum(tls *TLS, c int32) (r int32)
- func Xisalnum_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisalpha(tls *TLS, c int32) (r int32)
- func Xisalpha_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisascii(tls *TLS, c int32) (r int32)
- func Xisastream(tls *TLS, fd int32) (r int32)
- func Xisatty(tls *TLS, fd int32) (r1 int32)
- func Xisblank(tls *TLS, c int32) (r int32)
- func Xisblank_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xiscntrl(tls *TLS, c int32) (r int32)
- func Xiscntrl_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisdigit(tls *TLS, c int32) (r int32)
- func Xisdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisgraph(tls *TLS, c int32) (r int32)
- func Xisgraph_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xislower(tls *TLS, c int32) (r int32)
- func Xislower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisnan(t *TLS, x float64) int32
- func Xisnanf(t *TLS, arg float32) int32
- func Xisnanl(t *TLS, arg float64) int32
- func Xisprint(tls *TLS, c int32) (r int32)
- func Xisprint_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xispunct(tls *TLS, c int32) (r int32)
- func Xispunct_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xissetugid(tls *TLS) (r int32)
- func Xisspace(tls *TLS, c int32) (r int32)
- func Xisspace_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xisupper(tls *TLS, c int32) (r int32)
- func Xisupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xiswalnum(tls *TLS, wc Twint_t) (r int32)
- func Xiswalnum_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswalpha(tls *TLS, wc Twint_t) (r int32)
- func Xiswalpha_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswblank(tls *TLS, wc Twint_t) (r int32)
- func Xiswblank_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswcntrl(tls *TLS, wc Twint_t) (r int32)
- func Xiswcntrl_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswctype(tls *TLS, wc Twint_t, type1 Twctype_t) (r int32)
- func Xiswctype_l(tls *TLS, c Twint_t, t Twctype_t, l Tlocale_t) (r int32)
- func Xiswdigit(tls *TLS, wc Twint_t) (r int32)
- func Xiswdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswgraph(tls *TLS, wc Twint_t) (r int32)
- func Xiswgraph_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswlower(tls *TLS, wc Twint_t) (r int32)
- func Xiswlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswprint(tls *TLS, wc Twint_t) (r int32)
- func Xiswprint_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswpunct(tls *TLS, wc Twint_t) (r int32)
- func Xiswpunct_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswspace(tls *TLS, wc Twint_t) (r int32)
- func Xiswspace_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswupper(tls *TLS, wc Twint_t) (r int32)
- func Xiswupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xiswxdigit(tls *TLS, wc Twint_t) (r int32)
- func Xiswxdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Xisxdigit(tls *TLS, c int32) (r int32)
- func Xisxdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xj0(tls *TLS, x float64) (r1 float64)
- func Xj0f(tls *TLS, x float32) (r1 float32)
- func Xj1(tls *TLS, x float64) (r1 float64)
- func Xj1f(tls *TLS, x float32) (r1 float32)
- func Xjn(tls *TLS, n int32, x float64) (r float64)
- func Xjnf(tls *TLS, n int32, x float32) (r float32)
- func Xjrand48(tls *TLS, s uintptr) (r int64)
- func Xkill(tls *TLS, pid Tpid_t, sig int32) (r int32)
- func Xkillpg(tls *TLS, pgid Tpid_t, sig int32) (r int32)
- func Xklogctl(tls *TLS, type1 int32, buf uintptr, len1 int32) (r int32)
- func Xl64a(tls *TLS, x0 int64) (r uintptr)
- func Xlabs(tls *TLS, a int64) (r int64)
- func Xlchmod(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Xlchown(tls *TLS, path uintptr, uid Tuid_t, gid Tgid_t) (r int32)
- func Xlckpwdf(tls *TLS) (r int32)
- func Xlcong48(tls *TLS, p uintptr)
- func Xldexp(tls *TLS, x float64, n int32) (r float64)
- func Xldexpf(tls *TLS, x float32, n int32) (r float32)
- func Xldexpl(tls *TLS, x float64, n int32) (r float64)
- func Xlfind(tls *TLS, key uintptr, base uintptr, nelp uintptr, width Tsize_t, ...) (r uintptr)
- func Xlgamma(tls *TLS, x float64) (r float64)
- func Xlgamma_r(tls *TLS, x float64, signgamp uintptr) (r float64)
- func Xlgammaf(tls *TLS, x float32) (r float32)
- func Xlgammaf_r(tls *TLS, x float32, signgamp uintptr) (r float32)
- func Xlgammal(tls *TLS, x float64) (r float64)
- func Xlgammal_r(tls *TLS, x float64, sg uintptr) (r float64)
- func Xlink(tls *TLS, existing uintptr, new1 uintptr) (r int32)
- func Xlinkat(tls *TLS, fd1 int32, existing uintptr, fd2 int32, new1 uintptr, flag int32) (r int32)
- func Xlisten(tls *TLS, fd int32, backlog int32) (r1 int32)
- func Xllabs(tls *TLS, a int64) (r int64)
- func Xllrint(tls *TLS, x float64) (r int64)
- func Xllrintf(tls *TLS, x float32) (r int64)
- func Xllrintl(tls *TLS, x float64) (r int64)
- func Xllround(tls *TLS, x float64) (r int64)
- func Xllroundf(tls *TLS, x float32) (r int64)
- func Xllroundl(tls *TLS, x float64) (r int64)
- func Xlocaleconv(tls *TLS) (r uintptr)
- func Xlocaltime(tls *TLS, t uintptr) (r uintptr)
- func Xlocaltime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Xlockf(tls *TLS, fd int32, op int32, size Toff_t) (r int32)
- func Xlog(tls *TLS, x1 float64) (r1 float64)
- func Xlog1p(tls *TLS, x3 float64) (r float64)
- func Xlog1pf(tls *TLS, x3 float32) (r float32)
- func Xlog1pl(tls *TLS, x float64) (r float64)
- func Xlog2(tls *TLS, x1 float64) (r1 float64)
- func Xlog2f(tls *TLS, x1 float32) (r1 float32)
- func Xlog2l(tls *TLS, x float64) (r float64)
- func Xlog10(tls *TLS, x float64) (r float64)
- func Xlog10f(tls *TLS, x float32) (r float32)
- func Xlog10l(tls *TLS, x float64) (r float64)
- func Xlogb(tls *TLS, x float64) (r float64)
- func Xlogbf(tls *TLS, x float32) (r float32)
- func Xlogbl(tls *TLS, x float64) (r float64)
- func Xlogf(tls *TLS, x1 float32) (r1 float32)
- func Xlogin_tty(tls *TLS, fd int32) (r int32)
- func Xlogl(tls *TLS, x float64) (r float64)
- func Xlongjmp(t *TLS, env uintptr, val int32)
- func Xlrand48(tls *TLS) (r int64)
- func Xlremovexattr(tls *TLS, path uintptr, name uintptr) (r int32)
- func Xlrint(tls *TLS, x float64) (r int64)
- func Xlrintf(tls *TLS, x float32) (r int64)
- func Xlrintl(tls *TLS, x float64) (r int64)
- func Xlround(tls *TLS, x float64) (r int64)
- func Xlroundf(tls *TLS, x float32) (r int64)
- func Xlroundl(tls *TLS, x float64) (r int64)
- func Xlsearch(tls *TLS, key uintptr, base uintptr, nelp uintptr, width Tsize_t, ...) (r uintptr)
- func Xlsetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t, flags int32) (r int32)
- func Xlstat(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Xlstat64(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Xlutimes(tls *TLS, filename uintptr, tv uintptr) (r int32)
- func Xmadvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func Xmalloc(tls *TLS, n Tsize_t) (r uintptr)
- func Xmblen(tls *TLS, s uintptr, n Tsize_t) (r int32)
- func Xmbsinit(tls *TLS, st uintptr) (r int32)
- func Xmbtowc(tls *TLS, wc uintptr, src uintptr, n Tsize_t) (r int32)
- func Xmemccpy(tls *TLS, dest uintptr, src uintptr, c int32, n Tsize_t) (r uintptr)
- func Xmemchr(tls *TLS, src uintptr, c int32, n Tsize_t) (r uintptr)
- func Xmemcmp(tls *TLS, vl uintptr, vr uintptr, n Tsize_t) (r1 int32)
- func Xmemcpy(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Xmemfd_create(tls *TLS, name uintptr, flags uint32) (r int32)
- func Xmemmem(tls *TLS, h0 uintptr, k Tsize_t, n0 uintptr, l Tsize_t) (r uintptr)
- func Xmemmove(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Xmempcpy(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Xmemrchr(tls *TLS, m uintptr, c int32, n Tsize_t) (r uintptr)
- func Xmemset(tls *TLS, dest uintptr, c int32, n Tsize_t) (r uintptr)
- func Xmincore(tls *TLS, addr uintptr, len1 Tsize_t, vec uintptr) (r int32)
- func Xmkdir(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Xmkdirat(tls *TLS, fd int32, path uintptr, mode Tmode_t) (r int32)
- func Xmkdtemp(tls *TLS, template uintptr) (r uintptr)
- func Xmkfifo(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Xmkfifoat(tls *TLS, fd int32, path uintptr, mode Tmode_t) (r int32)
- func Xmknod(tls *TLS, path uintptr, mode Tmode_t, dev Tdev_t) (r int32)
- func Xmknodat(tls *TLS, fd int32, path uintptr, mode Tmode_t, dev Tdev_t) (r int32)
- func Xmkostemp(tls *TLS, template uintptr, flags int32) (r int32)
- func Xmkostemps(tls *TLS, template uintptr, len1 int32, flags int32) (r int32)
- func Xmkstemp(tls *TLS, template uintptr) (r int32)
- func Xmkstemp64(tls *TLS, template uintptr) (r int32)
- func Xmkstemps(tls *TLS, template uintptr, len1 int32) (r int32)
- func Xmkstemps64(tls *TLS, template uintptr, len1 int32) (r int32)
- func Xmktemp(tls *TLS, template uintptr) (r uintptr)
- func Xmlock(tls *TLS, addr uintptr, len1 Tsize_t) (r int32)
- func Xmlock2(tls *TLS, addr uintptr, len1 Tsize_t, flags uint32) (r int32)
- func Xmlockall(tls *TLS, flags int32) (r int32)
- func Xmmap(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func Xmmap64(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func Xmodf(tls *TLS, x float64, iptr uintptr) (r float64)
- func Xmodff(tls *TLS, x float32, iptr uintptr) (r float32)
- func Xmodfl(tls *TLS, x float64, iptr uintptr) (r1 float64)
- func Xmount(tls *TLS, special uintptr, dir uintptr, fstype uintptr, flags uint64, ...) (r int32)
- func Xmprotect(tls *TLS, addr uintptr, len1 Tsize_t, prot int32) (r int32)
- func Xmrand48(tls *TLS) (r int64)
- func Xmremap(tls *TLS, old_addr uintptr, old_len Tsize_t, new_len Tsize_t, flags int32, ...) (r uintptr)
- func Xmsgctl(tls *TLS, q int32, cmd int32, buf uintptr) (r1 int32)
- func Xmsgget(tls *TLS, k Tkey_t, flag int32) (r int32)
- func Xmsgsnd(tls *TLS, q int32, m uintptr, len1 Tsize_t, flag int32) (r int32)
- func Xmsync(tls *TLS, start uintptr, len1 Tsize_t, flags int32) (r int32)
- func Xmunlock(tls *TLS, addr uintptr, len1 Tsize_t) (r int32)
- func Xmunlockall(tls *TLS) (r int32)
- func Xmunmap(tls *TLS, start uintptr, len1 Tsize_t) (r int32)
- func Xname_to_handle_at(tls *TLS, dirfd int32, pathname uintptr, handle uintptr, mount_id uintptr, ...) (r int32)
- func Xnan(tls *TLS, s uintptr) (r float64)
- func Xnanf(tls *TLS, s uintptr) (r float32)
- func Xnanl(tls *TLS, s uintptr) (r float64)
- func Xnanosleep(tls *TLS, req uintptr, rem uintptr) (r int32)
- func Xnextafter(tls *TLS, x3 float64, y3 float64) (r float64)
- func Xnextafterf(tls *TLS, x3 float32, y3 float32) (r float32)
- func Xnextafterl(tls *TLS, x float64, y float64) (r float64)
- func Xnexttoward(tls *TLS, x float64, y float64) (r float64)
- func Xnexttowardf(tls *TLS, x3 float32, y3 float64) (r float32)
- func Xnexttowardl(tls *TLS, x float64, y float64) (r float64)
- func Xnftw(tls *TLS, path uintptr, __ccgo_fp_fn uintptr, fd_limit int32, flags int32) (r1 int32)
- func Xngettext(tls *TLS, msgid1 uintptr, msgid2 uintptr, n uint64) (r uintptr)
- func Xnice(tls *TLS, inc int32) (r int32)
- func Xnl_langinfo(tls *TLS, item Tnl_item) (r uintptr)
- func Xnl_langinfo_l(tls *TLS, item Tnl_item, loc Tlocale_t) (r uintptr)
- func Xnrand48(tls *TLS, s uintptr) (r int64)
- func Xns_get16(tls *TLS, cp uintptr) (r uint32)
- func Xns_get32(tls *TLS, cp uintptr) (r uint64)
- func Xns_initparse(tls *TLS, msg uintptr, msglen int32, handle uintptr) (r1 int32)
- func Xns_name_uncompress(tls *TLS, msg uintptr, eom uintptr, src uintptr, dst uintptr, dstsiz Tsize_t) (r1 int32)
- func Xns_parserr(tls *TLS, handle uintptr, section Tns_sect, rrnum int32, rr uintptr) (r1 int32)
- func Xns_put16(tls *TLS, s uint32, cp uintptr)
- func Xns_put32(tls *TLS, l uint64, cp uintptr)
- func Xns_skiprr(tls *TLS, ptr uintptr, eom uintptr, section Tns_sect, count int32) (r1 int32)
- func Xobstack_free(t *TLS, obstack, obj uintptr)
- func Xobstack_vprintf(t *TLS, obstack, template, va uintptr) int32
- func Xopen(tls *TLS, filename uintptr, flags int32, va uintptr) (r int32)
- func Xopen64(tls *TLS, filename uintptr, flags int32, va uintptr) (r int32)
- func Xopen_by_handle_at(tls *TLS, mount_fd int32, handle uintptr, flags int32) (r int32)
- func Xopen_memstream(tls *TLS, bufp uintptr, sizep uintptr) (r uintptr)
- func Xopen_wmemstream(tls *TLS, bufp uintptr, sizep uintptr) (r uintptr)
- func Xopenat(tls *TLS, fd int32, filename uintptr, flags int32, va uintptr) (r int32)
- func Xopendir(tls *TLS, name uintptr) (r uintptr)
- func Xopenlog(tls *TLS, ident uintptr, opt int32, facility int32)
- func Xopenpty(tls *TLS, pm uintptr, ps uintptr, name uintptr, tio uintptr, ws uintptr) (r int32)
- func Xpathconf(tls *TLS, path uintptr, name int32) (r int64)
- func Xpause(tls *TLS) (r int32)
- func Xpclose(tls *TLS, f uintptr) (r1 int32)
- func Xperror(tls *TLS, msg uintptr)
- func Xpersonality(tls *TLS, persona uint64) (r int32)
- func Xpipe(tls *TLS, fd uintptr) (r int32)
- func Xpipe2(tls *TLS, fd uintptr, flag int32) (r int32)
- func Xpivot_root(tls *TLS, new1 uintptr, old uintptr) (r int32)
- func Xpoll(tls *TLS, fds uintptr, n Tnfds_t, timeout int32) (r int32)
- func Xpopen(t *TLS, command, type1 uintptr) uintptr
- func Xposix_close(tls *TLS, fd int32, flags int32) (r int32)
- func Xposix_fadvise(tls *TLS, fd int32, base Toff_t, len1 Toff_t, advice int32) (r int32)
- func Xposix_fallocate(tls *TLS, fd int32, base Toff_t, len1 Toff_t) (r int32)
- func Xposix_madvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func Xposix_openpt(tls *TLS, flags int32) (r1 int32)
- func Xposix_spawn_file_actions_addchdir_np(tls *TLS, fa uintptr, path uintptr) (r int32)
- func Xposix_spawn_file_actions_addclose(tls *TLS, fa uintptr, fd int32) (r int32)
- func Xposix_spawn_file_actions_adddup2(tls *TLS, fa uintptr, srcfd int32, fd int32) (r int32)
- func Xposix_spawn_file_actions_addfchdir_np(tls *TLS, fa uintptr, fd int32) (r int32)
- func Xposix_spawn_file_actions_addopen(tls *TLS, fa uintptr, fd int32, path uintptr, flags int32, mode Tmode_t) (r int32)
- func Xposix_spawn_file_actions_destroy(tls *TLS, fa uintptr) (r int32)
- func Xposix_spawn_file_actions_init(tls *TLS, fa uintptr) (r int32)
- func Xposix_spawnattr_destroy(tls *TLS, attr uintptr) (r int32)
- func Xposix_spawnattr_getflags(tls *TLS, attr uintptr, flags uintptr) (r int32)
- func Xposix_spawnattr_getpgroup(tls *TLS, attr uintptr, pgrp uintptr) (r int32)
- func Xposix_spawnattr_getschedparam(tls *TLS, attr uintptr, schedparam uintptr) (r int32)
- func Xposix_spawnattr_getschedpolicy(tls *TLS, attr uintptr, policy uintptr) (r int32)
- func Xposix_spawnattr_getsigdefault(tls *TLS, attr uintptr, def uintptr) (r int32)
- func Xposix_spawnattr_getsigmask(tls *TLS, attr uintptr, mask uintptr) (r int32)
- func Xposix_spawnattr_init(tls *TLS, attr uintptr) (r int32)
- func Xposix_spawnattr_setflags(tls *TLS, attr uintptr, flags int16) (r int32)
- func Xposix_spawnattr_setpgroup(tls *TLS, attr uintptr, pgrp Tpid_t) (r int32)
- func Xposix_spawnattr_setschedparam(tls *TLS, attr uintptr, schedparam uintptr) (r int32)
- func Xposix_spawnattr_setschedpolicy(tls *TLS, attr uintptr, policy int32) (r int32)
- func Xposix_spawnattr_setsigdefault(tls *TLS, attr uintptr, def uintptr) (r int32)
- func Xposix_spawnattr_setsigmask(tls *TLS, attr uintptr, mask uintptr) (r int32)
- func Xpow(tls *TLS, x1 float64, y1 float64) (r float64)
- func Xpow10(tls *TLS, x float64) (r float64)
- func Xpow10f(tls *TLS, x float32) (r float32)
- func Xpow10l(tls *TLS, x float64) (r float64)
- func Xpowf(tls *TLS, x1 float32, y1 float32) (r float32)
- func Xpowl(tls *TLS, x float64, y float64) (r float64)
- func Xppoll(tls *TLS, fds uintptr, n Tnfds_t, to uintptr, mask uintptr) (r int32)
- func Xprctl(tls *TLS, op int32, va uintptr) (r int32)
- func Xprintf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Xprlimit(tls *TLS, pid Tpid_t, resource int32, new_limit uintptr, old_limit uintptr) (r1 int32)
- func Xpselect(tls *TLS, n int32, rfds uintptr, wfds uintptr, efds uintptr, ts uintptr, ...) (r int32)
- func Xpsiginfo(tls *TLS, si uintptr, msg uintptr)
- func Xpsignal(tls *TLS, sig int32, msg uintptr)
- func Xpthread_atfork(tls *TLS, prepare, parent, child uintptr) int32
- func Xpthread_attr_destroy(tls *TLS, a uintptr) int32
- func Xpthread_attr_getdetachstate(tls *TLS, a uintptr, state uintptr) int32
- func Xpthread_attr_init(tls *TLS, a uintptr) int32
- func Xpthread_attr_setdetachstate(tls *TLS, a uintptr, state int32) (r int32)
- func Xpthread_attr_setscope(tls *TLS, a uintptr, scope int32) int32
- func Xpthread_attr_setstacksize(tls *TLS, a uintptr, stacksite Tsize_t) int32
- func Xpthread_cleanup_pop(tls *TLS, run int32)
- func Xpthread_cleanup_push(tls *TLS, f, x uintptr)
- func Xpthread_cond_broadcast(tls *TLS, c uintptr) int32
- func Xpthread_cond_destroy(tls *TLS, c uintptr) int32
- func Xpthread_cond_init(tls *TLS, c, a uintptr) int32
- func Xpthread_cond_signal(tls *TLS, c uintptr) int32
- func Xpthread_cond_timedwait(tls *TLS, c, m, ts uintptr) (r int32)
- func Xpthread_cond_wait(tls *TLS, c, m uintptr) int32
- func Xpthread_create(tls *TLS, res, attrp, entry, arg uintptr) int32
- func Xpthread_detach(tls *TLS, t uintptr) int32
- func Xpthread_equal(tls *TLS, t, u uintptr) int32
- func Xpthread_exit(tls *TLS, result uintptr)
- func Xpthread_getspecific(tls *TLS, k Tpthread_key_t) uintptr
- func Xpthread_join(tls *TLS, t Tpthread_t, res uintptr) (r int32)
- func Xpthread_key_create(tls *TLS, k uintptr, dtor uintptr) int32
- func Xpthread_key_delete(tls *TLS, k Tpthread_key_t) int32
- func Xpthread_mutex_destroy(tls *TLS, m uintptr) int32
- func Xpthread_mutex_init(tls *TLS, m, a uintptr) int32
- func Xpthread_mutex_lock(tls *TLS, m uintptr) int32
- func Xpthread_mutex_trylock(tls *TLS, m uintptr) int32
- func Xpthread_mutex_unlock(tls *TLS, m uintptr) int32
- func Xpthread_mutexattr_destroy(tls *TLS, a uintptr) int32
- func Xpthread_mutexattr_init(tls *TLS, a uintptr) int32
- func Xpthread_mutexattr_settype(tls *TLS, a uintptr, typ int32) int32
- func Xpthread_self(tls *TLS) uintptr
- func Xpthread_setcancelstate(tls *TLS, new int32, old uintptr) int32
- func Xpthread_setspecific(tls *TLS, k Tpthread_key_t, x uintptr) int32
- func Xpthread_sigmask(tls *TLS, now int32, set, old uintptr) int32
- func Xptrace(tls *TLS, req int32, va uintptr) (r int64)
- func Xptsname(tls *TLS, fd int32) (r uintptr)
- func Xptsname_r(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func Xputc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func Xputc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func Xputchar(tls *TLS, c1 int32) (r int32)
- func Xputchar_unlocked(tls *TLS, c int32) (r int32)
- func Xputenv(tls *TLS, s uintptr) (r int32)
- func Xputgrent(tls *TLS, gr uintptr, f uintptr) (r1 int32)
- func Xputpwent(tls *TLS, pw uintptr, f uintptr) (r int32)
- func Xputs(tls *TLS, s uintptr) (r1 int32)
- func Xputspent(tls *TLS, sp uintptr, f uintptr) (r int32)
- func Xpututline(tls *TLS, ut uintptr) (r uintptr)
- func Xpututxline(tls *TLS, ut uintptr) (r uintptr)
- func Xputw(tls *TLS, _x int32, f uintptr) (r int32)
- func Xqsort(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun)
- func Xqsort_r(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun, ...)
- func Xquick_exit(tls *TLS, code int32)
- func Xquotactl(tls *TLS, cmd int32, special uintptr, id int32, addr uintptr) (r int32)
- func Xraise(tls *TLS, sig int32) (r int32)
- func Xrand(tls *TLS) (r int32)
- func Xrand_r(tls *TLS, seed uintptr) (r int32)
- func Xrandom(tls *TLS) (r int64)
- func Xrandom_r(t *TLS, buf, result uintptr) int32
- func Xreaddir(tls *TLS, dir uintptr) (r uintptr)
- func Xreaddir64(tls *TLS, dir uintptr) (r uintptr)
- func Xreaddir_r(tls *TLS, dir uintptr, buf uintptr, result uintptr) (r int32)
- func Xrealloc(tls *TLS, p uintptr, n Tsize_t) (r uintptr)
- func Xreallocarray(tls *TLS, ptr uintptr, m Tsize_t, n Tsize_t) (r uintptr)
- func Xrealpath(tls *TLS, filename uintptr, resolved uintptr) (r uintptr)
- func Xreboot(tls *TLS, type1 int32) (r int32)
- func Xrecvmmsg(tls *TLS, fd int32, msgvec uintptr, vlen uint32, flags uint32, timeout uintptr) (r int32)
- func Xregcomp(tls *TLS, preg uintptr, regex uintptr, cflags int32) (r int32)
- func Xregexec(tls *TLS, preg uintptr, string1 uintptr, nmatch Tsize_t, pmatch uintptr, ...) (r int32)
- func Xregfree(tls *TLS, preg uintptr)
- func Xremainder(tls *TLS, x float64, y float64) (r float64)
- func Xremainderf(tls *TLS, x float32, y float32) (r float32)
- func Xremainderl(tls *TLS, x float64, y float64) (r float64)
- func Xremap_file_pages(tls *TLS, addr uintptr, size Tsize_t, prot int32, pgoff Tsize_t, flags int32) (r int32)
- func Xremove(tls *TLS, path uintptr) (r1 int32)
- func Xremovexattr(tls *TLS, path uintptr, name uintptr) (r int32)
- func Xremque(tls *TLS, element uintptr)
- func Xremquo(tls *TLS, x float64, y float64, quo uintptr) (r float64)
- func Xremquof(tls *TLS, x float32, y float32, quo uintptr) (r float32)
- func Xremquol(tls *TLS, x float64, y float64, quo uintptr) (r float64)
- func Xrename(tls *TLS, old uintptr, new1 uintptr) (r int32)
- func Xrenameat(tls *TLS, oldfd int32, old uintptr, newfd int32, new1 uintptr) (r int32)
- func Xrenameat2(t *TLS, olddirfd int32, oldpath uintptr, newdirfd int32, newpath uintptr, ...) int32
- func Xres_init(tls *TLS) (r int32)
- func Xres_mkquery(tls *TLS, op int32, dname uintptr, class int32, type1 int32, data uintptr, ...) (r int32)
- func Xres_send(tls *TLS, _msg uintptr, _msglen int32, _answer uintptr, _anslen int32) (r int32)
- func Xrewind(tls *TLS, f uintptr)
- func Xrewinddir(tls *TLS, dir uintptr)
- func Xrindex(tls *TLS, s uintptr, c int32) (r uintptr)
- func Xrint(tls *TLS, x float64) (r float64)
- func Xrintf(tls *TLS, x float32) (r float32)
- func Xrintl(tls *TLS, x float64) (r float64)
- func Xrmdir(tls *TLS, path uintptr) (r int32)
- func Xround(tls *TLS, x3 float64) (r float64)
- func Xroundf(tls *TLS, x3 float32) (r float32)
- func Xroundl(tls *TLS, x float64) (r float64)
- func Xsbrk(tls *TLS, inc Tintptr_t) (r uintptr)
- func Xscalb(tls *TLS, x float64, fn float64) (r float64)
- func Xscalbf(tls *TLS, x float32, fn float32) (r float32)
- func Xscalbln(tls *TLS, x float64, n int64) (r float64)
- func Xscalblnf(tls *TLS, x float32, n int64) (r float32)
- func Xscalblnl(tls *TLS, x float64, n int64) (r float64)
- func Xscalbn(tls *TLS, x float64, n int32) (r float64)
- func Xscalbnf(tls *TLS, x float32, n int32) (r float32)
- func Xscalbnl(tls *TLS, x float64, n int32) (r float64)
- func Xscandir(tls *TLS, path uintptr, res uintptr, __ccgo_fp_sel uintptr, ...) (r int32)
- func Xscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Xsched_yield(tls *TLS) int32
- func Xsecure_getenv(tls *TLS, name uintptr) (r uintptr)
- func Xseed48(tls *TLS, s uintptr) (r uintptr)
- func Xseekdir(tls *TLS, dir uintptr, off int64)
- func Xselect(tls *TLS, n int32, rfds uintptr, wfds uintptr, efds uintptr, tv uintptr) (r int32)
- func Xsemctl(tls *TLS, id int32, num int32, cmd int32, va uintptr) (r1 int32)
- func Xsemget(tls *TLS, key Tkey_t, n int32, fl int32) (r int32)
- func Xsemop(tls *TLS, id int32, buf uintptr, n Tsize_t) (r int32)
- func Xsemtimedop(tls *TLS, id int32, buf uintptr, n Tsize_t, ts uintptr) (r int32)
- func Xsendmmsg(tls *TLS, fd int32, msgvec uintptr, vlen uint32, flags uint32) (r1 int32)
- func Xsetbuf(tls *TLS, f uintptr, buf uintptr)
- func Xsetbuffer(tls *TLS, f uintptr, buf uintptr, size Tsize_t)
- func Xsetdomainname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Xsetenv(tls *TLS, var1 uintptr, value uintptr, overwrite int32) (r int32)
- func Xsetfsgid(tls *TLS, gid Tgid_t) (r int32)
- func Xsetfsuid(tls *TLS, uid Tuid_t) (r int32)
- func Xsetgid(tls *TLS, gid Tgid_t) (r int32)
- func Xsetgrent(tls *TLS)
- func Xsethostent(tls *TLS, x int32)
- func Xsethostname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Xsetitimer(tls *TLS, which int32, new1 uintptr, old uintptr) (r1 int32)
- func Xsetjmp(t *TLS, env uintptr) int32
- func Xsetkey(tls *TLS, key uintptr)
- func Xsetlinebuf(tls *TLS, f uintptr)
- func Xsetlocale(tls *TLS, cat int32, name uintptr) (r uintptr)
- func Xsetlogmask(tls *TLS, maskpri int32) (r int32)
- func Xsetmntent(tls *TLS, name uintptr, mode uintptr) (r uintptr)
- func Xsetnetent(tls *TLS, x int32)
- func Xsetns(tls *TLS, fd int32, nstype int32) (r int32)
- func Xsetpgid(tls *TLS, pid Tpid_t, pgid Tpid_t) (r int32)
- func Xsetpriority(tls *TLS, which int32, who Tid_t, prio int32) (r int32)
- func Xsetprotoent(tls *TLS, stayopen int32)
- func Xsetpwent(tls *TLS)
- func Xsetrlimit(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Xsetrlimit64(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Xsetservent(tls *TLS, stayopen int32)
- func Xsetsockopt(tls *TLS, fd int32, level int32, optname int32, optval uintptr, ...) (r2 int32)
- func Xsetspent(tls *TLS)
- func Xsetstate(tls *TLS, state uintptr) (r uintptr)
- func Xsettimeofday(tls *TLS, tv uintptr, tz uintptr) (r int32)
- func Xsetuid(tls *TLS, uid Tuid_t) (r int32)
- func Xsetusershell(tls *TLS)
- func Xsetutent(tls *TLS)
- func Xsetutxent(tls *TLS)
- func Xsetvbuf(tls *TLS, f uintptr, buf uintptr, type1 int32, size Tsize_t) (r int32)
- func Xsetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t, flags int32) (r int32)
- func Xshm_open(tls *TLS, name uintptr, flag int32, mode Tmode_t) (r int32)
- func Xshm_unlink(tls *TLS, name uintptr) (r int32)
- func Xshmat(tls *TLS, id int32, addr uintptr, flag int32) (r uintptr)
- func Xshmctl(tls *TLS, id int32, cmd int32, buf uintptr) (r1 int32)
- func Xshmdt(tls *TLS, addr uintptr) (r int32)
- func Xshmget(tls *TLS, key Tkey_t, size Tsize_t, flag int32) (r int32)
- func Xshutdown(tls *TLS, fd int32, how int32) (r1 int32)
- func Xsigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r int32)
- func Xsigaddset(tls *TLS, set uintptr, sig int32) (r int32)
- func Xsigaltstack(tls *TLS, ss uintptr, old uintptr) (r int32)
- func Xsigandset(tls *TLS, dest uintptr, left uintptr, right uintptr) (r1 int32)
- func Xsigdelset(tls *TLS, set uintptr, sig int32) (r int32)
- func Xsigemptyset(tls *TLS, set uintptr) (r int32)
- func Xsigfillset(tls *TLS, set uintptr) (r int32)
- func Xsigisemptyset(tls *TLS, set uintptr) (r int32)
- func Xsigismember(tls *TLS, set uintptr, sig int32) (r int32)
- func Xsignal(tls *TLS, signum int32, handler uintptr) (r uintptr)
- func Xsignalfd(tls *TLS, fd int32, sigs uintptr, flags int32) (r int32)
- func Xsignificand(tls *TLS, x float64) (r float64)
- func Xsignificandf(tls *TLS, x float32) (r float32)
- func Xsigorset(tls *TLS, dest uintptr, left uintptr, right uintptr) (r1 int32)
- func Xsigpending(tls *TLS, set uintptr) (r int32)
- func Xsigprocmask(tls *TLS, how int32, set uintptr, old uintptr) (r1 int32)
- func Xsigqueue(tls *TLS, pid Tpid_t, sig int32, value Tsigval) (r1 int32)
- func Xsigsuspend(tls *TLS, mask uintptr) (r int32)
- func Xsigtimedwait(tls *TLS, mask uintptr, si uintptr, timeout uintptr) (r int32)
- func Xsigwait(tls *TLS, mask uintptr, sig uintptr) (r int32)
- func Xsigwaitinfo(tls *TLS, mask uintptr, si uintptr) (r int32)
- func Xsin(tls *TLS, x3 float64) (r float64)
- func Xsincos(tls *TLS, x3 float64, sin uintptr, cos uintptr)
- func Xsincosf(tls *TLS, x3 float32, sin uintptr, cos uintptr)
- func Xsincosl(tls *TLS, x float64, sin uintptr, cos uintptr)
- func Xsinf(tls *TLS, x3 float32) (r float32)
- func Xsinh(tls *TLS, x float64) (r float64)
- func Xsinhf(tls *TLS, x float32) (r float32)
- func Xsinhl(tls *TLS, x float64) (r float64)
- func Xsinl(tls *TLS, x float64) (r float64)
- func Xsleep(tls *TLS, seconds uint32) (r uint32)
- func Xsnprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r int32)
- func Xsockatmark(tls *TLS, s int32) (r int32)
- func Xsocket(tls *TLS, domain int32, type1 int32, protocol int32) (r1 int32)
- func Xsocketpair(tls *TLS, domain int32, type1 int32, protocol int32, fd uintptr) (r2 int32)
- func Xsprintf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Xsqrt(tls *TLS, x1 float64) (r1 float64)
- func Xsqrtf(tls *TLS, x1 float32) (r1 float32)
- func Xsqrtl(tls *TLS, x float64) (r float64)
- func Xsrand(tls *TLS, s uint32)
- func Xsrand48(tls *TLS, seed int64)
- func Xsrandom(tls *TLS, seed uint32)
- func Xsscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Xstat(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Xstat64(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Xstatvfs(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Xstatx(tls *TLS, dirfd int32, path uintptr, flags int32, mask uint32, stx uintptr) (r int32)
- func Xstime(tls *TLS, t uintptr) (r int32)
- func Xstpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Xstpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xstrcasecmp(tls *TLS, _l uintptr, _r uintptr) (r1 int32)
- func Xstrcasecmp_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Xstrcasestr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Xstrcat(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Xstrchr(tls *TLS, s uintptr, c int32) (r1 uintptr)
- func Xstrchrnul(tls *TLS, s uintptr, c int32) (r uintptr)
- func Xstrcmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Xstrcoll(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Xstrcoll_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Xstrcpy(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Xstrdup(tls *TLS, s uintptr) (r uintptr)
- func Xstrerror(tls *TLS, e int32) (r uintptr)
- func Xstrerror_l(tls *TLS, e int32, loc Tlocale_t) (r uintptr)
- func Xstrerror_r(tls *TLS, err int32, buf uintptr, buflen Tsize_t) (r int32)
- func Xstrncasecmp(tls *TLS, _l uintptr, _r uintptr, n Tsize_t) (r1 int32)
- func Xstrncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, loc Tlocale_t) (r1 int32)
- func Xstrncat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xstrncmp(tls *TLS, _l uintptr, _r uintptr, n Tsize_t) (r1 int32)
- func Xstrncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xstrndup(tls *TLS, s uintptr, n Tsize_t) (r uintptr)
- func Xstrpbrk(tls *TLS, s uintptr, b uintptr) (r uintptr)
- func Xstrptime(tls *TLS, s uintptr, f uintptr, tm uintptr) (r uintptr)
- func Xstrrchr(tls *TLS, s uintptr, c int32) (r uintptr)
- func Xstrsep(tls *TLS, str uintptr, sep uintptr) (r uintptr)
- func Xstrsignal(tls *TLS, signum int32) (r uintptr)
- func Xstrstr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Xstrtod(tls *TLS, s uintptr, p uintptr) (r float64)
- func Xstrtod_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Xstrtof(tls *TLS, s uintptr, p uintptr) (r float32)
- func Xstrtof_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float32)
- func Xstrtok(tls *TLS, s uintptr, sep uintptr) (r uintptr)
- func Xstrtok_r(tls *TLS, s uintptr, sep uintptr, p uintptr) (r uintptr)
- func Xstrtol(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Xstrtold(tls *TLS, s uintptr, p uintptr) (r float64)
- func Xstrtold_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Xstrtoll(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Xstrtoul(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Xstrtoull(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Xstrverscmp(tls *TLS, l0 uintptr, r0 uintptr) (r1 int32)
- func Xswab(tls *TLS, _src uintptr, _dest uintptr, n Tssize_t)
- func Xswapoff(tls *TLS, path uintptr) (r int32)
- func Xswapon(tls *TLS, path uintptr, flags int32) (r int32)
- func Xswprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r int32)
- func Xswscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Xsymlink(tls *TLS, existing uintptr, new1 uintptr) (r int32)
- func Xsymlinkat(tls *TLS, existing uintptr, fd int32, new1 uintptr) (r int32)
- func Xsync(tls *TLS)
- func Xsync_file_range(tls *TLS, fd int32, pos Toff_t, len1 Toff_t, flags uint32) (r int32)
- func Xsyncfs(tls *TLS, fd int32) (r int32)
- func Xsyscall(tls *TLS, n int64, va uintptr) (r int64)
- func Xsysconf(tls *TLS, name int32) (r int64)
- func Xsysctlbyname(t *TLS, name, oldp, oldlenp, newp uintptr, newlen Tsize_t) int32
- func Xsysinfo(tls *TLS, info uintptr) (r int32)
- func Xsyslog(tls *TLS, priority int32, message uintptr, va uintptr)
- func Xsystem(t *TLS, command uintptr) int32
- func Xtan(tls *TLS, x3 float64) (r float64)
- func Xtanf(tls *TLS, x3 float32) (r float32)
- func Xtanh(tls *TLS, x3 float64) (r float64)
- func Xtanhf(tls *TLS, x3 float32) (r float32)
- func Xtanhl(tls *TLS, x float64) (r float64)
- func Xtanl(tls *TLS, x float64) (r float64)
- func Xtcdrain(tls *TLS, fd int32) (r int32)
- func Xtcflow(tls *TLS, fd int32, action int32) (r int32)
- func Xtcflush(tls *TLS, fd int32, queue int32) (r int32)
- func Xtcgetattr(tls *TLS, fd int32, tio uintptr) (r int32)
- func Xtcgetwinsize(tls *TLS, fd int32, wsz uintptr) (r int32)
- func Xtcsendbreak(tls *TLS, fd int32, dur int32) (r int32)
- func Xtcsetattr(tls *TLS, fd int32, act int32, tio uintptr) (r int32)
- func Xtcsetpgrp(tls *TLS, fd int32, pgrp Tpid_t) (r int32)
- func Xtcsetwinsize(tls *TLS, fd int32, wsz uintptr) (r int32)
- func Xtdelete(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r uintptr)
- func Xtdestroy(tls *TLS, root uintptr, __ccgo_fp_freekey uintptr)
- func Xtelldir(tls *TLS, dir uintptr) (r int64)
- func Xtempnam(tls *TLS, dir uintptr, pfx uintptr) (r1 uintptr)
- func Xtextdomain(tls *TLS, domainname uintptr) (r uintptr)
- func Xtfind(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r uintptr)
- func Xtgamma(tls *TLS, x3 float64) (r1 float64)
- func Xtgammaf(tls *TLS, x float32) (r float32)
- func Xtgammal(tls *TLS, x float64) (r float64)
- func Xtimer_delete(tls *TLS, t Ttimer_t) (r int32)
- func Xtimer_getoverrun(tls *TLS, t Ttimer_t) (r int32)
- func Xtimer_gettime(tls *TLS, t Ttimer_t, val uintptr) (r int32)
- func Xtimer_settime(tls *TLS, t Ttimer_t, flags int32, val uintptr, old uintptr) (r int32)
- func Xtimerfd_create(tls *TLS, clockid int32, flags int32) (r int32)
- func Xtimerfd_gettime(tls *TLS, fd int32, cur uintptr) (r int32)
- func Xtimerfd_settime(tls *TLS, fd int32, flags int32, new1 uintptr, old uintptr) (r int32)
- func Xtimespec_get(tls *TLS, ts uintptr, base int32) (r int32)
- func Xtmpfile(tls *TLS) (r uintptr)
- func Xtmpnam(tls *TLS, buf uintptr) (r1 uintptr)
- func Xtoascii(tls *TLS, c int32) (r int32)
- func Xtolower(tls *TLS, c int32) (r int32)
- func Xtolower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xtoupper(tls *TLS, c int32) (r int32)
- func Xtoupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Xtrunc(tls *TLS, x3 float64) (r float64)
- func Xtruncate(tls *TLS, path uintptr, length Toff_t) (r int32)
- func Xtruncf(tls *TLS, x3 float32) (r float32)
- func Xtruncl(tls *TLS, x float64) (r float64)
- func Xtsearch(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r1 uintptr)
- func Xttyname(tls *TLS, fd int32) (r uintptr)
- func Xttyname_r(tls *TLS, fd int32, name uintptr, size Tsize_t) (r int32)
- func Xtwalk(tls *TLS, root uintptr, __ccgo_fp_action uintptr)
- func Xtzset(tls *TLS)
- func Xualarm(tls *TLS, value uint32, interval uint32) (r uint32)
- func Xulckpwdf(tls *TLS) (r int32)
- func Xulimit(tls *TLS, cmd int32, va uintptr) (r int64)
- func Xumount(tls *TLS, special uintptr) (r int32)
- func Xumount2(tls *TLS, special uintptr, flags int32) (r int32)
- func Xuname(tls *TLS, uts uintptr) (r int32)
- func Xungetc(tls *TLS, c int32, f uintptr) (r int32)
- func Xunlink(tls *TLS, path uintptr) (r int32)
- func Xunlinkat(tls *TLS, fd int32, path uintptr, flag int32) (r int32)
- func Xunlockpt(tls *TLS, fd int32) (r int32)
- func Xunsetenv(tls *TLS, name uintptr) (r int32)
- func Xunshare(tls *TLS, flags int32) (r int32)
- func Xupdwtmp(tls *TLS, f uintptr, u uintptr)
- func Xupdwtmpx(tls *TLS, f uintptr, u uintptr)
- func Xusleep(tls *TLS, useconds uint32) (r int32)
- func Xutime(tls *TLS, path uintptr, times uintptr) (r int32)
- func Xutimensat(tls *TLS, fd int32, path uintptr, times uintptr, flags int32) (r1 int32)
- func Xutimes(tls *TLS, path uintptr, times uintptr) (r int32)
- func Xuuid_copy(t *TLS, dst, src uintptr)
- func Xuuid_generate_random(t *TLS, out uintptr)
- func Xuuid_parse(t *TLS, in uintptr, uu uintptr) int32
- func Xuuid_unparse(t *TLS, uu, out uintptr)
- func Xvasprintf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvdprintf(tls *TLS, fd int32, fmt uintptr, ap Tva_list) (r int32)
- func Xverr(tls *TLS, status int32, fmt uintptr, ap Tva_list)
- func Xverrx(tls *TLS, status int32, fmt uintptr, ap Tva_list)
- func Xversionsort(tls *TLS, a uintptr, b uintptr) (r int32)
- func Xvfprintf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvfscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvfwprintf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvfwscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvhangup(tls *TLS) (r int32)
- func Xvprintf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Xvscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Xvsnprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, ap Tva_list) (r int32)
- func Xvsprintf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvsscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvswprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, ap Tva_list) (r1 int32)
- func Xvswscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Xvwarn(tls *TLS, fmt uintptr, ap Tva_list)
- func Xvwarnx(tls *TLS, fmt uintptr, ap Tva_list)
- func Xvwprintf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Xvwscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Xwaitid(tls *TLS, type1 Tidtype_t, id Tid_t, info uintptr, options int32) (r int32)
- func Xwarn(tls *TLS, fmt uintptr, va uintptr)
- func Xwarnx(tls *TLS, fmt uintptr, va uintptr)
- func Xwcpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Xwcpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xwcscasecmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Xwcscasecmp_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func Xwcscat(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Xwcschr(tls *TLS, s uintptr, c Twchar_t) (r uintptr)
- func Xwcscmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Xwcscoll(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Xwcscoll_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func Xwcscpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Xwcsdup(tls *TLS, s uintptr) (r uintptr)
- func Xwcsncasecmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Xwcsncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, locale Tlocale_t) (r1 int32)
- func Xwcsncat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xwcsncmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Xwcsncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xwcspbrk(tls *TLS, s uintptr, b uintptr) (r uintptr)
- func Xwcsrchr(tls *TLS, s uintptr, c Twchar_t) (r uintptr)
- func Xwcsstr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Xwcstod(tls *TLS, s uintptr, p uintptr) (r float64)
- func Xwcstof(tls *TLS, s uintptr, p uintptr) (r float32)
- func Xwcstok(tls *TLS, s uintptr, sep uintptr, p uintptr) (r uintptr)
- func Xwcstol(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Xwcstold(tls *TLS, s uintptr, p uintptr) (r float64)
- func Xwcstoll(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Xwcstoul(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Xwcstoull(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Xwcswcs(tls *TLS, haystack uintptr, needle uintptr) (r uintptr)
- func Xwcswidth(tls *TLS, wcs uintptr, n Tsize_t) (r int32)
- func Xwctob(tls *TLS, c Twint_t) (r int32)
- func Xwctomb(tls *TLS, s uintptr, wc Twchar_t) (r int32)
- func Xwcwidth(tls *TLS, wc Twchar_t) (r int32)
- func Xwmemchr(tls *TLS, s uintptr, c Twchar_t, n Tsize_t) (r uintptr)
- func Xwmemcmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Xwmemcpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xwmemmove(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Xwmemset(tls *TLS, d uintptr, c Twchar_t, n Tsize_t) (r uintptr)
- func Xwprintf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Xwscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Xy0(tls *TLS, x float64) (r float64)
- func Xy0f(tls *TLS, x float32) (r float32)
- func Xy1(tls *TLS, x float64) (r float64)
- func Xy1f(tls *TLS, x float32) (r float32)
- func Xyn(tls *TLS, n int32, x float64) (r float64)
- func Xynf(tls *TLS, n int32, x float32) (r float32)
- func Y_Exit(tls *TLS, ec int32)
- func Y_IO_feof_unlocked(tls *TLS, f uintptr) (r int32)
- func Y_IO_ferror_unlocked(tls *TLS, f uintptr) (r int32)
- func Y_IO_getc(tls *TLS, f1 uintptr) (r int32)
- func Y_IO_getc_unlocked(tls *TLS, f uintptr) (r int32)
- func Y_IO_putc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func Y_IO_putc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func Y___errno_location(tls *TLS) (r uintptr)
- func Y__aio_close(tls *TLS, fd int32) (_2 int32)
- func Y__asctime_r(tls *TLS, tm uintptr, buf uintptr) (r uintptr)
- func Y__assert_fail(tls *TLS, expr uintptr, file uintptr, line int32, func1 uintptr)
- func Y__atomic_compare_exchangeInt8(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeInt16(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeInt32(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeInt64(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeUint8(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeUint16(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeUint32(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_compare_exchangeUint64(t *TLS, ptr, expected, desired uintptr, weak, success, failure int32) (_3 int32)
- func Y__atomic_exchangeInt8(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeInt16(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeInt32(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeInt64(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeUint8(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeUint16(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeUint32(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_exchangeUint64(t *TLS, ptr, val, ret uintptr, _ int32)
- func Y__atomic_fetch_addInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__atomic_fetch_addInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__atomic_fetch_addInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__atomic_fetch_addInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__atomic_fetch_addUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__atomic_fetch_addUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__atomic_fetch_addUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__atomic_fetch_addUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__atomic_fetch_andInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__atomic_fetch_andInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__atomic_fetch_andInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__atomic_fetch_andInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__atomic_fetch_andUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__atomic_fetch_andUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__atomic_fetch_andUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__atomic_fetch_andUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__atomic_fetch_orInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__atomic_fetch_orInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__atomic_fetch_orInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__atomic_fetch_orInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__atomic_fetch_orUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__atomic_fetch_orUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__atomic_fetch_orUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__atomic_fetch_orUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__atomic_fetch_subInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__atomic_fetch_subInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__atomic_fetch_subInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__atomic_fetch_subInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__atomic_fetch_subUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__atomic_fetch_subUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__atomic_fetch_subUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__atomic_fetch_subUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__atomic_fetch_xorInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__atomic_fetch_xorInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__atomic_fetch_xorInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__atomic_fetch_xorInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__atomic_fetch_xorUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__atomic_fetch_xorUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__atomic_fetch_xorUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__atomic_fetch_xorUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__atomic_loadInt8(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadInt16(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadInt32(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadInt64(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadUint8(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadUint16(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadUint32(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_loadUint64(t *TLS, ptr, ret uintptr, memorder int32)
- func Y__atomic_storeInt8(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeInt16(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeInt32(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeInt64(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeUint8(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeUint16(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeUint32(t *TLS, ptr, val uintptr, memorder int32)
- func Y__atomic_storeUint64(t *TLS, ptr, val uintptr, memorder int32)
- func Y__block_all_sigs(tls *TLS, set uintptr)
- func Y__block_app_sigs(tls *TLS, set uintptr)
- func Y__builtin___memcpy_chk(t *TLS, dest, src uintptr, n, os Tsize_t) (r uintptr)
- func Y__builtin___memmove_chk(t *TLS, dest, src uintptr, n, os Tsize_t) (_3 uintptr)
- func Y__builtin___memset_chk(t *TLS, s uintptr, c int32, n, os Tsize_t) (_4 uintptr)
- func Y__builtin___snprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, ...) (r int32)
- func Y__builtin___sprintf_chk(t *TLS, s uintptr, flag int32, os Tsize_t, format, args uintptr) (r int32)
- func Y__builtin___strcat_chk(t *TLS, dest, src uintptr, os Tsize_t) (r uintptr)
- func Y__builtin___strcpy_chk(t *TLS, dest, src uintptr, os Tsize_t) (_3 uintptr)
- func Y__builtin___strncpy_chk(t *TLS, dest, src uintptr, n, os Tsize_t) (r uintptr)
- func Y__builtin___vsnprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, ...) (r int32)
- func Y__builtin_abort(t *TLS)
- func Y__builtin_abs(t *TLS, j int32) (_2 int32)
- func Y__builtin_add_overflowInt64(t *TLS, a, b int64, res uintptr) (_3 int32)
- func Y__builtin_add_overflowUint32(t *TLS, a, b uint32, res uintptr) (_3 int32)
- func Y__builtin_add_overflowUint64(t *TLS, a, b uint64, res uintptr) (_3 int32)
- func Y__builtin_alloca(tls *TLS, size Tsize_t) (_2 uintptr)
- func Y__builtin_bswap16(t *TLS, x uint16) (_2 uint16)
- func Y__builtin_bswap32(t *TLS, x uint32) (_2 uint32)
- func Y__builtin_bswap64(t *TLS, x uint64) (_2 uint64)
- func Y__builtin_bzero(t *TLS, s uintptr, n Tsize_t)
- func Y__builtin_clz(t *TLS, n uint32) (_2 int32)
- func Y__builtin_clzl(t *TLS, n ulong) (_2 int32)
- func Y__builtin_clzll(t *TLS, n uint64) (_2 int32)
- func Y__builtin_copysign(t *TLS, x, y float64) (_2 float64)
- func Y__builtin_copysignf(t *TLS, x, y float32) (_2 float32)
- func Y__builtin_copysignl(t *TLS, x, y float64) (_2 float64)
- func Y__builtin_ctz(t *TLS, n uint32) (_2 int32)
- func Y__builtin_ctzl(tls *TLS, x ulong) (_2 int32)
- func Y__builtin_exit(t *TLS, status int32)
- func Y__builtin_expect(t *TLS, exp, c long) (_2 long)
- func Y__builtin_fabs(t *TLS, x float64) (_2 float64)
- func Y__builtin_fabsf(t *TLS, x float32) (_2 float32)
- func Y__builtin_fabsl(t *TLS, x float64) (_2 float64)
- func Y__builtin_ffs(tls *TLS, i int32) (r int32)
- func Y__builtin_fma(tls *TLS, x, y, z float64) (r float64)
- func Y__builtin_fmax(tls *TLS, x float64, y float64) (r float64)
- func Y__builtin_fmin(tls *TLS, x float64, y float64) (r float64)
- func Y__builtin_free(t *TLS, ptr uintptr)
- func Y__builtin_getentropy(t *TLS, buf uintptr, n Tsize_t) (_3 int32)
- func Y__builtin_huge_val(t *TLS) (_1 float64)
- func Y__builtin_huge_valf(t *TLS) (_1 float32)
- func Y__builtin_hypot(tls *TLS, x float64, y float64) (r float64)
- func Y__builtin_inf(t *TLS) (_1 float64)
- func Y__builtin_inff(tls *TLS) (_1 float32)
- func Y__builtin_infl(t *TLS) (_1 float64)
- func Y__builtin_isblank(tls *TLS, c int32) (r int32)
- func Y__builtin_isnan(t *TLS, x float64) (_2 int32)
- func Y__builtin_isnanf(t *TLS, x float32) (_2 int32)
- func Y__builtin_isnanl(t *TLS, x float64) (_2 int32)
- func Y__builtin_isprint(tls *TLS, c int32) (r int32)
- func Y__builtin_isunordered(t *TLS, a, b float64) (_2 int32)
- func Y__builtin_llabs(tls *TLS, a int64) (_2 int64)
- func Y__builtin_log2(t *TLS, x float64) (_2 float64)
- func Y__builtin_lrint(tls *TLS, x float64) (r long)
- func Y__builtin_lrintf(tls *TLS, x float32) (r long)
- func Y__builtin_lround(tls *TLS, x float64) (r long)
- func Y__builtin_malloc(t *TLS, size Tsize_t) (_2 uintptr)
- func Y__builtin_memcmp(t *TLS, s1, s2 uintptr, n Tsize_t) (_3 int32)
- func Y__builtin_memcpy(t *TLS, dest, src uintptr, n Tsize_t) (r uintptr)
- func Y__builtin_memset(t *TLS, s uintptr, c int32, n Tsize_t) (_4 uintptr)
- func Y__builtin_mmap(t *TLS, addr uintptr, length Tsize_t, prot, flags, fd int32, offset Toff_t) (_5 uintptr)
- func Y__builtin_mul_overflowInt64(t *TLS, a, b int64, res uintptr) (_3 int32)
- func Y__builtin_mul_overflowUint64(t *TLS, a, b uint64, res uintptr) (_3 int32)
- func Y__builtin_mul_overflowUint128(t *TLS, a, b Uint128, res uintptr) (_3 int32)
- func Y__builtin_nan(t *TLS, s uintptr) (_2 float64)
- func Y__builtin_nanf(tls *TLS, s uintptr) (_2 float32)
- func Y__builtin_nanl(t *TLS, s uintptr) (_2 float64)
- func Y__builtin_popcount(t *TLS, x uint32) (_2 int32)
- func Y__builtin_popcountl(t *TLS, x ulong) (_2 int32)
- func Y__builtin_prefetch(t *TLS, addr, args uintptr)
- func Y__builtin_printf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Y__builtin_rintf(tls *TLS, x float32) (r float32)
- func Y__builtin_round(tls *TLS, x float64) (r float64)
- func Y__builtin_roundf(tls *TLS, x float32) (r float32)
- func Y__builtin_snprintf(t *TLS, str uintptr, size Tsize_t, format, args uintptr) (_4 int32)
- func Y__builtin_sprintf(t *TLS, str, format, args uintptr) (r int32)
- func Y__builtin_strchr(t *TLS, s uintptr, c int32) (_3 uintptr)
- func Y__builtin_strcmp(t *TLS, s1, s2 uintptr) (_2 int32)
- func Y__builtin_strcpy(t *TLS, dest, src uintptr) (_2 uintptr)
- func Y__builtin_sub_overflowInt64(t *TLS, a, b int64, res uintptr) (_3 int32)
- func Y__builtin_trap(t *TLS)
- func Y__builtin_trunc(tls *TLS, x float64) (r float64)
- func Y__builtin_unreachable(t *TLS)
- func Y__builtin_vsnprintf(t *TLS, str uintptr, size Tsize_t, format, va uintptr) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongInt8(t *TLS, ptr, expected uintptr, desired int8, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongInt16(t *TLS, ptr, expected uintptr, desired int16, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongInt32(t *TLS, ptr, expected uintptr, desired, success, failure int32) (_3 int32)
- func Y__c11_atomic_compare_exchange_strongInt64(t *TLS, ptr, expected uintptr, desired int64, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongUint8(t *TLS, ptr, expected uintptr, desired uint8, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongUint16(t *TLS, ptr, expected uintptr, desired uint16, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongUint32(t *TLS, ptr, expected uintptr, desired uint32, success, failure int32) (_4 int32)
- func Y__c11_atomic_compare_exchange_strongUint64(t *TLS, ptr, expected uintptr, desired uint64, success, failure int32) (_4 int32)
- func Y__c11_atomic_exchangeInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_exchangeInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_exchangeInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_exchangeInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_exchangeUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_exchangeUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_exchangeUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_exchangeUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_fetch_addInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_fetch_addInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_fetch_addInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_fetch_addInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_fetch_addUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_fetch_addUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_fetch_addUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_fetch_addUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_fetch_andInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_fetch_andInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_fetch_andInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_fetch_andInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_fetch_andUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_fetch_andUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_fetch_andUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_fetch_andUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_fetch_orInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_fetch_orInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_fetch_orInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_fetch_orInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_fetch_orUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_fetch_orUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_fetch_orUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_fetch_orUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_fetch_subInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_fetch_subInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_fetch_subInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_fetch_subInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_fetch_subUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_fetch_subUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_fetch_subUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_fetch_subUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_fetch_xorInt8(t *TLS, ptr uintptr, val int8, _ int32) (r int8)
- func Y__c11_atomic_fetch_xorInt16(t *TLS, ptr uintptr, val int16, _ int32) (r int16)
- func Y__c11_atomic_fetch_xorInt32(t *TLS, ptr uintptr, val int32, _ int32) (r int32)
- func Y__c11_atomic_fetch_xorInt64(t *TLS, ptr uintptr, val int64, _ int32) (r int64)
- func Y__c11_atomic_fetch_xorUint8(t *TLS, ptr uintptr, val uint8, _ int32) (r uint8)
- func Y__c11_atomic_fetch_xorUint16(t *TLS, ptr uintptr, val uint16, _ int32) (r uint16)
- func Y__c11_atomic_fetch_xorUint32(t *TLS, ptr uintptr, val uint32, _ int32) (r uint32)
- func Y__c11_atomic_fetch_xorUint64(t *TLS, ptr uintptr, val uint64, _ int32) (r uint64)
- func Y__c11_atomic_loadInt8(t *TLS, ptr uintptr, memorder int32) (r int8)
- func Y__c11_atomic_loadInt16(t *TLS, ptr uintptr, memorder int32) (r int16)
- func Y__c11_atomic_loadInt32(t *TLS, ptr uintptr, memorder int32) (r int32)
- func Y__c11_atomic_loadInt64(t *TLS, ptr uintptr, memorder int32) (r int64)
- func Y__c11_atomic_loadUint8(t *TLS, ptr uintptr, memorder int32) (r uint8)
- func Y__c11_atomic_loadUint16(t *TLS, ptr uintptr, memorder int32) (r uint16)
- func Y__c11_atomic_loadUint32(t *TLS, ptr uintptr, memorder int32) (r uint32)
- func Y__c11_atomic_loadUint64(t *TLS, ptr uintptr, memorder int32) (r uint64)
- func Y__c11_atomic_storeInt8(t *TLS, ptr uintptr, val int8, memorder int32)
- func Y__c11_atomic_storeInt16(t *TLS, ptr uintptr, val int16, memorder int32)
- func Y__c11_atomic_storeInt32(t *TLS, ptr uintptr, val int32, memorder int32)
- func Y__c11_atomic_storeInt64(t *TLS, ptr uintptr, val int64, memorder int32)
- func Y__c11_atomic_storeUint8(t *TLS, ptr uintptr, val uint8, memorder int32)
- func Y__c11_atomic_storeUint16(t *TLS, ptr uintptr, val uint16, memorder int32)
- func Y__c11_atomic_storeUint32(t *TLS, ptr uintptr, val uint32, memorder int32)
- func Y__c11_atomic_storeUint64(t *TLS, ptr uintptr, val uint64, memorder int32)
- func Y__ccgo_dmesg(t *TLS, fmt uintptr, va uintptr)
- func Y__ccgo_getMutexType(tls *TLS, m uintptr) (_2 int32)
- func Y__ccgo_in6addr_anyp(t *TLS) (_1 uintptr)
- func Y__ccgo_pthreadAttrGetDetachState(tls *TLS, a uintptr) (_2 int32)
- func Y__ccgo_pthreadMutexattrGettype(tls *TLS, a uintptr) (_2 int32)
- func Y__ccgo_sqlite3_log(t *TLS, iErrCode int32, zFormat uintptr, args uintptr)
- func Y__clock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r1 int32)
- func Y__clock_nanosleep(tls *TLS, clk Tclockid_t, flags int32, req uintptr, rem uintptr) (r int32)
- func Y__cmsg_nxthdr(t *TLS, msgh, cmsg uintptr) (_2 uintptr)
- func Y__convert_scm_timestamps(tls *TLS, msg uintptr, csize Tsocklen_t)
- func Y__cos(tls *TLS, x float64, y float64) (r1 float64)
- func Y__cosdf(tls *TLS, x float64) (r1 float32)
- func Y__crypt_blowfish(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func Y__crypt_des(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func Y__crypt_md5(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func Y__crypt_r(tls *TLS, key uintptr, salt uintptr, data uintptr) (r uintptr)
- func Y__crypt_sha256(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func Y__crypt_sha512(tls *TLS, key uintptr, setting uintptr, output uintptr) (r uintptr)
- func Y__ctype_b_loc(tls *TLS) (r uintptr)
- func Y__ctype_tolower_loc(tls *TLS) (r uintptr)
- func Y__ctype_toupper_loc(tls *TLS) (r uintptr)
- func Y__des_setkey(tls *TLS, key uintptr, ekey uintptr)
- func Y__dn_expand(tls *TLS, base uintptr, end uintptr, src uintptr, dest uintptr, space int32) (r int32)
- func Y__dns_parse(tls *TLS, r uintptr, rlen int32, __ccgo_fp_callback uintptr, ctx uintptr) (r1 int32)
- func Y__do_des(tls *TLS, l_in Tuint32_t, r_in Tuint32_t, l_out uintptr, r_out uintptr, ...)
- func Y__do_orphaned_stdio_locks(tls *TLS)
- func Y__dup3(tls *TLS, old int32, new1 int32, flags int32) (r1 int32)
- func Y__env_rm_add(tls *TLS, old uintptr, new1 uintptr)
- func Y__errno_location(tls *TLS) (r uintptr)
- func Y__execvpe(tls *TLS, file uintptr, argv uintptr, envp uintptr) (r int32)
- func Y__expo2(tls *TLS, x float64, sign float64) (r float64)
- func Y__expo2f(tls *TLS, x float32, sign float32) (r float32)
- func Y__fclose_ca(tls *TLS, f uintptr) (r int32)
- func Y__fdopen(tls *TLS, fd int32, mode uintptr) (r uintptr)
- func Y__fesetround(tls *TLS, r int32) (r1 int32)
- func Y__flbf(tls *TLS, f uintptr) (r int32)
- func Y__floatscan(tls *TLS, f uintptr, prec int32, pok int32) (r float64)
- func Y__fmodeflags(tls *TLS, mode uintptr) (r int32)
- func Y__fopen_rb_ca(tls *TLS, filename uintptr, f uintptr, buf uintptr, len1 Tsize_t) (r uintptr)
- func Y__fpclassify(tls *TLS, x float64) (r int32)
- func Y__fpclassifyf(tls *TLS, x float32) (r int32)
- func Y__fpclassifyl(tls *TLS, x float64) (r int32)
- func Y__fpurge(tls *TLS, f uintptr) (r int32)
- func Y__freadable(tls *TLS, f uintptr) (r int32)
- func Y__freading(tls *TLS, f uintptr) (r int32)
- func Y__freadptr(tls *TLS, f uintptr, sizep uintptr) (r uintptr)
- func Y__freadptrinc(tls *TLS, f uintptr, inc Tsize_t)
- func Y__freelocale(tls *TLS, l Tlocale_t)
- func Y__fseeko(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func Y__fseeko_unlocked(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func Y__fseterr(tls *TLS, f uintptr)
- func Y__fsetlocking(tls *TLS, f uintptr, type1 int32) (r int32)
- func Y__fstat(tls *TLS, fd int32, st uintptr) (r int32)
- func Y__fstatat(tls *TLS, fd int32, path uintptr, st uintptr, flag int32) (r int32)
- func Y__funcs_on_quick_exit(tls *TLS)
- func Y__futimesat(tls *TLS, dirfd int32, pathname uintptr, times uintptr) (r int32)
- func Y__fwritable(tls *TLS, f uintptr) (r int32)
- func Y__fwriting(tls *TLS, f uintptr) (r int32)
- func Y__fxstat(tls *TLS, ver int32, fd int32, buf uintptr) (r int32)
- func Y__fxstatat(tls *TLS, ver int32, fd int32, path uintptr, buf uintptr, flag int32) (r int32)
- func Y__get_handler_set(tls *TLS, set uintptr)
- func Y__get_locale(tls *TLS, cat int32, val uintptr) (r uintptr)
- func Y__get_resolv_conf(tls *TLS, conf uintptr, search uintptr, search_sz Tsize_t) (r int32)
- func Y__getauxval(tls *TLS, item uint64) (r uint64)
- func Y__getgr_a(tls *TLS, name uintptr, gid Tgid_t, gr uintptr, buf uintptr, size uintptr, ...) (r int32)
- func Y__getgrent_a(tls *TLS, f uintptr, gr uintptr, line uintptr, size uintptr, mem uintptr, ...) (r int32)
- func Y__getopt_msg(tls *TLS, a uintptr, b uintptr, c uintptr, l Tsize_t)
- func Y__getpw_a(tls *TLS, name uintptr, uid Tuid_t, pw uintptr, buf uintptr, size uintptr, ...) (r int32)
- func Y__getpwent_a(tls *TLS, f uintptr, pw uintptr, line uintptr, size uintptr, res uintptr) (r int32)
- func Y__gettextdomain(tls *TLS) (r uintptr)
- func Y__gmtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Y__h_errno_location(tls *TLS) (r uintptr)
- func Y__inet_aton(tls *TLS, s0 uintptr, dest uintptr) (r int32)
- func Y__init_ssp(tls *TLS, entropy uintptr)
- func Y__intscan(tls *TLS, f uintptr, base uint32, pok int32, lim uint64) (r uint64)
- func Y__isalnum_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isalpha_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isblank_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__iscntrl_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isfinite(tls *TLS, d float64) (_2 int32)
- func Y__isfinitef(tls *TLS, f float32) (_2 int32)
- func Y__isfinitel(tls *TLS, d float64) (_2 int32)
- func Y__isgraph_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__islower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isnan(t *TLS, x float64) (_2 int32)
- func Y__isnanf(t *TLS, arg float32) (_2 int32)
- func Y__isnanl(t *TLS, arg float64) (_2 int32)
- func Y__isoc99_fscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Y__isoc99_fwscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Y__isoc99_scanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Y__isoc99_sscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Y__isoc99_swscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Y__isoc99_vfscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_vfwscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_vscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_vsscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_vswscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_vwscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Y__isoc99_wscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Y__isprint_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__ispunct_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isspace_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__isupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__iswalnum_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswalpha_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswblank_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswcntrl_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswctype_l(tls *TLS, c Twint_t, t Twctype_t, l Tlocale_t) (r int32)
- func Y__iswdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswgraph_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswprint_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswpunct_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswspace_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__iswxdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Y__isxdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__lctrans(tls *TLS, msg uintptr, lm uintptr) (r uintptr)
- func Y__lctrans_cur(tls *TLS, msg uintptr) (r uintptr)
- func Y__lctrans_impl(tls *TLS, msg uintptr, lm uintptr) (r uintptr)
- func Y__ldexp_cexp(tls *TLS, z complex128, expt int32) (r complex128)
- func Y__ldexp_cexpf(tls *TLS, z complex64, expt int32) (r complex64)
- func Y__lgamma_r(tls *TLS, x float64, signgamp uintptr) (r1 float64)
- func Y__lgammaf_r(tls *TLS, x float32, signgamp uintptr) (r1 float32)
- func Y__lgammal_r(tls *TLS, x float64, sg uintptr) (r float64)
- func Y__libc_current_sigrtmax(tls *TLS) (r int32)
- func Y__libc_current_sigrtmin(tls *TLS) (r int32)
- func Y__libc_sigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r1 int32)
- func Y__loc_is_allocated(tls *TLS, loc Tlocale_t) (r int32)
- func Y__localtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Y__lockfile(tls *TLS, file uintptr) (_2 int32)
- func Y__lookup_ipliteral(tls *TLS, buf uintptr, name uintptr, family int32) (r int32)
- func Y__lookup_name(tls *TLS, buf uintptr, canon uintptr, name uintptr, family int32, flags int32) (r int32)
- func Y__lookup_serv(tls *TLS, buf uintptr, name uintptr, proto int32, socktype int32, flags int32) (r int32)
- func Y__lsysinfo(tls *TLS, info uintptr) (r int32)
- func Y__lxstat(tls *TLS, ver int32, path uintptr, buf uintptr) (r int32)
- func Y__madvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func Y__map_file(tls *TLS, pathname uintptr, size uintptr) (r uintptr)
- func Y__math_divzero(tls *TLS, sign Tuint32_t) (r float64)
- func Y__math_divzerof(tls *TLS, sign Tuint32_t) (r float32)
- func Y__math_invalid(tls *TLS, x float64) (r float64)
- func Y__math_invalidf(tls *TLS, x float32) (r float32)
- func Y__math_oflow(tls *TLS, sign Tuint32_t) (r float64)
- func Y__math_oflowf(tls *TLS, sign Tuint32_t) (r float32)
- func Y__math_uflow(tls *TLS, sign Tuint32_t) (r float64)
- func Y__math_uflowf(tls *TLS, sign Tuint32_t) (r float32)
- func Y__math_xflow(tls *TLS, sign Tuint32_t, y2 float64) (r float64)
- func Y__math_xflowf(tls *TLS, sign Tuint32_t, y2 float32) (r float32)
- func Y__memrchr(tls *TLS, m uintptr, c int32, n Tsize_t) (r uintptr)
- func Y__mkostemps(tls *TLS, template uintptr, len1 int32, flags int32) (r int32)
- func Y__mmap(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func Y__mo_lookup(tls *TLS, p uintptr, size Tsize_t, s uintptr) (r uintptr)
- func Y__month_to_secs(tls *TLS, month int32, is_leap int32) (r int32)
- func Y__mprotect(tls *TLS, addr uintptr, len1 Tsize_t, prot int32) (r int32)
- func Y__mremap(tls *TLS, old_addr uintptr, old_len Tsize_t, new_len Tsize_t, flags int32, ...) (r uintptr)
- func Y__munmap(tls *TLS, start uintptr, len1 Tsize_t) (r int32)
- func Y__nl_langinfo(tls *TLS, item Tnl_item) (r uintptr)
- func Y__nl_langinfo_l(tls *TLS, item Tnl_item, loc Tlocale_t) (r uintptr)
- func Y__nscd_query(tls *TLS, req Tint32_t, key uintptr, buf uintptr, len1 Tsize_t, swap uintptr) (r uintptr)
- func Y__ofl_add(tls *TLS, f uintptr) (r uintptr)
- func Y__ofl_lock(tls *TLS) (r uintptr)
- func Y__ofl_unlock(tls *TLS)
- func Y__overflow(tls *TLS, f uintptr, _c int32) (r int32)
- func Y__pleval(tls *TLS, s uintptr, n uint64) (r uint64)
- func Y__posix_getopt(tls *TLS, argc int32, argv uintptr, optstring uintptr) (r int32)
- func Y__procfdname(tls *TLS, buf uintptr, fd uint32)
- func Y__ptsname_r(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func Y__putenv(tls *TLS, s uintptr, l Tsize_t, r uintptr) (r1 int32)
- func Y__qsort_r(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun, ...)
- func Y__register_locked_file(tls *TLS, f uintptr, self Tpthread_t)
- func Y__rem_pio2(tls *TLS, x float64, y uintptr) (r1 int32)
- func Y__rem_pio2_large(tls *TLS, x uintptr, y uintptr, e0 int32, nx int32, prec int32) (r int32)
- func Y__rem_pio2f(tls *TLS, x float32, y uintptr) (r int32)
- func Y__res_mkquery(tls *TLS, op int32, dname uintptr, class int32, type1 int32, data uintptr, ...) (r int32)
- func Y__res_msend(tls *TLS, nqueries int32, queries uintptr, qlens uintptr, answers uintptr, ...) (r int32)
- func Y__res_msend_rc(tls *TLS, nqueries int32, queries uintptr, qlens uintptr, answers uintptr, ...) (r1 int32)
- func Y__res_send(tls *TLS, _msg uintptr, _msglen int32, _answer uintptr, _anslen int32) (r1 int32)
- func Y__res_state(tls *TLS) (r uintptr)
- func Y__reset_tls(tls *TLS)
- func Y__restore(tls *TLS)
- func Y__restore_rt(tls *TLS)
- func Y__restore_sigs(tls *TLS, set uintptr)
- func Y__rtnetlink_enumerate(tls *TLS, link_af int32, addr_af int32, __ccgo_fp_cb uintptr, ctx uintptr) (r1 int32)
- func Y__secs_to_tm(tls *TLS, t int64, tm uintptr) (r int32)
- func Y__secs_to_zone(tls *TLS, t int64, local int32, isdst uintptr, offset uintptr, oppoff uintptr, ...)
- func Y__setxid(tls *TLS, nr int32, id int32, eid int32, sid int32) (r int32)
- func Y__shgetc(tls *TLS, f uintptr) (r int32)
- func Y__shlim(tls *TLS, f uintptr, lim Toff_t)
- func Y__shm_mapname(tls *TLS, name uintptr, buf uintptr) (r uintptr)
- func Y__sigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r1 int32)
- func Y__signbit(tls *TLS, x float64) (r int32)
- func Y__signbitf(tls *TLS, x float32) (r int32)
- func Y__signbitl(tls *TLS, x float64) (r int32)
- func Y__sigsetjmp_tail(tls *TLS, jb uintptr, ret int32) (r int32)
- func Y__sin(tls *TLS, x float64, y float64, iy int32) (r1 float64)
- func Y__sindf(tls *TLS, x float64) (r1 float32)
- func Y__stack_chk_fail(tls *TLS)
- func Y__stack_chk_fail_local(tls *TLS)
- func Y__stdio_close(tls *TLS, f uintptr) (r int32)
- func Y__stdio_exit(tls *TLS)
- func Y__stdio_exit_needed(tls *TLS)
- func Y__stpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Y__stpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Y__strcasecmp_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Y__strchrnul(tls *TLS, s uintptr, c int32) (r uintptr)
- func Y__strcoll_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Y__strerror_l(tls *TLS, e int32, loc Tlocale_t) (r uintptr)
- func Y__strftime_fmt_1(tls *TLS, s uintptr, l uintptr, f int32, tm uintptr, loc Tlocale_t, pad int32) (r uintptr)
- func Y__strncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, loc Tlocale_t) (r1 int32)
- func Y__strtod_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Y__strtof_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float32)
- func Y__strtol_internal(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Y__strtold_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Y__strtoll_internal(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Y__strtoul_internal(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Y__strtoull_internal(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Y__sync_synchronize(t *TLS)
- func Y__sync_val_compare_and_swapInt8(t *TLS, ptr uintptr, oldval, newval int8) (r int8)
- func Y__sync_val_compare_and_swapInt16(t *TLS, ptr uintptr, oldval, newval int16) (r int16)
- func Y__sync_val_compare_and_swapInt32(t *TLS, ptr uintptr, oldval, newval int32) (r int32)
- func Y__sync_val_compare_and_swapInt64(t *TLS, ptr uintptr, oldval, newval int64) (r int64)
- func Y__sync_val_compare_and_swapUint8(t *TLS, ptr uintptr, oldval, newval uint8) (r uint8)
- func Y__sync_val_compare_and_swapUint16(t *TLS, ptr uintptr, oldval, newval uint16) (r uint16)
- func Y__sync_val_compare_and_swapUint32(t *TLS, ptr uintptr, oldval, newval uint32) (r uint32)
- func Y__sync_val_compare_and_swapUint64(t *TLS, ptr uintptr, oldval, newval uint64) (r uint64)
- func Y__syscall0(tls *TLS, n long) (_2 long)
- func Y__syscall1(tls *TLS, n, a1 long) (_2 long)
- func Y__syscall2(tls *TLS, n, a1, a2 long) (_2 long)
- func Y__syscall3(tls *TLS, n, a1, a2, a3 long) (_2 long)
- func Y__syscall4(tls *TLS, n, a1, a2, a3, a4 long) (_2 long)
- func Y__syscall5(tls *TLS, n, a1, a2, a3, a4, a5 long) (_2 long)
- func Y__syscall6(tls *TLS, n, a1, a2, a3, a4, a5, a6 long) (_2 long)
- func Y__syscall_ret(tls *TLS, r uint64) (r1 int64)
- func Y__tan(tls *TLS, x float64, y float64, odd int32) (r1 float64)
- func Y__tandf(tls *TLS, x float64, odd int32) (r1 float32)
- func Y__tm_to_secs(tls *TLS, tm uintptr) (r int64)
- func Y__tm_to_tzname(tls *TLS, tm uintptr) (r uintptr)
- func Y__tolower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__toread(tls *TLS, f uintptr) (r int32)
- func Y__toread_needs_stdio_exit(tls *TLS)
- func Y__toupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Y__towrite(tls *TLS, f uintptr) (r int32)
- func Y__towrite_needs_stdio_exit(tls *TLS)
- func Y__tre_mem_alloc_impl(tls *TLS, mem Ttre_mem_t, provided int32, provided_block uintptr, zero int32, ...) (r uintptr)
- func Y__tre_mem_destroy(tls *TLS, mem Ttre_mem_t)
- func Y__tsearch_balance(tls *TLS, p uintptr) (r int32)
- func Y__uflow(tls *TLS, f uintptr) (r int32)
- func Y__unlist_locked_file(tls *TLS, f uintptr)
- func Y__unlockfile(tls *TLS, file uintptr)
- func Y__vm_wait(tls *TLS)
- func Y__wcscoll_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func Y__xmknod(tls *TLS, ver int32, path uintptr, mode Tmode_t, dev uintptr) (r int32)
- func Y__xmknodat(tls *TLS, ver int32, fd int32, path uintptr, mode Tmode_t, dev uintptr) (r int32)
- func Y__xpg_basename(tls *TLS, s uintptr) (r uintptr)
- func Y__xpg_strerror_r(tls *TLS, err int32, buf uintptr, buflen Tsize_t) (r int32)
- func Y__xstat(tls *TLS, ver int32, path uintptr, buf uintptr) (r int32)
- func Y__year_to_secs(tls *TLS, year int64, is_leap uintptr) (r int64)
- func Y_exit(tls *TLS, status int32)
- func Y_flushlbf(tls *TLS)
- func Y_longjmp(t *TLS, env uintptr, val int32)
- func Y_obstack_begin(t *TLS, obstack uintptr, size, alignment int32, chunkfun, freefun uintptr) (_4 int32)
- func Y_obstack_newchunk(t *TLS, obstack uintptr, length int32) (_3 int32)
- func Y_pthread_cleanup_pop(tls *TLS, _ uintptr, run int32)
- func Y_pthread_cleanup_push(tls *TLS, _, f, x uintptr)
- func Y_setjmp(t *TLS, env uintptr) (_2 int32)
- func Ya64l(tls *TLS, s uintptr) (r int64)
- func Yabort(tls *TLS)
- func Yabs(tls *TLS, a int32) (r int32)
- func Yaccept(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Yaccept4(tls *TLS, fd int32, addr uintptr, len1 uintptr, flg int32) (r1 int32)
- func Yaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Yacct(tls *TLS, filename uintptr) (r int32)
- func Yacos(tls *TLS, x float64) (r float64)
- func Yacosf(tls *TLS, x float32) (r float32)
- func Yacosh(tls *TLS, x float64) (r float64)
- func Yacoshf(tls *TLS, x float32) (r float32)
- func Yacoshl(tls *TLS, x float64) (r float64)
- func Yacosl(tls *TLS, x float64) (r float64)
- func Yaddmntent(tls *TLS, f uintptr, mnt uintptr) (r int32)
- func Yadjtime(tls *TLS, in uintptr, out uintptr) (r int32)
- func Yadjtimex(tls *TLS, tx uintptr) (r int32)
- func Yalarm(tls *TLS, seconds uint32) (r uint32)
- func Yalloca(tls *TLS, size Tsize_t) (_2 uintptr)
- func Yalphasort(tls *TLS, a uintptr, b uintptr) (r int32)
- func Yarch_prctl(tls *TLS, code int32, addr uint64) (r int32)
- func Yasctime(tls *TLS, tm uintptr) (r uintptr)
- func Yasctime_r(tls *TLS, tm uintptr, buf uintptr) (r uintptr)
- func Yasin(tls *TLS, x float64) (r1 float64)
- func Yasinf(tls *TLS, x float32) (r float32)
- func Yasinh(tls *TLS, x3 float64) (r float64)
- func Yasinhf(tls *TLS, x3 float32) (r float32)
- func Yasinhl(tls *TLS, x float64) (r float64)
- func Yasinl(tls *TLS, x float64) (r float64)
- func Yasprintf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Yat_quick_exit(tls *TLS, __ccgo_fp_func uintptr) (r1 int32)
- func Yatan(tls *TLS, x3 float64) (r float64)
- func Yatan2(tls *TLS, y float64, x float64) (r float64)
- func Yatan2f(tls *TLS, y float32, x float32) (r float32)
- func Yatan2l(tls *TLS, y float64, x float64) (r float64)
- func Yatanf(tls *TLS, x3 float32) (r float32)
- func Yatanh(tls *TLS, x3 float64) (r float64)
- func Yatanhf(tls *TLS, x3 float32) (r float32)
- func Yatanhl(tls *TLS, x float64) (r float64)
- func Yatanl(tls *TLS, x float64) (r float64)
- func Yatexit(tls *TLS, func_ uintptr) (r int32)
- func Yatof(tls *TLS, s uintptr) (r float64)
- func Yatoi(tls *TLS, s uintptr) (r int32)
- func Yatol(tls *TLS, s uintptr) (r int64)
- func Yatoll(tls *TLS, s uintptr) (r int64)
- func Ybacktrace(t *TLS, buf uintptr, size int32) (_3 int32)
- func Ybacktrace_symbols_fd(t *TLS, buffer uintptr, size, fd int32)
- func Ybasename(tls *TLS, s uintptr) (r uintptr)
- func Ybcmp(tls *TLS, s1 uintptr, s2 uintptr, n Tsize_t) (r int32)
- func Ybcopy(tls *TLS, s1 uintptr, s2 uintptr, n Tsize_t)
- func Ybind(tls *TLS, fd int32, addr uintptr, len1 Tsocklen_t) (r1 int32)
- func Ybind_textdomain_codeset(tls *TLS, domainname uintptr, codeset uintptr) (r uintptr)
- func Ybindtextdomain(tls *TLS, domainname uintptr, dirname uintptr) (r uintptr)
- func Ybrk(tls *TLS, end uintptr) (r int32)
- func Ybsearch(tls *TLS, key uintptr, base uintptr, nel Tsize_t, width Tsize_t, ...) (r uintptr)
- func Ybzero(tls *TLS, s uintptr, n Tsize_t)
- func Ycabs(tls *TLS, z complex128) (r float64)
- func Ycabsf(tls *TLS, z complex64) (r float32)
- func Ycabsl(tls *TLS, z complex128) (r float64)
- func Ycacos(tls *TLS, z complex128) (r complex128)
- func Ycacosf(tls *TLS, z complex64) (r complex64)
- func Ycacosh(tls *TLS, z complex128) (r complex128)
- func Ycacoshf(tls *TLS, z complex64) (r complex64)
- func Ycacoshl(tls *TLS, z complex128) (r complex128)
- func Ycacosl(tls *TLS, z complex128) (r complex128)
- func Ycalloc(tls *TLS, m Tsize_t, n Tsize_t) (r uintptr)
- func Ycapget(tls *TLS, a uintptr, b uintptr) (r int32)
- func Ycapset(tls *TLS, a uintptr, b uintptr) (r int32)
- func Ycarg(tls *TLS, z complex128) (r float64)
- func Ycargf(tls *TLS, z complex64) (r float32)
- func Ycargl(tls *TLS, z complex128) (r float64)
- func Ycasin(tls *TLS, z complex128) (r1 complex128)
- func Ycasinf(tls *TLS, z complex64) (r1 complex64)
- func Ycasinh(tls *TLS, z complex128) (r complex128)
- func Ycasinhf(tls *TLS, z complex64) (r complex64)
- func Ycasinhl(tls *TLS, z complex128) (r complex128)
- func Ycasinl(tls *TLS, z complex128) (r complex128)
- func Ycatan(tls *TLS, z complex128) (r complex128)
- func Ycatanf(tls *TLS, z complex64) (r complex64)
- func Ycatanh(tls *TLS, z complex128) (r complex128)
- func Ycatanhf(tls *TLS, z complex64) (r complex64)
- func Ycatanhl(tls *TLS, z complex128) (r complex128)
- func Ycatanl(tls *TLS, z complex128) (r complex128)
- func Ycatclose(tls *TLS, catd Tnl_catd) (r int32)
- func Ycatgets(tls *TLS, catd Tnl_catd, set_id int32, msg_id int32, s uintptr) (r uintptr)
- func Ycbrt(tls *TLS, x float64) (r1 float64)
- func Ycbrtf(tls *TLS, x float32) (r1 float32)
- func Ycbrtl(tls *TLS, x float64) (r float64)
- func Yccos(tls *TLS, z complex128) (r complex128)
- func Yccosf(tls *TLS, z complex64) (r complex64)
- func Yccosh(tls *TLS, z complex128) (r complex128)
- func Yccoshf(tls *TLS, z complex64) (r complex64)
- func Yccoshl(tls *TLS, z complex128) (r complex128)
- func Yccosl(tls *TLS, z complex128) (r complex128)
- func Yceil(tls *TLS, x3 float64) (r float64)
- func Yceilf(tls *TLS, x3 float32) (r float32)
- func Yceill(tls *TLS, x float64) (r float64)
- func Ycexp(tls *TLS, z complex128) (r complex128)
- func Ycexpf(tls *TLS, z complex64) (r complex64)
- func Ycexpl(tls *TLS, z complex128) (r complex128)
- func Ycfmakeraw(tls *TLS, t uintptr)
- func Ycfsetispeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Ycfsetospeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Ycfsetspeed(tls *TLS, tio uintptr, speed Tspeed_t) (r int32)
- func Ychdir(tls *TLS, path uintptr) (r int32)
- func Ychmod(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Ychown(tls *TLS, path uintptr, uid Tuid_t, gid Tgid_t) (r int32)
- func Ychroot(tls *TLS, path uintptr) (r int32)
- func Ycimag(tls *TLS, z complex128) (r float64)
- func Ycimagf(tls *TLS, z complex64) (r float32)
- func Ycimagl(tls *TLS, z complex128) (r float64)
- func Yclearenv(tls *TLS) (r int32)
- func Yclearerr(tls *TLS, f uintptr)
- func Yclearerr_unlocked(tls *TLS, f uintptr)
- func Yclock_adjtime(tls *TLS, clock_id Tclockid_t, utx uintptr) (r1 int32)
- func Yclock_getcpuclockid(tls *TLS, pid Tpid_t, clk uintptr) (r int32)
- func Yclock_getres(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Yclock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Yclock_nanosleep(tls *TLS, clk Tclockid_t, flags int32, req uintptr, rem uintptr) (r int32)
- func Yclock_settime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
- func Yclog(tls *TLS, z complex128) (r1 complex128)
- func Yclogf(tls *TLS, z complex64) (r1 complex64)
- func Yclogl(tls *TLS, z complex128) (r complex128)
- func Yclose(tls *TLS, fd int32) (r1 int32)
- func Yclosedir(tls *TLS, dir uintptr) (r int32)
- func Ycloselog(tls *TLS)
- func Yconj(tls *TLS, z complex128) (r complex128)
- func Yconjf(tls *TLS, z complex64) (r complex64)
- func Yconjl(tls *TLS, z complex128) (r complex128)
- func Yconnect(tls *TLS, fd int32, addr uintptr, len1 Tsocklen_t) (r1 int32)
- func Ycopysign(tls *TLS, x float64, y float64) (r float64)
- func Ycopysignf(tls *TLS, x float32, y float32) (r float32)
- func Ycopysignl(tls *TLS, x float64, y float64) (r float64)
- func Ycos(tls *TLS, x3 float64) (r float64)
- func Ycosf(tls *TLS, x3 float32) (r float32)
- func Ycosh(tls *TLS, x3 float64) (r float64)
- func Ycoshf(tls *TLS, x3 float32) (r float32)
- func Ycoshl(tls *TLS, x float64) (r float64)
- func Ycosl(tls *TLS, x float64) (r float64)
- func Ycpow(tls *TLS, z complex128, c complex128) (r complex128)
- func Ycpowf(tls *TLS, z complex64, c complex64) (r complex64)
- func Ycpowl(tls *TLS, z complex128, c complex128) (r complex128)
- func Ycproj(tls *TLS, z complex128) (r complex128)
- func Ycprojf(tls *TLS, z complex64) (r complex64)
- func Ycprojl(tls *TLS, z complex128) (r complex128)
- func Ycreal(tls *TLS, z complex128) (r float64)
- func Ycrealf(tls *TLS, z complex64) (r float32)
- func Ycreall(tls *TLS, z complex128) (r float64)
- func Ycreat(tls *TLS, filename uintptr, mode Tmode_t) (r int32)
- func Ycrypt(tls *TLS, key uintptr, salt uintptr) (r uintptr)
- func Ycrypt_r(tls *TLS, key uintptr, salt uintptr, data uintptr) (r uintptr)
- func Ycsin(tls *TLS, z complex128) (r complex128)
- func Ycsinf(tls *TLS, z complex64) (r complex64)
- func Ycsinh(tls *TLS, z complex128) (r complex128)
- func Ycsinhf(tls *TLS, z complex64) (r complex64)
- func Ycsinhl(tls *TLS, z complex128) (r complex128)
- func Ycsinl(tls *TLS, z complex128) (r complex128)
- func Ycsqrt(tls *TLS, z complex128) (r complex128)
- func Ycsqrtf(tls *TLS, z complex64) (r complex64)
- func Ycsqrtl(tls *TLS, z complex128) (r complex128)
- func Yctan(tls *TLS, z complex128) (r complex128)
- func Yctanf(tls *TLS, z complex64) (r complex64)
- func Yctanh(tls *TLS, z complex128) (r complex128)
- func Yctanhf(tls *TLS, z complex64) (r complex64)
- func Yctanhl(tls *TLS, z complex128) (r complex128)
- func Yctanl(tls *TLS, z complex128) (r complex128)
- func Yctermid(tls *TLS, s uintptr) (r uintptr)
- func Yctime(tls *TLS, t uintptr) (r uintptr)
- func Yctime_r(tls *TLS, t uintptr, buf uintptr) (r uintptr)
- func Ycuserid(tls *TLS, buf uintptr) (r uintptr)
- func Ydcgettext(tls *TLS, domainname uintptr, msgid uintptr, category int32) (r uintptr)
- func Ydcngettext(tls *TLS, domainname uintptr, msgid1 uintptr, msgid2 uintptr, n uint64, ...) (r1 uintptr)
- func Ydelete_module(tls *TLS, a uintptr, b uint32) (r int32)
- func Ydgettext(tls *TLS, domainname uintptr, msgid uintptr) (r uintptr)
- func Ydifftime(tls *TLS, t1 Ttime_t, t0 Ttime_t) (r float64)
- func Ydirfd(tls *TLS, d uintptr) (r int32)
- func Ydirname(tls *TLS, s uintptr) (r uintptr)
- func Ydlclose(t *TLS, handle uintptr) (_2 int32)
- func Ydlerror(t *TLS) (_1 uintptr)
- func Ydlopen(t *TLS, filename uintptr, flags int32) (_3 uintptr)
- func Ydlsym(t *TLS, handle, symbol uintptr) (_2 uintptr)
- func Ydn_comp(tls *TLS, src uintptr, dst uintptr, space int32, dnptrs uintptr, ...) (r int32)
- func Ydn_expand(tls *TLS, base uintptr, end uintptr, src uintptr, dest uintptr, space int32) (r int32)
- func Ydn_skipname(tls *TLS, s uintptr, end uintptr) (r int32)
- func Ydngettext(tls *TLS, domainname uintptr, msgid1 uintptr, msgid2 uintptr, n uint64) (r uintptr)
- func Ydprintf(tls *TLS, fd int32, fmt uintptr, va uintptr) (r int32)
- func Ydrand48(tls *TLS) (r float64)
- func Ydrem(tls *TLS, x float64, y float64) (r float64)
- func Ydremf(tls *TLS, x float32, y float32) (r float32)
- func Ydup(tls *TLS, fd int32) (r int32)
- func Ydup2(tls *TLS, old int32, new1 int32) (r1 int32)
- func Ydup3(tls *TLS, old int32, new1 int32, flags int32) (r int32)
- func Yeaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Yecvt(tls *TLS, x float64, n int32, dp uintptr, sign uintptr) (r uintptr)
- func Yencrypt(tls *TLS, block uintptr, edflag int32)
- func Yendgrent(tls *TLS)
- func Yendhostent(tls *TLS)
- func Yendmntent(tls *TLS, f uintptr) (r int32)
- func Yendnetent(tls *TLS)
- func Yendprotoent(tls *TLS)
- func Yendpwent(tls *TLS)
- func Yendservent(tls *TLS)
- func Yendspent(tls *TLS)
- func Yendusershell(tls *TLS)
- func Yendutent(tls *TLS)
- func Yendutxent(tls *TLS)
- func Yepoll_create(tls *TLS, size int32) (r int32)
- func Yepoll_create1(tls *TLS, flags int32) (r1 int32)
- func Yepoll_ctl(tls *TLS, fd int32, op int32, fd2 int32, ev uintptr) (r int32)
- func Yepoll_pwait(tls *TLS, fd int32, ev uintptr, cnt int32, to int32, sigs uintptr) (r1 int32)
- func Yepoll_wait(tls *TLS, fd int32, ev uintptr, cnt int32, to int32) (r int32)
- func Yerand48(tls *TLS, s uintptr) (r float64)
- func Yerf(tls *TLS, x float64) (r1 float64)
- func Yerfc(tls *TLS, x float64) (r1 float64)
- func Yerfcf(tls *TLS, x float32) (r1 float32)
- func Yerfcl(tls *TLS, x float64) (r float64)
- func Yerff(tls *TLS, x float32) (r1 float32)
- func Yerfl(tls *TLS, x float64) (r float64)
- func Yerr(tls *TLS, status int32, fmt uintptr, va uintptr)
- func Yerrx(tls *TLS, status int32, fmt uintptr, va uintptr)
- func Yether_aton(tls *TLS, x uintptr) (r uintptr)
- func Yether_aton_r(tls *TLS, x uintptr, p_a uintptr) (r uintptr)
- func Yether_hostton(tls *TLS, hostname uintptr, e uintptr) (r int32)
- func Yether_line(tls *TLS, l uintptr, e uintptr, hostname uintptr) (r int32)
- func Yether_ntoa(tls *TLS, p_a uintptr) (r uintptr)
- func Yether_ntoa_r(tls *TLS, p_a uintptr, x uintptr) (r uintptr)
- func Yether_ntohost(tls *TLS, hostname uintptr, e uintptr) (r int32)
- func Yeuidaccess(tls *TLS, filename uintptr, amode int32) (r int32)
- func Yeventfd(tls *TLS, count uint32, flags int32) (r1 int32)
- func Yeventfd_read(tls *TLS, fd int32, value uintptr) (r int32)
- func Yeventfd_write(tls *TLS, fd int32, _value Teventfd_t) (r int32)
- func Yexecl(tls *TLS, path uintptr, argv0 uintptr, va uintptr) (r int32)
- func Yexecle(tls *TLS, path uintptr, argv0 uintptr, va uintptr) (r int32)
- func Yexeclp(tls *TLS, file uintptr, argv0 uintptr, va uintptr) (r int32)
- func Yexecv(tls *TLS, path uintptr, argv uintptr) (r int32)
- func Yexecve(tls *TLS, path uintptr, argv uintptr, envp uintptr) (r int32)
- func Yexecvp(tls *TLS, file uintptr, argv uintptr) (r int32)
- func Yexecvpe(tls *TLS, file uintptr, argv uintptr, envp uintptr) (r int32)
- func Yexit(tls *TLS, code int32)
- func Yexp(tls *TLS, x1 float64) (r1 float64)
- func Yexp2(tls *TLS, x1 float64) (r1 float64)
- func Yexp2f(tls *TLS, x2 float32) (r1 float32)
- func Yexp2l(tls *TLS, x float64) (r float64)
- func Yexp10(tls *TLS, x float64) (r float64)
- func Yexp10f(tls *TLS, x float32) (r float32)
- func Yexp10l(tls *TLS, x float64) (r float64)
- func Yexpf(tls *TLS, x2 float32) (r1 float32)
- func Yexpl(tls *TLS, x float64) (r float64)
- func Yexplicit_bzero(tls *TLS, d uintptr, n Tsize_t)
- func Yexpm1(tls *TLS, x3 float64) (r float64)
- func Yexpm1f(tls *TLS, x3 float32) (r float32)
- func Yexpm1l(tls *TLS, x float64) (r float64)
- func Yfabs(tls *TLS, x float64) (r float64)
- func Yfabsf(tls *TLS, x float32) (r float32)
- func Yfabsl(tls *TLS, x float64) (r float64)
- func Yfaccessat(tls *TLS, fd int32, filename uintptr, amode int32, flag int32) (r int32)
- func Yfallocate(tls *TLS, fd int32, mode int32, base Toff_t, len1 Toff_t) (r int32)
- func Yfanotify_init(tls *TLS, flags uint32, event_f_flags uint32) (r int32)
- func Yfanotify_mark(tls *TLS, fanotify_fd int32, flags uint32, mask uint64, dfd int32, ...) (r int32)
- func Yfchdir(tls *TLS, fd int32) (r int32)
- func Yfchmod(tls *TLS, fd int32, mode Tmode_t) (r int32)
- func Yfchmodat(tls *TLS, fd int32, path uintptr, mode Tmode_t, flag int32) (r int32)
- func Yfchown(tls *TLS, fd int32, uid Tuid_t, gid Tgid_t) (r int32)
- func Yfchownat(tls *TLS, fd int32, path uintptr, uid Tuid_t, gid Tgid_t, flag int32) (r int32)
- func Yfclose(tls *TLS, f uintptr) (r1 int32)
- func Yfcntl(tls *TLS, fd int32, cmd int32, va uintptr) (r int32)
- func Yfcntl64(tls *TLS, fd int32, cmd int32, va uintptr) (r int32)
- func Yfcvt(tls *TLS, x float64, n int32, dp uintptr, sign uintptr) (r uintptr)
- func Yfdatasync(tls *TLS, fd int32) (r int32)
- func Yfdim(tls *TLS, x float64, y float64) (r float64)
- func Yfdimf(tls *TLS, x float32, y float32) (r float32)
- func Yfdiml(tls *TLS, x float64, y float64) (r float64)
- func Yfdopen(tls *TLS, fd int32, mode uintptr) (r uintptr)
- func Yfdopendir(tls *TLS, fd int32) (r uintptr)
- func Yfeclearexcept(tls *TLS, mask int32) (r int32)
- func Yfegetenv(tls *TLS, envp uintptr) (r int32)
- func Yfegetround(tls *TLS) (r int32)
- func Yfeof(tls *TLS, f uintptr) (r int32)
- func Yfeof_unlocked(tls *TLS, f uintptr) (r int32)
- func Yferaiseexcept(tls *TLS, mask int32) (r int32)
- func Yferror(tls *TLS, f uintptr) (r int32)
- func Yferror_unlocked(tls *TLS, f uintptr) (r int32)
- func Yfesetenv(tls *TLS, envp uintptr) (r int32)
- func Yfetestexcept(tls *TLS, mask int32) (r int32)
- func Yfexecve(tls *TLS, fd int32, argv uintptr, envp uintptr) (r1 int32)
- func Yfflush(tls *TLS, f uintptr) (r1 int32)
- func Yfflush_unlocked(tls *TLS, f uintptr) (r int32)
- func Yffs(tls *TLS, i int32) (r int32)
- func Yffsl(tls *TLS, i int64) (r int32)
- func Yffsll(tls *TLS, i int64) (r int32)
- func Yfgetc(tls *TLS, f1 uintptr) (r int32)
- func Yfgetc_unlocked(tls *TLS, f uintptr) (r int32)
- func Yfgetgrent(tls *TLS, f uintptr) (r uintptr)
- func Yfgetln(tls *TLS, f uintptr, plen uintptr) (r uintptr)
- func Yfgetpos(tls *TLS, f uintptr, pos uintptr) (r int32)
- func Yfgetpwent(tls *TLS, f uintptr) (r uintptr)
- func Yfgets(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Yfgets_unlocked(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Yfgetws(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Yfgetws_unlocked(tls *TLS, s uintptr, n int32, f uintptr) (r uintptr)
- func Yfileno(tls *TLS, f uintptr) (r int32)
- func Yfileno_unlocked(tls *TLS, f uintptr) (r int32)
- func Yfinite(tls *TLS, x float64) (r int32)
- func Yfinitef(tls *TLS, x float32) (r int32)
- func Yflock(tls *TLS, fd int32, op int32) (r int32)
- func Yflockfile(tls *TLS, f uintptr)
- func Yfloor(tls *TLS, x3 float64) (r float64)
- func Yfloorf(tls *TLS, x3 float32) (r float32)
- func Yfloorl(tls *TLS, x float64) (r float64)
- func Yfma(tls *TLS, x1 float64, y float64, z float64) (r1 float64)
- func Yfmal(tls *TLS, x float64, y float64, z float64) (r float64)
- func Yfmax(tls *TLS, x float64, y float64) (r float64)
- func Yfmaxf(tls *TLS, x float32, y float32) (r float32)
- func Yfmaxl(tls *TLS, x float64, y float64) (r float64)
- func Yfmemopen(tls *TLS, buf uintptr, size Tsize_t, mode uintptr) (r uintptr)
- func Yfmin(tls *TLS, x float64, y float64) (r float64)
- func Yfminf(tls *TLS, x float32, y float32) (r float32)
- func Yfminl(tls *TLS, x float64, y float64) (r float64)
- func Yfmod(tls *TLS, x float64, y float64) (r float64)
- func Yfmodf(tls *TLS, x float32, y float32) (r float32)
- func Yfmodl(tls *TLS, x float64, y float64) (r float64)
- func Yfmtmsg(tls *TLS, classification int64, label uintptr, severity int32, text uintptr, ...) (r int32)
- func Yfnmatch(tls *TLS, pat uintptr, str uintptr, flags int32) (r int32)
- func Yfopen(tls *TLS, filename uintptr, mode uintptr) (r uintptr)
- func Yfopen64(tls *TLS, filename uintptr, mode uintptr) (r uintptr)
- func Yfopencookie(tls *TLS, cookie uintptr, mode uintptr, iofuncs Tcookie_io_functions_t) (r uintptr)
- func Yfork(t *TLS) (_1 int32)
- func Yfpathconf(tls *TLS, fd int32, name int32) (r int64)
- func Yfprintf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Yfpurge(tls *TLS, f uintptr) (r int32)
- func Yfputc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func Yfputc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func Yfputs(tls *TLS, s uintptr, f uintptr) (r int32)
- func Yfputs_unlocked(tls *TLS, s uintptr, f uintptr) (r int32)
- func Yfputws(tls *TLS, _ws uintptr, f uintptr) (r int32)
- func Yfputws_unlocked(tls *TLS, _ws uintptr, f uintptr) (r int32)
- func Yfree(tls *TLS, p uintptr)
- func Yfreeaddrinfo(tls *TLS, p uintptr)
- func Yfreeifaddrs(tls *TLS, ifp uintptr)
- func Yfreelocale(tls *TLS, l Tlocale_t)
- func Yfremovexattr(tls *TLS, fd int32, name uintptr) (r int32)
- func Yfreopen(tls *TLS, filename uintptr, mode uintptr, f uintptr) (r uintptr)
- func Yfrexp(tls *TLS, x float64, e uintptr) (r float64)
- func Yfrexpf(tls *TLS, x float32, e uintptr) (r float32)
- func Yfrexpl(tls *TLS, x float64, e uintptr) (r float64)
- func Yfscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Yfseek(tls *TLS, f uintptr, off int64, whence int32) (r int32)
- func Yfseeko(tls *TLS, f uintptr, off Toff_t, whence int32) (r int32)
- func Yfsetpos(tls *TLS, f uintptr, pos uintptr) (r int32)
- func Yfsetxattr(tls *TLS, filedes int32, name uintptr, value uintptr, size Tsize_t, ...) (r int32)
- func Yfstat(tls *TLS, fd int32, st uintptr) (r int32)
- func Yfstat64(tls *TLS, fd int32, st uintptr) (r int32)
- func Yfstatat(tls *TLS, fd int32, path uintptr, st uintptr, flag int32) (r int32)
- func Yfstatfs(tls *TLS, fd int32, buf uintptr) (r int32)
- func Yfstatvfs(tls *TLS, fd int32, buf uintptr) (r int32)
- func Yfsync(tls *TLS, fd int32) (r int32)
- func Yftell(tls *TLS, f uintptr) (r int64)
- func Yftime(tls *TLS, tp uintptr) (r int32)
- func Yftruncate(tls *TLS, fd int32, length Toff_t) (r int32)
- func Yftruncate64(tls *TLS, fd int32, length Toff_t) (r int32)
- func Yftrylockfile(tls *TLS, f uintptr) (r int32)
- func Yfts64_close(t *TLS, ftsp uintptr) (_2 int32)
- func Yfts64_open(t *TLS, path_argv uintptr, options int32, compar uintptr) (_4 uintptr)
- func Yfts64_read(t *TLS, ftsp uintptr) (_2 uintptr)
- func Yfts_close(t *TLS, ftsp uintptr) (_2 int32)
- func Yfts_open(t *TLS, path_argv uintptr, options int32, compar uintptr) (_4 uintptr)
- func Yfts_read(t *TLS, ftsp uintptr) (_2 uintptr)
- func Yftw(tls *TLS, path uintptr, __ccgo_fp_fn uintptr, fd_limit int32) (r int32)
- func Yfunlockfile(tls *TLS, f uintptr)
- func Yfutimens(tls *TLS, fd int32, times uintptr) (r int32)
- func Yfutimes(tls *TLS, fd int32, tv uintptr) (r int32)
- func Yfutimesat(tls *TLS, dirfd int32, pathname uintptr, times uintptr) (r int32)
- func Yfwide(tls *TLS, f uintptr, mode int32) (r int32)
- func Yfwprintf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Yfwscanf(tls *TLS, f uintptr, fmt uintptr, va uintptr) (r int32)
- func Ygai_strerror(tls *TLS, ecode int32) (r uintptr)
- func Ygcvt(tls *TLS, x float64, n int32, b uintptr) (r uintptr)
- func Yget_avphys_pages(tls *TLS) (r int64)
- func Yget_current_dir_name(tls *TLS) (r uintptr)
- func Yget_nprocs(tls *TLS) (r int32)
- func Yget_nprocs_conf(tls *TLS) (r int32)
- func Yget_phys_pages(tls *TLS) (r int64)
- func Ygetaddrinfo(tls *TLS, host uintptr, serv uintptr, hint uintptr, res uintptr) (r1 int32)
- func Ygetauxval(tls *TLS, item uint64) (r uint64)
- func Ygetc(tls *TLS, f1 uintptr) (r int32)
- func Ygetc_unlocked(tls *TLS, f uintptr) (r int32)
- func Ygetchar(tls *TLS) (r int32)
- func Ygetchar_unlocked(tls *TLS) (r int32)
- func Ygetcwd(tls *TLS, buf uintptr, size Tsize_t) (r uintptr)
- func Ygetdate(tls *TLS, s uintptr) (r uintptr)
- func Ygetdents(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func Ygetdomainname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Ygetdtablesize(tls *TLS) (r int32)
- func Ygetentropy(tls *TLS, buffer uintptr, len1 Tsize_t) (r int32)
- func Ygetenv(tls *TLS, name uintptr) (r uintptr)
- func Ygetgrent(tls *TLS) (r uintptr)
- func Ygetgrgid(tls *TLS, gid Tgid_t) (r uintptr)
- func Ygetgrgid_r(tls *TLS, gid Tgid_t, gr uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Ygetgrnam(tls *TLS, name uintptr) (r uintptr)
- func Ygetgrnam_r(tls *TLS, name uintptr, gr uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Ygetgrouplist(tls *TLS, user uintptr, gid Tgid_t, groups uintptr, ngroups uintptr) (r int32)
- func Ygetgroups(tls *TLS, count int32, list uintptr) (r int32)
- func Ygethostbyaddr(tls *TLS, a uintptr, l Tsocklen_t, af int32) (r uintptr)
- func Ygethostbyaddr_r(tls *TLS, a uintptr, l Tsocklen_t, af int32, h uintptr, buf uintptr, ...) (r int32)
- func Ygethostbyname(tls *TLS, name uintptr) (r uintptr)
- func Ygethostbyname2(tls *TLS, name uintptr, af int32) (r uintptr)
- func Ygethostbyname2_r(tls *TLS, name uintptr, af int32, h uintptr, buf uintptr, buflen Tsize_t, ...) (r int32)
- func Ygethostbyname_r(tls *TLS, name uintptr, h uintptr, buf uintptr, buflen Tsize_t, res uintptr, ...) (r int32)
- func Ygethostent(tls *TLS) (r uintptr)
- func Ygethostid(tls *TLS) (r int64)
- func Ygethostname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Ygetifaddrs(tls *TLS, ifap uintptr) (r1 int32)
- func Ygetitimer(tls *TLS, which int32, old uintptr) (r1 int32)
- func Ygetloadavg(tls *TLS, a uintptr, n int32) (r int32)
- func Ygetlogin(tls *TLS) (r uintptr)
- func Ygetlogin_r(tls *TLS, name uintptr, size Tsize_t) (r int32)
- func Ygetmntent(tls *TLS, f uintptr) (r uintptr)
- func Ygetmntent_r(tls *TLS, f uintptr, mnt uintptr, linebuf uintptr, buflen int32) (r uintptr)
- func Ygetnameinfo(tls *TLS, sa uintptr, sl Tsocklen_t, node uintptr, nodelen Tsocklen_t, ...) (r int32)
- func Ygetnetbyaddr(tls *TLS, net Tuint32_t, type1 int32) (r uintptr)
- func Ygetnetbyname(tls *TLS, name uintptr) (r uintptr)
- func Ygetnetent(tls *TLS) (r uintptr)
- func Ygetopt(tls *TLS, argc int32, argv uintptr, optstring uintptr) (r int32)
- func Ygetopt_long(tls *TLS, argc int32, argv uintptr, optstring uintptr, longopts uintptr, ...) (r int32)
- func Ygetopt_long_only(tls *TLS, argc int32, argv uintptr, optstring uintptr, longopts uintptr, ...) (r int32)
- func Ygetpagesize(tls *TLS) (r int32)
- func Ygetpass(tls *TLS, prompt uintptr) (r uintptr)
- func Ygetpeername(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Ygetpriority(tls *TLS, which int32, who Tid_t) (r int32)
- func Ygetprotobyname(tls *TLS, name uintptr) (r uintptr)
- func Ygetprotobynumber(tls *TLS, num int32) (r uintptr)
- func Ygetprotoent(tls *TLS) (r uintptr)
- func Ygetpwent(tls *TLS) (r uintptr)
- func Ygetpwnam(tls *TLS, name uintptr) (r uintptr)
- func Ygetpwnam_r(tls *TLS, name uintptr, pw uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Ygetpwuid(tls *TLS, uid Tuid_t) (r uintptr)
- func Ygetpwuid_r(tls *TLS, uid Tuid_t, pw uintptr, buf uintptr, size Tsize_t, res uintptr) (r int32)
- func Ygetresgid(tls *TLS, rgid uintptr, egid uintptr, sgid uintptr) (r int32)
- func Ygetresuid(tls *TLS, ruid uintptr, euid uintptr, suid uintptr) (r int32)
- func Ygetrlimit(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Ygetrlimit64(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Ygetrusage(tls *TLS, who int32, ru uintptr) (r1 int32)
- func Ygets(tls *TLS, s uintptr) (r uintptr)
- func Ygetservbyname(tls *TLS, name uintptr, prots uintptr) (r uintptr)
- func Ygetservbyname_r(tls *TLS, name uintptr, prots uintptr, se uintptr, buf uintptr, buflen Tsize_t, ...) (r int32)
- func Ygetservent(tls *TLS) (r uintptr)
- func Ygetsockname(tls *TLS, fd int32, addr uintptr, len1 uintptr) (r1 int32)
- func Ygetsockopt(tls *TLS, fd int32, level int32, optname int32, optval uintptr, optlen uintptr) (r2 int32)
- func Ygetspent(tls *TLS) (r uintptr)
- func Ygetsubopt(tls *TLS, opt uintptr, keys uintptr, val uintptr) (r int32)
- func Ygettext(tls *TLS, msgid uintptr) (r uintptr)
- func Ygettimeofday(tls *TLS, tv uintptr, tz uintptr) (r int32)
- func Ygetusershell(tls *TLS) (r uintptr)
- func Ygetutent(tls *TLS) (r uintptr)
- func Ygetutid(tls *TLS, ut uintptr) (r uintptr)
- func Ygetutline(tls *TLS, ut uintptr) (r uintptr)
- func Ygetutxent(tls *TLS) (r uintptr)
- func Ygetutxid(tls *TLS, ut uintptr) (r uintptr)
- func Ygetutxline(tls *TLS, ut uintptr) (r uintptr)
- func Ygetw(tls *TLS, f uintptr) (r int32)
- func Yglob(tls *TLS, pat uintptr, flags int32, __ccgo_fp_errfunc uintptr, g_ uintptr) (r int32)
- func Yglobfree(tls *TLS, g_ uintptr)
- func Ygmtime(tls *TLS, t uintptr) (r uintptr)
- func Ygmtime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Ygrantpt(tls *TLS, fd int32) (r int32)
- func Yhasmntopt(tls *TLS, mnt uintptr, opt uintptr) (r uintptr)
- func Yhcreate(tls *TLS, nel Tsize_t) (r int32)
- func Yhdestroy(tls *TLS)
- func Yherror(tls *TLS, msg uintptr)
- func Yhsearch(tls *TLS, item TENTRY, action TACTION) (r uintptr)
- func Yhstrerror(tls *TLS, ecode int32) (r uintptr)
- func Yhypot(tls *TLS, x float64, y float64) (r float64)
- func Yhypotf(tls *TLS, x float32, y float32) (r float32)
- func Yhypotl(tls *TLS, x float64, y float64) (r float64)
- func Yiconv_close(tls *TLS, cd Ticonv_t) (r int32)
- func Yif_freenameindex(tls *TLS, idx uintptr)
- func Yif_indextoname(tls *TLS, index uint32, name uintptr) (r1 uintptr)
- func Yif_nameindex(tls *TLS) (r uintptr)
- func Yif_nametoindex(tls *TLS, name uintptr) (r1 uint32)
- func Yilogb(tls *TLS, x3 float64) (r int32)
- func Yilogbf(tls *TLS, x3 float32) (r int32)
- func Yilogbl(tls *TLS, x float64) (r int32)
- func Yindex(tls *TLS, s uintptr, c int32) (r uintptr)
- func Yinet_aton(tls *TLS, s0 uintptr, dest uintptr) (r int32)
- func Yinet_ntoa(tls *TLS, _in Tin_addr) (r uintptr)
- func Yinet_ntop(tls *TLS, af int32, a0 uintptr, s uintptr, l Tsocklen_t) (r uintptr)
- func Yinet_pton(tls *TLS, af int32, s uintptr, a0 uintptr) (r int32)
- func Yinit_module(tls *TLS, a uintptr, b uint64, c uintptr) (r int32)
- func Yinitstate(tls *TLS, seed uint32, state uintptr, size Tsize_t) (r uintptr)
- func Yinitstate_r(t *TLS, seed uint32, statebuf uintptr, statelen Tsize_t, buf uintptr) (_5 int32)
- func Yinotify_add_watch(tls *TLS, fd int32, pathname uintptr, mask Tuint32_t) (r int32)
- func Yinotify_init(tls *TLS) (r int32)
- func Yinotify_init1(tls *TLS, flags int32) (r1 int32)
- func Yinotify_rm_watch(tls *TLS, fd int32, wd int32) (r int32)
- func Yinsque(tls *TLS, element uintptr, pred uintptr)
- func Yioctl(tls *TLS, fd int32, req int32, va uintptr) (r1 int32)
- func Yioperm(tls *TLS, from uint64, num uint64, turn_on int32) (r int32)
- func Yiopl(tls *TLS, level int32) (r int32)
- func Yisalnum(tls *TLS, c int32) (r int32)
- func Yisalnum_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisalpha(tls *TLS, c int32) (r int32)
- func Yisalpha_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisascii(tls *TLS, c int32) (r int32)
- func Yisastream(tls *TLS, fd int32) (r int32)
- func Yisatty(tls *TLS, fd int32) (r1 int32)
- func Yisblank(tls *TLS, c int32) (r int32)
- func Yisblank_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yiscntrl(tls *TLS, c int32) (r int32)
- func Yiscntrl_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisdigit(tls *TLS, c int32) (r int32)
- func Yisdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisgraph(tls *TLS, c int32) (r int32)
- func Yisgraph_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yislower(tls *TLS, c int32) (r int32)
- func Yislower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisnan(t *TLS, x float64) (_2 int32)
- func Yisnanf(t *TLS, arg float32) (_2 int32)
- func Yisnanl(t *TLS, arg float64) (_2 int32)
- func Yisprint(tls *TLS, c int32) (r int32)
- func Yisprint_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yispunct(tls *TLS, c int32) (r int32)
- func Yispunct_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yissetugid(tls *TLS) (r int32)
- func Yisspace(tls *TLS, c int32) (r int32)
- func Yisspace_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yisupper(tls *TLS, c int32) (r int32)
- func Yisupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yiswalnum(tls *TLS, wc Twint_t) (r int32)
- func Yiswalnum_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswalpha(tls *TLS, wc Twint_t) (r int32)
- func Yiswalpha_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswblank(tls *TLS, wc Twint_t) (r int32)
- func Yiswblank_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswcntrl(tls *TLS, wc Twint_t) (r int32)
- func Yiswcntrl_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswctype(tls *TLS, wc Twint_t, type1 Twctype_t) (r int32)
- func Yiswctype_l(tls *TLS, c Twint_t, t Twctype_t, l Tlocale_t) (r int32)
- func Yiswdigit(tls *TLS, wc Twint_t) (r int32)
- func Yiswdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswgraph(tls *TLS, wc Twint_t) (r int32)
- func Yiswgraph_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswlower(tls *TLS, wc Twint_t) (r int32)
- func Yiswlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswprint(tls *TLS, wc Twint_t) (r int32)
- func Yiswprint_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswpunct(tls *TLS, wc Twint_t) (r int32)
- func Yiswpunct_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswspace(tls *TLS, wc Twint_t) (r int32)
- func Yiswspace_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswupper(tls *TLS, wc Twint_t) (r int32)
- func Yiswupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yiswxdigit(tls *TLS, wc Twint_t) (r int32)
- func Yiswxdigit_l(tls *TLS, c Twint_t, l Tlocale_t) (r int32)
- func Yisxdigit(tls *TLS, c int32) (r int32)
- func Yisxdigit_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Yj0(tls *TLS, x float64) (r1 float64)
- func Yj0f(tls *TLS, x float32) (r1 float32)
- func Yj1(tls *TLS, x float64) (r1 float64)
- func Yj1f(tls *TLS, x float32) (r1 float32)
- func Yjn(tls *TLS, n int32, x float64) (r float64)
- func Yjnf(tls *TLS, n int32, x float32) (r float32)
- func Yjrand48(tls *TLS, s uintptr) (r int64)
- func Ykill(tls *TLS, pid Tpid_t, sig int32) (r int32)
- func Ykillpg(tls *TLS, pgid Tpid_t, sig int32) (r int32)
- func Yklogctl(tls *TLS, type1 int32, buf uintptr, len1 int32) (r int32)
- func Yl64a(tls *TLS, x0 int64) (r uintptr)
- func Ylabs(tls *TLS, a int64) (r int64)
- func Ylchmod(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Ylchown(tls *TLS, path uintptr, uid Tuid_t, gid Tgid_t) (r int32)
- func Ylckpwdf(tls *TLS) (r int32)
- func Ylcong48(tls *TLS, p uintptr)
- func Yldexp(tls *TLS, x float64, n int32) (r float64)
- func Yldexpf(tls *TLS, x float32, n int32) (r float32)
- func Yldexpl(tls *TLS, x float64, n int32) (r float64)
- func Ylfind(tls *TLS, key uintptr, base uintptr, nelp uintptr, width Tsize_t, ...) (r uintptr)
- func Ylgamma(tls *TLS, x float64) (r float64)
- func Ylgamma_r(tls *TLS, x float64, signgamp uintptr) (r float64)
- func Ylgammaf(tls *TLS, x float32) (r float32)
- func Ylgammaf_r(tls *TLS, x float32, signgamp uintptr) (r float32)
- func Ylgammal(tls *TLS, x float64) (r float64)
- func Ylgammal_r(tls *TLS, x float64, sg uintptr) (r float64)
- func Ylink(tls *TLS, existing uintptr, new1 uintptr) (r int32)
- func Ylinkat(tls *TLS, fd1 int32, existing uintptr, fd2 int32, new1 uintptr, flag int32) (r int32)
- func Ylisten(tls *TLS, fd int32, backlog int32) (r1 int32)
- func Yllabs(tls *TLS, a int64) (r int64)
- func Yllrint(tls *TLS, x float64) (r int64)
- func Yllrintf(tls *TLS, x float32) (r int64)
- func Yllrintl(tls *TLS, x float64) (r int64)
- func Yllround(tls *TLS, x float64) (r int64)
- func Yllroundf(tls *TLS, x float32) (r int64)
- func Yllroundl(tls *TLS, x float64) (r int64)
- func Ylocaleconv(tls *TLS) (r uintptr)
- func Ylocaltime(tls *TLS, t uintptr) (r uintptr)
- func Ylocaltime_r(tls *TLS, t uintptr, tm uintptr) (r uintptr)
- func Ylockf(tls *TLS, fd int32, op int32, size Toff_t) (r int32)
- func Ylog(tls *TLS, x1 float64) (r1 float64)
- func Ylog1p(tls *TLS, x3 float64) (r float64)
- func Ylog1pf(tls *TLS, x3 float32) (r float32)
- func Ylog1pl(tls *TLS, x float64) (r float64)
- func Ylog2(tls *TLS, x1 float64) (r1 float64)
- func Ylog2f(tls *TLS, x1 float32) (r1 float32)
- func Ylog2l(tls *TLS, x float64) (r float64)
- func Ylog10(tls *TLS, x float64) (r float64)
- func Ylog10f(tls *TLS, x float32) (r float32)
- func Ylog10l(tls *TLS, x float64) (r float64)
- func Ylogb(tls *TLS, x float64) (r float64)
- func Ylogbf(tls *TLS, x float32) (r float32)
- func Ylogbl(tls *TLS, x float64) (r float64)
- func Ylogf(tls *TLS, x1 float32) (r1 float32)
- func Ylogin_tty(tls *TLS, fd int32) (r int32)
- func Ylogl(tls *TLS, x float64) (r float64)
- func Ylongjmp(t *TLS, env uintptr, val int32)
- func Ylrand48(tls *TLS) (r int64)
- func Ylremovexattr(tls *TLS, path uintptr, name uintptr) (r int32)
- func Ylrint(tls *TLS, x float64) (r int64)
- func Ylrintf(tls *TLS, x float32) (r int64)
- func Ylrintl(tls *TLS, x float64) (r int64)
- func Ylround(tls *TLS, x float64) (r int64)
- func Ylroundf(tls *TLS, x float32) (r int64)
- func Ylroundl(tls *TLS, x float64) (r int64)
- func Ylsearch(tls *TLS, key uintptr, base uintptr, nelp uintptr, width Tsize_t, ...) (r uintptr)
- func Ylsetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t, flags int32) (r int32)
- func Ylstat(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Ylstat64(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Ylutimes(tls *TLS, filename uintptr, tv uintptr) (r int32)
- func Ymadvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func Ymalloc(tls *TLS, n Tsize_t) (r uintptr)
- func Ymblen(tls *TLS, s uintptr, n Tsize_t) (r int32)
- func Ymbsinit(tls *TLS, st uintptr) (r int32)
- func Ymbtowc(tls *TLS, wc uintptr, src uintptr, n Tsize_t) (r int32)
- func Ymemccpy(tls *TLS, dest uintptr, src uintptr, c int32, n Tsize_t) (r uintptr)
- func Ymemchr(tls *TLS, src uintptr, c int32, n Tsize_t) (r uintptr)
- func Ymemcmp(tls *TLS, vl uintptr, vr uintptr, n Tsize_t) (r1 int32)
- func Ymemcpy(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Ymemfd_create(tls *TLS, name uintptr, flags uint32) (r int32)
- func Ymemmem(tls *TLS, h0 uintptr, k Tsize_t, n0 uintptr, l Tsize_t) (r uintptr)
- func Ymemmove(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Ymempcpy(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r uintptr)
- func Ymemrchr(tls *TLS, m uintptr, c int32, n Tsize_t) (r uintptr)
- func Ymemset(tls *TLS, dest uintptr, c int32, n Tsize_t) (r uintptr)
- func Ymincore(tls *TLS, addr uintptr, len1 Tsize_t, vec uintptr) (r int32)
- func Ymkdir(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Ymkdirat(tls *TLS, fd int32, path uintptr, mode Tmode_t) (r int32)
- func Ymkdtemp(tls *TLS, template uintptr) (r uintptr)
- func Ymkfifo(tls *TLS, path uintptr, mode Tmode_t) (r int32)
- func Ymkfifoat(tls *TLS, fd int32, path uintptr, mode Tmode_t) (r int32)
- func Ymknod(tls *TLS, path uintptr, mode Tmode_t, dev Tdev_t) (r int32)
- func Ymknodat(tls *TLS, fd int32, path uintptr, mode Tmode_t, dev Tdev_t) (r int32)
- func Ymkostemp(tls *TLS, template uintptr, flags int32) (r int32)
- func Ymkostemps(tls *TLS, template uintptr, len1 int32, flags int32) (r int32)
- func Ymkstemp(tls *TLS, template uintptr) (r int32)
- func Ymkstemp64(tls *TLS, template uintptr) (r int32)
- func Ymkstemps(tls *TLS, template uintptr, len1 int32) (r int32)
- func Ymkstemps64(tls *TLS, template uintptr, len1 int32) (r int32)
- func Ymktemp(tls *TLS, template uintptr) (r uintptr)
- func Ymlock(tls *TLS, addr uintptr, len1 Tsize_t) (r int32)
- func Ymlock2(tls *TLS, addr uintptr, len1 Tsize_t, flags uint32) (r int32)
- func Ymlockall(tls *TLS, flags int32) (r int32)
- func Ymmap(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func Ymmap64(tls *TLS, start uintptr, len1 Tsize_t, prot int32, flags int32, fd int32, ...) (r uintptr)
- func Ymodf(tls *TLS, x float64, iptr uintptr) (r float64)
- func Ymodff(tls *TLS, x float32, iptr uintptr) (r float32)
- func Ymodfl(tls *TLS, x float64, iptr uintptr) (r1 float64)
- func Ymount(tls *TLS, special uintptr, dir uintptr, fstype uintptr, flags uint64, ...) (r int32)
- func Ymprotect(tls *TLS, addr uintptr, len1 Tsize_t, prot int32) (r int32)
- func Ymrand48(tls *TLS) (r int64)
- func Ymremap(tls *TLS, old_addr uintptr, old_len Tsize_t, new_len Tsize_t, flags int32, ...) (r uintptr)
- func Ymsgctl(tls *TLS, q int32, cmd int32, buf uintptr) (r1 int32)
- func Ymsgget(tls *TLS, k Tkey_t, flag int32) (r int32)
- func Ymsgsnd(tls *TLS, q int32, m uintptr, len1 Tsize_t, flag int32) (r int32)
- func Ymsync(tls *TLS, start uintptr, len1 Tsize_t, flags int32) (r int32)
- func Ymunlock(tls *TLS, addr uintptr, len1 Tsize_t) (r int32)
- func Ymunlockall(tls *TLS) (r int32)
- func Ymunmap(tls *TLS, start uintptr, len1 Tsize_t) (r int32)
- func Yname_to_handle_at(tls *TLS, dirfd int32, pathname uintptr, handle uintptr, mount_id uintptr, ...) (r int32)
- func Ynan(tls *TLS, s uintptr) (r float64)
- func Ynanf(tls *TLS, s uintptr) (r float32)
- func Ynanl(tls *TLS, s uintptr) (r float64)
- func Ynanosleep(tls *TLS, req uintptr, rem uintptr) (r int32)
- func Ynextafter(tls *TLS, x3 float64, y3 float64) (r float64)
- func Ynextafterf(tls *TLS, x3 float32, y3 float32) (r float32)
- func Ynextafterl(tls *TLS, x float64, y float64) (r float64)
- func Ynexttoward(tls *TLS, x float64, y float64) (r float64)
- func Ynexttowardf(tls *TLS, x3 float32, y3 float64) (r float32)
- func Ynexttowardl(tls *TLS, x float64, y float64) (r float64)
- func Ynftw(tls *TLS, path uintptr, __ccgo_fp_fn uintptr, fd_limit int32, flags int32) (r1 int32)
- func Yngettext(tls *TLS, msgid1 uintptr, msgid2 uintptr, n uint64) (r uintptr)
- func Ynice(tls *TLS, inc int32) (r int32)
- func Ynl_langinfo(tls *TLS, item Tnl_item) (r uintptr)
- func Ynl_langinfo_l(tls *TLS, item Tnl_item, loc Tlocale_t) (r uintptr)
- func Ynrand48(tls *TLS, s uintptr) (r int64)
- func Yns_get16(tls *TLS, cp uintptr) (r uint32)
- func Yns_get32(tls *TLS, cp uintptr) (r uint64)
- func Yns_initparse(tls *TLS, msg uintptr, msglen int32, handle uintptr) (r1 int32)
- func Yns_name_uncompress(tls *TLS, msg uintptr, eom uintptr, src uintptr, dst uintptr, dstsiz Tsize_t) (r1 int32)
- func Yns_parserr(tls *TLS, handle uintptr, section Tns_sect, rrnum int32, rr uintptr) (r1 int32)
- func Yns_put16(tls *TLS, s uint32, cp uintptr)
- func Yns_put32(tls *TLS, l uint64, cp uintptr)
- func Yns_skiprr(tls *TLS, ptr uintptr, eom uintptr, section Tns_sect, count int32) (r1 int32)
- func Yobstack_free(t *TLS, obstack, obj uintptr)
- func Yobstack_vprintf(t *TLS, obstack, template, va uintptr) (_2 int32)
- func Yopen(tls *TLS, filename uintptr, flags int32, va uintptr) (r int32)
- func Yopen64(tls *TLS, filename uintptr, flags int32, va uintptr) (r int32)
- func Yopen_by_handle_at(tls *TLS, mount_fd int32, handle uintptr, flags int32) (r int32)
- func Yopen_memstream(tls *TLS, bufp uintptr, sizep uintptr) (r uintptr)
- func Yopen_wmemstream(tls *TLS, bufp uintptr, sizep uintptr) (r uintptr)
- func Yopenat(tls *TLS, fd int32, filename uintptr, flags int32, va uintptr) (r int32)
- func Yopendir(tls *TLS, name uintptr) (r uintptr)
- func Yopenlog(tls *TLS, ident uintptr, opt int32, facility int32)
- func Yopenpty(tls *TLS, pm uintptr, ps uintptr, name uintptr, tio uintptr, ws uintptr) (r int32)
- func Ypathconf(tls *TLS, path uintptr, name int32) (r int64)
- func Ypause(tls *TLS) (r int32)
- func Ypclose(tls *TLS, f uintptr) (r1 int32)
- func Yperror(tls *TLS, msg uintptr)
- func Ypersonality(tls *TLS, persona uint64) (r int32)
- func Ypipe(tls *TLS, fd uintptr) (r int32)
- func Ypipe2(tls *TLS, fd uintptr, flag int32) (r int32)
- func Ypivot_root(tls *TLS, new1 uintptr, old uintptr) (r int32)
- func Ypoll(tls *TLS, fds uintptr, n Tnfds_t, timeout int32) (r int32)
- func Ypopen(t *TLS, command, type1 uintptr) (_2 uintptr)
- func Yposix_close(tls *TLS, fd int32, flags int32) (r int32)
- func Yposix_fadvise(tls *TLS, fd int32, base Toff_t, len1 Toff_t, advice int32) (r int32)
- func Yposix_fallocate(tls *TLS, fd int32, base Toff_t, len1 Toff_t) (r int32)
- func Yposix_madvise(tls *TLS, addr uintptr, len1 Tsize_t, advice int32) (r int32)
- func Yposix_openpt(tls *TLS, flags int32) (r1 int32)
- func Yposix_spawn_file_actions_addchdir_np(tls *TLS, fa uintptr, path uintptr) (r int32)
- func Yposix_spawn_file_actions_addclose(tls *TLS, fa uintptr, fd int32) (r int32)
- func Yposix_spawn_file_actions_adddup2(tls *TLS, fa uintptr, srcfd int32, fd int32) (r int32)
- func Yposix_spawn_file_actions_addfchdir_np(tls *TLS, fa uintptr, fd int32) (r int32)
- func Yposix_spawn_file_actions_addopen(tls *TLS, fa uintptr, fd int32, path uintptr, flags int32, mode Tmode_t) (r int32)
- func Yposix_spawn_file_actions_destroy(tls *TLS, fa uintptr) (r int32)
- func Yposix_spawn_file_actions_init(tls *TLS, fa uintptr) (r int32)
- func Yposix_spawnattr_destroy(tls *TLS, attr uintptr) (r int32)
- func Yposix_spawnattr_getflags(tls *TLS, attr uintptr, flags uintptr) (r int32)
- func Yposix_spawnattr_getpgroup(tls *TLS, attr uintptr, pgrp uintptr) (r int32)
- func Yposix_spawnattr_getschedparam(tls *TLS, attr uintptr, schedparam uintptr) (r int32)
- func Yposix_spawnattr_getschedpolicy(tls *TLS, attr uintptr, policy uintptr) (r int32)
- func Yposix_spawnattr_getsigdefault(tls *TLS, attr uintptr, def uintptr) (r int32)
- func Yposix_spawnattr_getsigmask(tls *TLS, attr uintptr, mask uintptr) (r int32)
- func Yposix_spawnattr_init(tls *TLS, attr uintptr) (r int32)
- func Yposix_spawnattr_setflags(tls *TLS, attr uintptr, flags int16) (r int32)
- func Yposix_spawnattr_setpgroup(tls *TLS, attr uintptr, pgrp Tpid_t) (r int32)
- func Yposix_spawnattr_setschedparam(tls *TLS, attr uintptr, schedparam uintptr) (r int32)
- func Yposix_spawnattr_setschedpolicy(tls *TLS, attr uintptr, policy int32) (r int32)
- func Yposix_spawnattr_setsigdefault(tls *TLS, attr uintptr, def uintptr) (r int32)
- func Yposix_spawnattr_setsigmask(tls *TLS, attr uintptr, mask uintptr) (r int32)
- func Ypow(tls *TLS, x1 float64, y1 float64) (r float64)
- func Ypow10(tls *TLS, x float64) (r float64)
- func Ypow10f(tls *TLS, x float32) (r float32)
- func Ypow10l(tls *TLS, x float64) (r float64)
- func Ypowf(tls *TLS, x1 float32, y1 float32) (r float32)
- func Ypowl(tls *TLS, x float64, y float64) (r float64)
- func Yppoll(tls *TLS, fds uintptr, n Tnfds_t, to uintptr, mask uintptr) (r int32)
- func Yprctl(tls *TLS, op int32, va uintptr) (r int32)
- func Yprintf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Yprlimit(tls *TLS, pid Tpid_t, resource int32, new_limit uintptr, old_limit uintptr) (r1 int32)
- func Ypselect(tls *TLS, n int32, rfds uintptr, wfds uintptr, efds uintptr, ts uintptr, ...) (r int32)
- func Ypsiginfo(tls *TLS, si uintptr, msg uintptr)
- func Ypsignal(tls *TLS, sig int32, msg uintptr)
- func Ypthread_atfork(tls *TLS, prepare, parent, child uintptr) (_2 int32)
- func Ypthread_attr_destroy(tls *TLS, a uintptr) (_2 int32)
- func Ypthread_attr_getdetachstate(tls *TLS, a uintptr, state uintptr) (_3 int32)
- func Ypthread_attr_init(tls *TLS, a uintptr) (_2 int32)
- func Ypthread_attr_setdetachstate(tls *TLS, a uintptr, state int32) (r int32)
- func Ypthread_attr_setscope(tls *TLS, a uintptr, scope int32) (_3 int32)
- func Ypthread_attr_setstacksize(tls *TLS, a uintptr, stacksite Tsize_t) (_3 int32)
- func Ypthread_cleanup_pop(tls *TLS, run int32)
- func Ypthread_cleanup_push(tls *TLS, f, x uintptr)
- func Ypthread_cond_broadcast(tls *TLS, c uintptr) (_2 int32)
- func Ypthread_cond_destroy(tls *TLS, c uintptr) (_2 int32)
- func Ypthread_cond_init(tls *TLS, c, a uintptr) (_2 int32)
- func Ypthread_cond_signal(tls *TLS, c uintptr) (_2 int32)
- func Ypthread_cond_timedwait(tls *TLS, c, m, ts uintptr) (r int32)
- func Ypthread_cond_wait(tls *TLS, c, m uintptr) (_2 int32)
- func Ypthread_create(tls *TLS, res, attrp, entry, arg uintptr) (_2 int32)
- func Ypthread_detach(tls *TLS, t uintptr) (_2 int32)
- func Ypthread_equal(tls *TLS, t, u uintptr) (_2 int32)
- func Ypthread_exit(tls *TLS, result uintptr)
- func Ypthread_getspecific(tls *TLS, k Tpthread_key_t) (_2 uintptr)
- func Ypthread_join(tls *TLS, t Tpthread_t, res uintptr) (r int32)
- func Ypthread_key_create(tls *TLS, k uintptr, dtor uintptr) (_3 int32)
- func Ypthread_key_delete(tls *TLS, k Tpthread_key_t) (_2 int32)
- func Ypthread_mutex_destroy(tls *TLS, m uintptr) (_2 int32)
- func Ypthread_mutex_init(tls *TLS, m, a uintptr) (_2 int32)
- func Ypthread_mutex_lock(tls *TLS, m uintptr) (_2 int32)
- func Ypthread_mutex_trylock(tls *TLS, m uintptr) (_2 int32)
- func Ypthread_mutex_unlock(tls *TLS, m uintptr) (_2 int32)
- func Ypthread_mutexattr_destroy(tls *TLS, a uintptr) (_2 int32)
- func Ypthread_mutexattr_init(tls *TLS, a uintptr) (_2 int32)
- func Ypthread_mutexattr_settype(tls *TLS, a uintptr, typ int32) (_3 int32)
- func Ypthread_self(tls *TLS) (_1 uintptr)
- func Ypthread_setcancelstate(tls *TLS, new int32, old uintptr) (_3 int32)
- func Ypthread_setspecific(tls *TLS, k Tpthread_key_t, x uintptr) (_3 int32)
- func Ypthread_sigmask(tls *TLS, now int32, set, old uintptr) (_3 int32)
- func Yptrace(tls *TLS, req int32, va uintptr) (r int64)
- func Yptsname(tls *TLS, fd int32) (r uintptr)
- func Yptsname_r(tls *TLS, fd int32, buf uintptr, len1 Tsize_t) (r int32)
- func Yputc(tls *TLS, c1 int32, f1 uintptr) (r int32)
- func Yputc_unlocked(tls *TLS, c int32, f uintptr) (r int32)
- func Yputchar(tls *TLS, c1 int32) (r int32)
- func Yputchar_unlocked(tls *TLS, c int32) (r int32)
- func Yputenv(tls *TLS, s uintptr) (r int32)
- func Yputgrent(tls *TLS, gr uintptr, f uintptr) (r1 int32)
- func Yputpwent(tls *TLS, pw uintptr, f uintptr) (r int32)
- func Yputs(tls *TLS, s uintptr) (r1 int32)
- func Yputspent(tls *TLS, sp uintptr, f uintptr) (r int32)
- func Ypututline(tls *TLS, ut uintptr) (r uintptr)
- func Ypututxline(tls *TLS, ut uintptr) (r uintptr)
- func Yputw(tls *TLS, _x int32, f uintptr) (r int32)
- func Yqsort(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun)
- func Yqsort_r(tls *TLS, base uintptr, nel Tsize_t, width Tsize_t, __ccgo_fp_cmp Tcmpfun, ...)
- func Yquick_exit(tls *TLS, code int32)
- func Yquotactl(tls *TLS, cmd int32, special uintptr, id int32, addr uintptr) (r int32)
- func Yraise(tls *TLS, sig int32) (r int32)
- func Yrand(tls *TLS) (r int32)
- func Yrand_r(tls *TLS, seed uintptr) (r int32)
- func Yrandom(tls *TLS) (r int64)
- func Yrandom_r(t *TLS, buf, result uintptr) (_2 int32)
- func Yreaddir(tls *TLS, dir uintptr) (r uintptr)
- func Yreaddir64(tls *TLS, dir uintptr) (r uintptr)
- func Yreaddir_r(tls *TLS, dir uintptr, buf uintptr, result uintptr) (r int32)
- func Yrealloc(tls *TLS, p uintptr, n Tsize_t) (r uintptr)
- func Yreallocarray(tls *TLS, ptr uintptr, m Tsize_t, n Tsize_t) (r uintptr)
- func Yrealpath(tls *TLS, filename uintptr, resolved uintptr) (r uintptr)
- func Yreboot(tls *TLS, type1 int32) (r int32)
- func Yrecvmmsg(tls *TLS, fd int32, msgvec uintptr, vlen uint32, flags uint32, timeout uintptr) (r int32)
- func Yregcomp(tls *TLS, preg uintptr, regex uintptr, cflags int32) (r int32)
- func Yregexec(tls *TLS, preg uintptr, string1 uintptr, nmatch Tsize_t, pmatch uintptr, ...) (r int32)
- func Yregfree(tls *TLS, preg uintptr)
- func Yremainder(tls *TLS, x float64, y float64) (r float64)
- func Yremainderf(tls *TLS, x float32, y float32) (r float32)
- func Yremainderl(tls *TLS, x float64, y float64) (r float64)
- func Yremap_file_pages(tls *TLS, addr uintptr, size Tsize_t, prot int32, pgoff Tsize_t, flags int32) (r int32)
- func Yremove(tls *TLS, path uintptr) (r1 int32)
- func Yremovexattr(tls *TLS, path uintptr, name uintptr) (r int32)
- func Yremque(tls *TLS, element uintptr)
- func Yremquo(tls *TLS, x float64, y float64, quo uintptr) (r float64)
- func Yremquof(tls *TLS, x float32, y float32, quo uintptr) (r float32)
- func Yremquol(tls *TLS, x float64, y float64, quo uintptr) (r float64)
- func Yrename(tls *TLS, old uintptr, new1 uintptr) (r int32)
- func Yrenameat(tls *TLS, oldfd int32, old uintptr, newfd int32, new1 uintptr) (r int32)
- func Yrenameat2(t *TLS, olddirfd int32, oldpath uintptr, newdirfd int32, newpath uintptr, ...) (_6 int32)
- func Yres_init(tls *TLS) (r int32)
- func Yres_mkquery(tls *TLS, op int32, dname uintptr, class int32, type1 int32, data uintptr, ...) (r int32)
- func Yres_send(tls *TLS, _msg uintptr, _msglen int32, _answer uintptr, _anslen int32) (r int32)
- func Yrewind(tls *TLS, f uintptr)
- func Yrewinddir(tls *TLS, dir uintptr)
- func Yrindex(tls *TLS, s uintptr, c int32) (r uintptr)
- func Yrint(tls *TLS, x float64) (r float64)
- func Yrintf(tls *TLS, x float32) (r float32)
- func Yrintl(tls *TLS, x float64) (r float64)
- func Yrmdir(tls *TLS, path uintptr) (r int32)
- func Yround(tls *TLS, x3 float64) (r float64)
- func Yroundf(tls *TLS, x3 float32) (r float32)
- func Yroundl(tls *TLS, x float64) (r float64)
- func Ysbrk(tls *TLS, inc Tintptr_t) (r uintptr)
- func Yscalb(tls *TLS, x float64, fn float64) (r float64)
- func Yscalbf(tls *TLS, x float32, fn float32) (r float32)
- func Yscalbln(tls *TLS, x float64, n int64) (r float64)
- func Yscalblnf(tls *TLS, x float32, n int64) (r float32)
- func Yscalblnl(tls *TLS, x float64, n int64) (r float64)
- func Yscalbn(tls *TLS, x float64, n int32) (r float64)
- func Yscalbnf(tls *TLS, x float32, n int32) (r float32)
- func Yscalbnl(tls *TLS, x float64, n int32) (r float64)
- func Yscandir(tls *TLS, path uintptr, res uintptr, __ccgo_fp_sel uintptr, ...) (r int32)
- func Yscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Ysched_yield(tls *TLS) (_1 int32)
- func Ysecure_getenv(tls *TLS, name uintptr) (r uintptr)
- func Yseed48(tls *TLS, s uintptr) (r uintptr)
- func Yseekdir(tls *TLS, dir uintptr, off int64)
- func Yselect(tls *TLS, n int32, rfds uintptr, wfds uintptr, efds uintptr, tv uintptr) (r int32)
- func Ysemctl(tls *TLS, id int32, num int32, cmd int32, va uintptr) (r1 int32)
- func Ysemget(tls *TLS, key Tkey_t, n int32, fl int32) (r int32)
- func Ysemop(tls *TLS, id int32, buf uintptr, n Tsize_t) (r int32)
- func Ysemtimedop(tls *TLS, id int32, buf uintptr, n Tsize_t, ts uintptr) (r int32)
- func Ysendmmsg(tls *TLS, fd int32, msgvec uintptr, vlen uint32, flags uint32) (r1 int32)
- func Ysetbuf(tls *TLS, f uintptr, buf uintptr)
- func Ysetbuffer(tls *TLS, f uintptr, buf uintptr, size Tsize_t)
- func Ysetdomainname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Ysetenv(tls *TLS, var1 uintptr, value uintptr, overwrite int32) (r int32)
- func Ysetfsgid(tls *TLS, gid Tgid_t) (r int32)
- func Ysetfsuid(tls *TLS, uid Tuid_t) (r int32)
- func Ysetgid(tls *TLS, gid Tgid_t) (r int32)
- func Ysetgrent(tls *TLS)
- func Ysethostent(tls *TLS, x int32)
- func Ysethostname(tls *TLS, name uintptr, len1 Tsize_t) (r int32)
- func Ysetitimer(tls *TLS, which int32, new1 uintptr, old uintptr) (r1 int32)
- func Ysetjmp(t *TLS, env uintptr) (_2 int32)
- func Ysetkey(tls *TLS, key uintptr)
- func Ysetlinebuf(tls *TLS, f uintptr)
- func Ysetlocale(tls *TLS, cat int32, name uintptr) (r uintptr)
- func Ysetlogmask(tls *TLS, maskpri int32) (r int32)
- func Ysetmntent(tls *TLS, name uintptr, mode uintptr) (r uintptr)
- func Ysetnetent(tls *TLS, x int32)
- func Ysetns(tls *TLS, fd int32, nstype int32) (r int32)
- func Ysetpgid(tls *TLS, pid Tpid_t, pgid Tpid_t) (r int32)
- func Ysetpriority(tls *TLS, which int32, who Tid_t, prio int32) (r int32)
- func Ysetprotoent(tls *TLS, stayopen int32)
- func Ysetpwent(tls *TLS)
- func Ysetrlimit(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Ysetrlimit64(tls *TLS, resource int32, rlim uintptr) (r int32)
- func Ysetservent(tls *TLS, stayopen int32)
- func Ysetsockopt(tls *TLS, fd int32, level int32, optname int32, optval uintptr, ...) (r2 int32)
- func Ysetspent(tls *TLS)
- func Ysetstate(tls *TLS, state uintptr) (r uintptr)
- func Ysettimeofday(tls *TLS, tv uintptr, tz uintptr) (r int32)
- func Ysetuid(tls *TLS, uid Tuid_t) (r int32)
- func Ysetusershell(tls *TLS)
- func Ysetutent(tls *TLS)
- func Ysetutxent(tls *TLS)
- func Ysetvbuf(tls *TLS, f uintptr, buf uintptr, type1 int32, size Tsize_t) (r int32)
- func Ysetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t, flags int32) (r int32)
- func Yshm_open(tls *TLS, name uintptr, flag int32, mode Tmode_t) (r int32)
- func Yshm_unlink(tls *TLS, name uintptr) (r int32)
- func Yshmat(tls *TLS, id int32, addr uintptr, flag int32) (r uintptr)
- func Yshmctl(tls *TLS, id int32, cmd int32, buf uintptr) (r1 int32)
- func Yshmdt(tls *TLS, addr uintptr) (r int32)
- func Yshmget(tls *TLS, key Tkey_t, size Tsize_t, flag int32) (r int32)
- func Yshutdown(tls *TLS, fd int32, how int32) (r1 int32)
- func Ysigaction(tls *TLS, sig int32, sa uintptr, old uintptr) (r int32)
- func Ysigaddset(tls *TLS, set uintptr, sig int32) (r int32)
- func Ysigaltstack(tls *TLS, ss uintptr, old uintptr) (r int32)
- func Ysigandset(tls *TLS, dest uintptr, left uintptr, right uintptr) (r1 int32)
- func Ysigdelset(tls *TLS, set uintptr, sig int32) (r int32)
- func Ysigemptyset(tls *TLS, set uintptr) (r int32)
- func Ysigfillset(tls *TLS, set uintptr) (r int32)
- func Ysigisemptyset(tls *TLS, set uintptr) (r int32)
- func Ysigismember(tls *TLS, set uintptr, sig int32) (r int32)
- func Ysignal(tls *TLS, signum int32, handler uintptr) (r uintptr)
- func Ysignalfd(tls *TLS, fd int32, sigs uintptr, flags int32) (r int32)
- func Ysignificand(tls *TLS, x float64) (r float64)
- func Ysignificandf(tls *TLS, x float32) (r float32)
- func Ysigorset(tls *TLS, dest uintptr, left uintptr, right uintptr) (r1 int32)
- func Ysigpending(tls *TLS, set uintptr) (r int32)
- func Ysigprocmask(tls *TLS, how int32, set uintptr, old uintptr) (r1 int32)
- func Ysigqueue(tls *TLS, pid Tpid_t, sig int32, value Tsigval) (r1 int32)
- func Ysigsuspend(tls *TLS, mask uintptr) (r int32)
- func Ysigtimedwait(tls *TLS, mask uintptr, si uintptr, timeout uintptr) (r int32)
- func Ysigwait(tls *TLS, mask uintptr, sig uintptr) (r int32)
- func Ysigwaitinfo(tls *TLS, mask uintptr, si uintptr) (r int32)
- func Ysin(tls *TLS, x3 float64) (r float64)
- func Ysincos(tls *TLS, x3 float64, sin uintptr, cos uintptr)
- func Ysincosf(tls *TLS, x3 float32, sin uintptr, cos uintptr)
- func Ysincosl(tls *TLS, x float64, sin uintptr, cos uintptr)
- func Ysinf(tls *TLS, x3 float32) (r float32)
- func Ysinh(tls *TLS, x float64) (r float64)
- func Ysinhf(tls *TLS, x float32) (r float32)
- func Ysinhl(tls *TLS, x float64) (r float64)
- func Ysinl(tls *TLS, x float64) (r float64)
- func Ysleep(tls *TLS, seconds uint32) (r uint32)
- func Ysnprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r int32)
- func Ysockatmark(tls *TLS, s int32) (r int32)
- func Ysocket(tls *TLS, domain int32, type1 int32, protocol int32) (r1 int32)
- func Ysocketpair(tls *TLS, domain int32, type1 int32, protocol int32, fd uintptr) (r2 int32)
- func Ysprintf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Ysqrt(tls *TLS, x1 float64) (r1 float64)
- func Ysqrtf(tls *TLS, x1 float32) (r1 float32)
- func Ysqrtl(tls *TLS, x float64) (r float64)
- func Ysrand(tls *TLS, s uint32)
- func Ysrand48(tls *TLS, seed int64)
- func Ysrandom(tls *TLS, seed uint32)
- func Ysscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Ystat(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Ystat64(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Ystatvfs(tls *TLS, path uintptr, buf uintptr) (r int32)
- func Ystatx(tls *TLS, dirfd int32, path uintptr, flags int32, mask uint32, stx uintptr) (r int32)
- func Ystime(tls *TLS, t uintptr) (r int32)
- func Ystpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Ystpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ystrcasecmp(tls *TLS, _l uintptr, _r uintptr) (r1 int32)
- func Ystrcasecmp_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Ystrcasestr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Ystrcat(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Ystrchr(tls *TLS, s uintptr, c int32) (r1 uintptr)
- func Ystrchrnul(tls *TLS, s uintptr, c int32) (r uintptr)
- func Ystrcmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Ystrcoll(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Ystrcoll_l(tls *TLS, l uintptr, r uintptr, loc Tlocale_t) (r1 int32)
- func Ystrcpy(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Ystrdup(tls *TLS, s uintptr) (r uintptr)
- func Ystrerror(tls *TLS, e int32) (r uintptr)
- func Ystrerror_l(tls *TLS, e int32, loc Tlocale_t) (r uintptr)
- func Ystrerror_r(tls *TLS, err int32, buf uintptr, buflen Tsize_t) (r int32)
- func Ystrncasecmp(tls *TLS, _l uintptr, _r uintptr, n Tsize_t) (r1 int32)
- func Ystrncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, loc Tlocale_t) (r1 int32)
- func Ystrncat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ystrncmp(tls *TLS, _l uintptr, _r uintptr, n Tsize_t) (r1 int32)
- func Ystrncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ystrndup(tls *TLS, s uintptr, n Tsize_t) (r uintptr)
- func Ystrpbrk(tls *TLS, s uintptr, b uintptr) (r uintptr)
- func Ystrptime(tls *TLS, s uintptr, f uintptr, tm uintptr) (r uintptr)
- func Ystrrchr(tls *TLS, s uintptr, c int32) (r uintptr)
- func Ystrsep(tls *TLS, str uintptr, sep uintptr) (r uintptr)
- func Ystrsignal(tls *TLS, signum int32) (r uintptr)
- func Ystrstr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Ystrtod(tls *TLS, s uintptr, p uintptr) (r float64)
- func Ystrtod_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Ystrtof(tls *TLS, s uintptr, p uintptr) (r float32)
- func Ystrtof_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float32)
- func Ystrtok(tls *TLS, s uintptr, sep uintptr) (r uintptr)
- func Ystrtok_r(tls *TLS, s uintptr, sep uintptr, p uintptr) (r uintptr)
- func Ystrtol(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Ystrtold(tls *TLS, s uintptr, p uintptr) (r float64)
- func Ystrtold_l(tls *TLS, s uintptr, p uintptr, l Tlocale_t) (r float64)
- func Ystrtoll(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Ystrtoul(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Ystrtoull(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Ystrverscmp(tls *TLS, l0 uintptr, r0 uintptr) (r1 int32)
- func Yswab(tls *TLS, _src uintptr, _dest uintptr, n Tssize_t)
- func Yswapoff(tls *TLS, path uintptr) (r int32)
- func Yswapon(tls *TLS, path uintptr, flags int32) (r int32)
- func Yswprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r int32)
- func Yswscanf(tls *TLS, s uintptr, fmt uintptr, va uintptr) (r int32)
- func Ysymlink(tls *TLS, existing uintptr, new1 uintptr) (r int32)
- func Ysymlinkat(tls *TLS, existing uintptr, fd int32, new1 uintptr) (r int32)
- func Ysync(tls *TLS)
- func Ysync_file_range(tls *TLS, fd int32, pos Toff_t, len1 Toff_t, flags uint32) (r int32)
- func Ysyncfs(tls *TLS, fd int32) (r int32)
- func Ysyscall(tls *TLS, n int64, va uintptr) (r int64)
- func Ysysconf(tls *TLS, name int32) (r int64)
- func Ysysctlbyname(t *TLS, name, oldp, oldlenp, newp uintptr, newlen Tsize_t) (_3 int32)
- func Ysysinfo(tls *TLS, info uintptr) (r int32)
- func Ysyslog(tls *TLS, priority int32, message uintptr, va uintptr)
- func Ysystem(t *TLS, command uintptr) (_2 int32)
- func Ytan(tls *TLS, x3 float64) (r float64)
- func Ytanf(tls *TLS, x3 float32) (r float32)
- func Ytanh(tls *TLS, x3 float64) (r float64)
- func Ytanhf(tls *TLS, x3 float32) (r float32)
- func Ytanhl(tls *TLS, x float64) (r float64)
- func Ytanl(tls *TLS, x float64) (r float64)
- func Ytcdrain(tls *TLS, fd int32) (r int32)
- func Ytcflow(tls *TLS, fd int32, action int32) (r int32)
- func Ytcflush(tls *TLS, fd int32, queue int32) (r int32)
- func Ytcgetattr(tls *TLS, fd int32, tio uintptr) (r int32)
- func Ytcgetwinsize(tls *TLS, fd int32, wsz uintptr) (r int32)
- func Ytcsendbreak(tls *TLS, fd int32, dur int32) (r int32)
- func Ytcsetattr(tls *TLS, fd int32, act int32, tio uintptr) (r int32)
- func Ytcsetpgrp(tls *TLS, fd int32, pgrp Tpid_t) (r int32)
- func Ytcsetwinsize(tls *TLS, fd int32, wsz uintptr) (r int32)
- func Ytdelete(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r uintptr)
- func Ytdestroy(tls *TLS, root uintptr, __ccgo_fp_freekey uintptr)
- func Ytelldir(tls *TLS, dir uintptr) (r int64)
- func Ytempnam(tls *TLS, dir uintptr, pfx uintptr) (r1 uintptr)
- func Ytextdomain(tls *TLS, domainname uintptr) (r uintptr)
- func Ytfind(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r uintptr)
- func Ytgamma(tls *TLS, x3 float64) (r1 float64)
- func Ytgammaf(tls *TLS, x float32) (r float32)
- func Ytgammal(tls *TLS, x float64) (r float64)
- func Ytimer_delete(tls *TLS, t Ttimer_t) (r int32)
- func Ytimer_getoverrun(tls *TLS, t Ttimer_t) (r int32)
- func Ytimer_gettime(tls *TLS, t Ttimer_t, val uintptr) (r int32)
- func Ytimer_settime(tls *TLS, t Ttimer_t, flags int32, val uintptr, old uintptr) (r int32)
- func Ytimerfd_create(tls *TLS, clockid int32, flags int32) (r int32)
- func Ytimerfd_gettime(tls *TLS, fd int32, cur uintptr) (r int32)
- func Ytimerfd_settime(tls *TLS, fd int32, flags int32, new1 uintptr, old uintptr) (r int32)
- func Ytimespec_get(tls *TLS, ts uintptr, base int32) (r int32)
- func Ytmpfile(tls *TLS) (r uintptr)
- func Ytmpnam(tls *TLS, buf uintptr) (r1 uintptr)
- func Ytoascii(tls *TLS, c int32) (r int32)
- func Ytolower(tls *TLS, c int32) (r int32)
- func Ytolower_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Ytoupper(tls *TLS, c int32) (r int32)
- func Ytoupper_l(tls *TLS, c int32, l Tlocale_t) (r int32)
- func Ytrunc(tls *TLS, x3 float64) (r float64)
- func Ytruncate(tls *TLS, path uintptr, length Toff_t) (r int32)
- func Ytruncf(tls *TLS, x3 float32) (r float32)
- func Ytruncl(tls *TLS, x float64) (r float64)
- func Ytsearch(tls *TLS, key uintptr, rootp uintptr, __ccgo_fp_cmp uintptr) (r1 uintptr)
- func Yttyname(tls *TLS, fd int32) (r uintptr)
- func Yttyname_r(tls *TLS, fd int32, name uintptr, size Tsize_t) (r int32)
- func Ytwalk(tls *TLS, root uintptr, __ccgo_fp_action uintptr)
- func Ytzset(tls *TLS)
- func Yualarm(tls *TLS, value uint32, interval uint32) (r uint32)
- func Yulckpwdf(tls *TLS) (r int32)
- func Yulimit(tls *TLS, cmd int32, va uintptr) (r int64)
- func Yumount(tls *TLS, special uintptr) (r int32)
- func Yumount2(tls *TLS, special uintptr, flags int32) (r int32)
- func Yuname(tls *TLS, uts uintptr) (r int32)
- func Yungetc(tls *TLS, c int32, f uintptr) (r int32)
- func Yunlink(tls *TLS, path uintptr) (r int32)
- func Yunlinkat(tls *TLS, fd int32, path uintptr, flag int32) (r int32)
- func Yunlockpt(tls *TLS, fd int32) (r int32)
- func Yunsetenv(tls *TLS, name uintptr) (r int32)
- func Yunshare(tls *TLS, flags int32) (r int32)
- func Yupdwtmp(tls *TLS, f uintptr, u uintptr)
- func Yupdwtmpx(tls *TLS, f uintptr, u uintptr)
- func Yusleep(tls *TLS, useconds uint32) (r int32)
- func Yutime(tls *TLS, path uintptr, times uintptr) (r int32)
- func Yutimensat(tls *TLS, fd int32, path uintptr, times uintptr, flags int32) (r1 int32)
- func Yutimes(tls *TLS, path uintptr, times uintptr) (r int32)
- func Yuuid_copy(t *TLS, dst, src uintptr)
- func Yuuid_generate_random(t *TLS, out uintptr)
- func Yuuid_parse(t *TLS, in uintptr, uu uintptr) (_3 int32)
- func Yuuid_unparse(t *TLS, uu, out uintptr)
- func Yvasprintf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvdprintf(tls *TLS, fd int32, fmt uintptr, ap Tva_list) (r int32)
- func Yverr(tls *TLS, status int32, fmt uintptr, ap Tva_list)
- func Yverrx(tls *TLS, status int32, fmt uintptr, ap Tva_list)
- func Yversionsort(tls *TLS, a uintptr, b uintptr) (r int32)
- func Yvfprintf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvfscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvfwprintf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvfwscanf(tls *TLS, f uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvhangup(tls *TLS) (r int32)
- func Yvprintf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Yvscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Yvsnprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, ap Tva_list) (r int32)
- func Yvsprintf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvsscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvswprintf(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, ap Tva_list) (r1 int32)
- func Yvswscanf(tls *TLS, s uintptr, fmt uintptr, ap Tva_list) (r int32)
- func Yvwarn(tls *TLS, fmt uintptr, ap Tva_list)
- func Yvwarnx(tls *TLS, fmt uintptr, ap Tva_list)
- func Yvwprintf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Yvwscanf(tls *TLS, fmt uintptr, ap Tva_list) (r int32)
- func Ywaitid(tls *TLS, type1 Tidtype_t, id Tid_t, info uintptr, options int32) (r int32)
- func Ywarn(tls *TLS, fmt uintptr, va uintptr)
- func Ywarnx(tls *TLS, fmt uintptr, va uintptr)
- func Ywcpcpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Ywcpncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ywcscasecmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Ywcscasecmp_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func Ywcscat(tls *TLS, dest uintptr, src uintptr) (r uintptr)
- func Ywcschr(tls *TLS, s uintptr, c Twchar_t) (r uintptr)
- func Ywcscmp(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Ywcscoll(tls *TLS, l uintptr, r uintptr) (r1 int32)
- func Ywcscoll_l(tls *TLS, l uintptr, r uintptr, locale Tlocale_t) (r1 int32)
- func Ywcscpy(tls *TLS, d uintptr, s uintptr) (r uintptr)
- func Ywcsdup(tls *TLS, s uintptr) (r uintptr)
- func Ywcsncasecmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Ywcsncasecmp_l(tls *TLS, l uintptr, r uintptr, n Tsize_t, locale Tlocale_t) (r1 int32)
- func Ywcsncat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ywcsncmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Ywcsncpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ywcspbrk(tls *TLS, s uintptr, b uintptr) (r uintptr)
- func Ywcsrchr(tls *TLS, s uintptr, c Twchar_t) (r uintptr)
- func Ywcsstr(tls *TLS, h uintptr, n uintptr) (r uintptr)
- func Ywcstod(tls *TLS, s uintptr, p uintptr) (r float64)
- func Ywcstof(tls *TLS, s uintptr, p uintptr) (r float32)
- func Ywcstok(tls *TLS, s uintptr, sep uintptr, p uintptr) (r uintptr)
- func Ywcstol(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Ywcstold(tls *TLS, s uintptr, p uintptr) (r float64)
- func Ywcstoll(tls *TLS, s uintptr, p uintptr, base int32) (r int64)
- func Ywcstoul(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Ywcstoull(tls *TLS, s uintptr, p uintptr, base int32) (r uint64)
- func Ywcswcs(tls *TLS, haystack uintptr, needle uintptr) (r uintptr)
- func Ywcswidth(tls *TLS, wcs uintptr, n Tsize_t) (r int32)
- func Ywctob(tls *TLS, c Twint_t) (r int32)
- func Ywctomb(tls *TLS, s uintptr, wc Twchar_t) (r int32)
- func Ywcwidth(tls *TLS, wc Twchar_t) (r int32)
- func Ywmemchr(tls *TLS, s uintptr, c Twchar_t, n Tsize_t) (r uintptr)
- func Ywmemcmp(tls *TLS, l uintptr, r uintptr, n Tsize_t) (r1 int32)
- func Ywmemcpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ywmemmove(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r uintptr)
- func Ywmemset(tls *TLS, d uintptr, c Twchar_t, n Tsize_t) (r uintptr)
- func Ywprintf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Ywscanf(tls *TLS, fmt uintptr, va uintptr) (r int32)
- func Yy0(tls *TLS, x float64) (r float64)
- func Yy0f(tls *TLS, x float32) (r float32)
- func Yy1(tls *TLS, x float64) (r float64)
- func Yy1f(tls *TLS, x float32) (r float32)
- func Yyn(tls *TLS, n int32, x float64) (r float64)
- func Yynf(tls *TLS, n int32, x float32) (r float32)
- type DIR
- type FILE
- type HEADER
- type Int128
- func Int128FromFloat32(n float32) Int128
- func Int128FromFloat64(n float64) Int128
- func Int128FromInt8(n int8) Int128
- func Int128FromInt16(n int16) Int128
- func Int128FromInt32(n int32) Int128
- func Int128FromInt64(n int64) Int128
- func Int128FromUint8(n uint8) Int128
- func Int128FromUint16(n uint16) Int128
- func Int128FromUint32(n uint32) Int128
- func Int128FromUint64(n uint64) Int128
- func Int128FromUint128(n Uint128) Int128
- func (n Int128) Add(m Int128) (r Int128)
- func (n Int128) And(v Int128) Int128
- func (n Int128) Cmp(y Int128) int
- func (n Int128) Float32() float32
- func (n Int128) Float64() float64
- func (n Int128) Int8() int8
- func (n Int128) Int16() int16
- func (n Int128) Int32() int32
- func (n Int128) Int64() int64
- func (n *Int128) LValueDec()
- func (n *Int128) LValueInc()
- func (n *Int128) LValueShl(c int32)
- func (n *Int128) LValueShr(c int32)
- func (n Int128) Mul(m Int128) Int128
- func (n Int128) Neg() Int128
- func (n Int128) Or(v Int128) Int128
- func (n Int128) Shl(c int32) (r Int128)
- func (n Int128) Shr(c int32) (r Int128)
- func (n Int128) Uint8() uint8
- func (n Int128) Uint16() uint16
- func (n Int128) Uint32() uint32
- func (n Int128) Uint64() uint64
- func (n Int128) Uint128() (r Uint128)
- func (n Int128) Xor(v Int128) Int128
- type LongjmpRetval
- type MemAllocatorStat
- type MemAuditError
- type PerfCounter
- type RawMem
- type RawMem64
- type StackCapture
- type TACTION
- type TBF_ctx
- type TBF_key
- type TBF_word
- type TBF_word_signed
- type TDIR
- type TENTRY
- type TElf32_Addr
- type TElf32_Chdr
- type TElf32_Conflict
- type TElf32_Dyn
- type TElf32_Ehdr
- type TElf32_Half
- type TElf32_Lib
- type TElf32_Move
- type TElf32_Nhdr
- type TElf32_Off
- type TElf32_Phdr
- type TElf32_RegInfo
- type TElf32_Rel
- type TElf32_Rela
- type TElf32_Relr
- type TElf32_Section
- type TElf32_Shdr
- type TElf32_Sword
- type TElf32_Sxword
- type TElf32_Sym
- type TElf32_Syminfo
- type TElf32_Verdaux
- type TElf32_Verdef
- type TElf32_Vernaux
- type TElf32_Verneed
- type TElf32_Versym
- type TElf32_Word
- type TElf32_Xword
- type TElf32_auxv_t
- type TElf32_gptab
- type TElf64_Addr
- type TElf64_Chdr
- type TElf64_Dyn
- type TElf64_Ehdr
- type TElf64_Half
- type TElf64_Lib
- type TElf64_Move
- type TElf64_Nhdr
- type TElf64_Off
- type TElf64_Phdr
- type TElf64_Rel
- type TElf64_Rela
- type TElf64_Relr
- type TElf64_Section
- type TElf64_Shdr
- type TElf64_Sword
- type TElf64_Sxword
- type TElf64_Sym
- type TElf64_Syminfo
- type TElf64_Verdaux
- type TElf64_Verdef
- type TElf64_Vernaux
- type TElf64_Verneed
- type TElf64_Versym
- type TElf64_Word
- type TElf64_Xword
- type TElf64_auxv_t
- type TElf_MIPS_ABIFlags_v0
- type TElf_Options
- type TElf_Options_Hw
- type TElf_Symndx
- type TFILE
- type TFTW
- type THEADER
- type TLS
- func (tls *TLS) Alloc(n0 int) (r uintptr)
- func (tls *TLS) AllocaEntry()
- func (tls *TLS) AllocaExit()
- func (tls *TLS) Close()
- func (tls *TLS) Free(n int)
- func (tls *TLS) Longjmp(jb uintptr, val int32)
- func (tls *TLS) PopJumpBuffer(jb uintptr)
- func (tls *TLS) PushJumpBuffer(jb uintptr)
- func (tls *TLS) StackSlots() int
- func (tls *TLS) String() string
- type TVISIT
- type TWT
- type T_G_fpos64_t
- type T_IO_FILE
- type T_IO_cookie_io_functions_t
- type T_fpstate
- type T_ns_flagdata
- type Taddress
- type Taddrinfo
- type Taibuf
- type Targ
- type Tarpd_request
- type Tarphdr
- type Tarpreq
- type Tarpreq_old
- type Tbandinfo
- type Tbinding
- type Tblkcnt_t
- type Tblksize_t
- type Tcc_t
- type Tchar16_t
- type Tchar32_t
- type Tclock_t
- type Tclockid_t
- type Tcmpfun
- type Tcmsghdr
- type Tcompiler_defines_long_double_incorrectly
- type Tcookie
- type Tcookie1
- type Tcookie2
- type Tcookie3
- type Tcookie4
- type Tcookie_FILE
- type Tcookie_io_functions_t
- type Tcpu_set_t
- type Tcrypt_data
- type Tctx
- type Tctx1
- type Tctx2
- type Tdev_t
- type Tdirent
- type Tdirstream_buf_alignment_check
- type Tdiv_t
- type Tdl_phdr_info
- type Tdouble_t
- type Tdpc_ctx
- type Tdqblk
- type Tdqinfo
- type Tentry
- type Tepoll_data
- type Tepoll_data_t
- type Tepoll_event
- type Terrmsgstr_t
- type Tether_addr
- type Tether_arp
- type Tether_header
- type Tethhdr
- type Teventfd_t
- type Texp2f_data
- type Texp_data
- type Texpanded_key
- type Tf_owner_ex
- type Tfanotify_event_info_fid
- type Tfanotify_event_info_header
- type Tfanotify_event_metadata
- type Tfanotify_response
- type Tfcookie
- type Tfd_mask
- type Tfd_set
- type Tfdop
- type Tfenv_t
- type Tfexcept_t
- type Tfile_handle
- type Tfloat_t
- type Tflock
- type Tfpos_t
- type Tfpregset_t
- type Tfsblkcnt_t
- type Tfsfilcnt_t
- type Tfsid_t
- type Tgid_t
- type Tglob_t
- type Tgreg_t
- type Tgregset_t
- type Tgroup
- type Tgroup_filter
- type Tgroup_req
- type Tgroup_source_req
- type Thistory
- type Thostent
- type Thsearch_data
- type Ticonv_t
- type Tid_t
- type Tidtype_t
- type Tif_nameindex
- type Tifaddr
- type Tifaddrmsg
- type Tifaddrs
- type Tifaddrs_ctx
- type Tifaddrs_storage
- type Tifconf
- type Tifinfomsg
- type Tifmap
- type Tifnameindexctx
- type Tifnamemap
- type Tifreq
- type Timaxdiv_t
- type Tin6_addr
- type Tin6_pktinfo
- type Tin_addr
- type Tin_addr_t
- func Xinet_addr(tls *TLS, p uintptr) (r Tin_addr_t)
- func Xinet_lnaof(tls *TLS, in Tin_addr) (r Tin_addr_t)
- func Xinet_netof(tls *TLS, in Tin_addr) (r Tin_addr_t)
- func Xinet_network(tls *TLS, p uintptr) (r Tin_addr_t)
- func Yinet_addr(tls *TLS, p uintptr) (r Tin_addr_t)
- func Yinet_lnaof(tls *TLS, in Tin_addr) (r Tin_addr_t)
- func Yinet_netof(tls *TLS, in Tin_addr) (r Tin_addr_t)
- func Yinet_network(tls *TLS, p uintptr) (r Tin_addr_t)
- type Tin_pktinfo
- type Tin_port_t
- type Tino_t
- type Tinotify_event
- type Tint8_t
- type Tint16_t
- type Tint32_t
- type Tint64_t
- type Tint_fast8_t
- type Tint_fast16_t
- type Tint_fast32_t
- type Tint_fast64_t
- type Tint_least8_t
- type Tint_least16_t
- type Tint_least32_t
- type Tint_least64_t
- type Tintmax_t
- func X__strtoimax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- func Ximaxabs(tls *TLS, a Tintmax_t) (r Tintmax_t)
- func Xstrtoimax(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- func Xwcstoimax(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- func Y__strtoimax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- func Yimaxabs(tls *TLS, a Tintmax_t) (r Tintmax_t)
- func Ystrtoimax(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- func Ywcstoimax(tls *TLS, s uintptr, p uintptr, base int32) (r Tintmax_t)
- type Tintptr_t
- type Tioctl_compat_map
- type Tiovec
- type Tip6_mtuinfo
- type Tip_mreq
- type Tip_mreq_source
- type Tip_mreqn
- type Tip_msfilter
- type Tip_opts
- type Tipc_perm
- type Tipc_perm1
- type Tipv6_mreq
- type Titimerspec
- type Titimerval
- type Tjmp_buf
- type Tk_sigaction
- type Tkey_t
- type Tkstat
- type Tktimex
- type Tktimex64
- type Tlastlog
- type Tlconv
- type Tldiv_t
- type Tlinger
- type Tlink_map
- type Tliterals
- type Tlldiv_t
- type Tlocale_t
- func X__duplocale(tls *TLS, old Tlocale_t) (r Tlocale_t)
- func X__newlocale(tls *TLS, mask int32, name uintptr, loc Tlocale_t) (r Tlocale_t)
- func X__uselocale(tls *TLS, new1 Tlocale_t) (r Tlocale_t)
- func Xduplocale(tls *TLS, old Tlocale_t) (r Tlocale_t)
- func Xnewlocale(tls *TLS, mask int32, name uintptr, loc Tlocale_t) (r Tlocale_t)
- func Xuselocale(tls *TLS, new1 Tlocale_t) (r Tlocale_t)
- func Y__duplocale(tls *TLS, old Tlocale_t) (r Tlocale_t)
- func Y__newlocale(tls *TLS, mask int32, name uintptr, loc Tlocale_t) (r Tlocale_t)
- func Y__uselocale(tls *TLS, new1 Tlocale_t) (r Tlocale_t)
- func Yduplocale(tls *TLS, old Tlocale_t) (r Tlocale_t)
- func Ynewlocale(tls *TLS, mask int32, name uintptr, loc Tlocale_t) (r Tlocale_t)
- func Yuselocale(tls *TLS, new1 Tlocale_t) (r Tlocale_t)
- type Tlog2_data
- type Tlog2f_data
- type Tlog_data
- type Tlogf_data
- type Tmatch
- type Tmbstate_t
- type Tmcontext_t
- type Tmcontext_t1
- type Tmd5
- type Tmem_FILE
- type Tmmsghdr
- type Tmntent
- type Tmode_t
- type Tms_FILE
- type Tmsgcat
- type Tmsghdr
- type Tmsginfo
- type Tmsglen_t
- type Tmsgqnum_t
- type Tmsqid_ds
- type Tneg
- type Tnetent
- type Tnfds_t
- type Tnl_catd
- type Tnl_item
- type Tnlink_t
- type Tnlmsghdr
- type Tnode
- type Tnode1
- type Tns_cert_types
- type Tns_class
- type Tns_flag
- type Tns_key_types
- type Tns_msg
- type Tns_opcode
- type Tns_rcode
- type Tns_rr
- type Tns_sect
- type Tns_tcp_tsig_state
- type Tns_tsig_key
- type Tns_type
- type Tns_update_operation
- type Tntptimeval
- type Tnum
- type Toff_t
- func X__ftello(tls *TLS, f uintptr) (r Toff_t)
- func X__ftello_unlocked(tls *TLS, f uintptr) (r Toff_t)
- func X__lseek(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- func X__stdio_seek(tls *TLS, f uintptr, off Toff_t, whence int32) (r Toff_t)
- func Xftello(tls *TLS, f uintptr) (r Toff_t)
- func Xlseek(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- func Xlseek64(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- func Y__ftello(tls *TLS, f uintptr) (r Toff_t)
- func Y__ftello_unlocked(tls *TLS, f uintptr) (r Toff_t)
- func Y__lseek(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- func Y__stdio_seek(tls *TLS, f uintptr, off Toff_t, whence int32) (r Toff_t)
- func Yftello(tls *TLS, f uintptr) (r Toff_t)
- func Ylseek(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- func Ylseek64(tls *TLS, fd int32, offset Toff_t, whence int32) (r Toff_t)
- type Toption
- type Tpasswd
- type Tpid_t
- func Xgetpgid(tls *TLS, pid Tpid_t) (r Tpid_t)
- func Xgetpgrp(tls *TLS) (r Tpid_t)
- func Xgetpid(tls *TLS) (r Tpid_t)
- func Xgetppid(tls *TLS) (r Tpid_t)
- func Xgetsid(tls *TLS, pid Tpid_t) (r Tpid_t)
- func Xsetpgrp(tls *TLS) (r Tpid_t)
- func Xsetsid(tls *TLS) (r Tpid_t)
- func Xtcgetpgrp(tls *TLS, fd int32) (r Tpid_t)
- func Xtcgetsid(tls *TLS, fd int32) (r Tpid_t)
- func Xvfork(tls *TLS) (r Tpid_t)
- func Xwait(tls *TLS, status uintptr) (r Tpid_t)
- func Xwait3(tls *TLS, status uintptr, options int32, usage uintptr) (r Tpid_t)
- func Xwait4(tls *TLS, pid Tpid_t, status uintptr, options int32, ru uintptr) (r1 Tpid_t)
- func Xwaitpid(tls *TLS, pid Tpid_t, status uintptr, options int32) (r Tpid_t)
- func Ygetpgid(tls *TLS, pid Tpid_t) (r Tpid_t)
- func Ygetpgrp(tls *TLS) (r Tpid_t)
- func Ygetpid(tls *TLS) (r Tpid_t)
- func Ygetppid(tls *TLS) (r Tpid_t)
- func Ygetsid(tls *TLS, pid Tpid_t) (r Tpid_t)
- func Ysetpgrp(tls *TLS) (r Tpid_t)
- func Ysetsid(tls *TLS) (r Tpid_t)
- func Ytcgetpgrp(tls *TLS, fd int32) (r Tpid_t)
- func Ytcgetsid(tls *TLS, fd int32) (r Tpid_t)
- func Yvfork(tls *TLS) (r Tpid_t)
- func Ywait(tls *TLS, status uintptr) (r Tpid_t)
- func Ywait3(tls *TLS, status uintptr, options int32, usage uintptr) (r Tpid_t)
- func Ywait4(tls *TLS, pid Tpid_t, status uintptr, options int32, ru uintptr) (r1 Tpid_t)
- func Ywaitpid(tls *TLS, pid Tpid_t, status uintptr, options int32) (r Tpid_t)
- type Tpolicy
- type Tpollfd
- type Tposix_spawn_file_actions_t
- type Tposix_spawnattr_t
- type Tpow_log_data
- type Tpowf_log2_data
- type Tprctl_mm_map
- type Tprotoent
- type Tpthread_attr_t
- type Tpthread_barrier_t
- type Tpthread_barrierattr_t
- type Tpthread_cond_t
- type Tpthread_condattr_t
- type Tpthread_key_t
- type Tpthread_mutex_t
- type Tpthread_mutexattr_t
- type Tpthread_once_t
- type Tpthread_rwlock_t
- type Tpthread_rwlockattr_t
- type Tpthread_spinlock_t
- type Tpthread_t
- type Tptrdiff_t
- type Tqelem
- type Tr_debug
- type Tre_pattern_buffer
- type Treg_errcode_t
- type Tregex_t
- type Tregmatch_t
- type Tregoff_t
- type Tres_state
- type Tres_sym
- type Tresolvconf
- type Trlim_t
- type Trlimit
- type Trtattr
- type Trtgenmsg
- type Trusage
- type Tsa
- type Tsa_family_t
- type Tsched_param
- type Tsembuf
- type Tsemid_ds
- type Tsemid_ds1
- type Tseminfo
- type Tsemun
- type Tservent
- type Tservice
- type Tsha256
- type Tsha512
- type Tshm_info
- type Tshmatt_t
- type Tshmid_ds
- type Tshminfo
- type Tsig_atomic_t
- type Tsig_t
- type Tsigaction
- type Tsigaltstack
- type Tsigcontext
- type Tsigevent
- type Tsighandler_t
- type Tsiginfo_t
- type Tsigjmp_buf
- type Tsignalfd_siginfo
- type Tsigset_t
- type Tsigval
- type Tsize_t
- func UsableSize(p uintptr) Tsize_t
- func X__builtin_object_size(t *TLS, p uintptr, typ int32) Tsize_t
- func X__builtin_strlen(t *TLS, s uintptr) Tsize_t
- func X__ctype_get_mb_cur_max(tls *TLS) (r Tsize_t)
- func X__fbufsize(tls *TLS, f uintptr) (r Tsize_t)
- func X__fpending(tls *TLS, f uintptr) (r Tsize_t)
- func X__freadahead(tls *TLS, f uintptr) (r Tsize_t)
- func X__fwritex(tls *TLS, s uintptr, l Tsize_t, f uintptr) (r Tsize_t)
- func X__stdio_read(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func X__stdio_write(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func X__stdout_write(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func X__strftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func X__strxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func X__wcsftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func X__wcsxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Xc16rtomb(tls *TLS, s uintptr, c16 Tchar16_t, ps uintptr) (r Tsize_t)
- func Xc32rtomb(tls *TLS, s uintptr, c32 Tchar32_t, ps uintptr) (r Tsize_t)
- func Xconfstr(tls *TLS, name int32, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func Xfread(tls *TLS, destv uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Xfread_unlocked(tls *TLS, destv uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Xfwrite(tls *TLS, src uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Xfwrite_unlocked(tls *TLS, src uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Xiconv(tls *TLS, cd Ticonv_t, in uintptr, inb uintptr, out uintptr, outb uintptr) (r Tsize_t)
- func Xmalloc_usable_size(tls *TLS, p uintptr) (r Tsize_t)
- func Xmbrlen(tls *TLS, s uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Xmbrtoc16(tls *TLS, pc16 uintptr, s uintptr, n Tsize_t, ps uintptr) (r Tsize_t)
- func Xmbrtoc32(tls *TLS, pc32 uintptr, s uintptr, n Tsize_t, ps uintptr) (r Tsize_t)
- func Xmbrtowc(tls *TLS, wc uintptr, src uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Xmbsnrtowcs(tls *TLS, wcs uintptr, src uintptr, n Tsize_t, wn Tsize_t, st uintptr) (r Tsize_t)
- func Xmbsrtowcs(tls *TLS, ws uintptr, src uintptr, wn Tsize_t, st uintptr) (r Tsize_t)
- func Xmbstowcs(tls *TLS, ws uintptr, _s uintptr, wn Tsize_t) (r Tsize_t)
- func Xregerror(tls *TLS, e int32, preg uintptr, buf uintptr, size Tsize_t) (r Tsize_t)
- func Xstrcspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Xstrftime(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr) (r Tsize_t)
- func Xstrftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Xstrlcat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r Tsize_t)
- func Xstrlcpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r Tsize_t)
- func Xstrlen(t *TLS, s uintptr) (r Tsize_t)
- func Xstrnlen(tls *TLS, s uintptr, n Tsize_t) (r Tsize_t)
- func Xstrspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Xstrxfrm(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r Tsize_t)
- func Xstrxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Xwcrtomb(tls *TLS, s uintptr, wc Twchar_t, st uintptr) (r Tsize_t)
- func Xwcscspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Xwcsftime(tls *TLS, wcs uintptr, n Tsize_t, f uintptr, tm uintptr) (r Tsize_t)
- func Xwcsftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Xwcslen(tls *TLS, s uintptr) (r Tsize_t)
- func Xwcsnlen(tls *TLS, s uintptr, n Tsize_t) (r Tsize_t)
- func Xwcsnrtombs(tls *TLS, dst uintptr, wcs uintptr, wn Tsize_t, n Tsize_t, st uintptr) (r Tsize_t)
- func Xwcsrtombs(tls *TLS, s uintptr, ws uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Xwcsspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Xwcstombs(tls *TLS, s uintptr, ws uintptr, n Tsize_t) (r Tsize_t)
- func Xwcsxfrm(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r Tsize_t)
- func Xwcsxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Y__builtin_object_size(t *TLS, p uintptr, typ int32) (_3 Tsize_t)
- func Y__builtin_strlen(t *TLS, s uintptr) (_2 Tsize_t)
- func Y__ctype_get_mb_cur_max(tls *TLS) (r Tsize_t)
- func Y__fbufsize(tls *TLS, f uintptr) (r Tsize_t)
- func Y__fpending(tls *TLS, f uintptr) (r Tsize_t)
- func Y__freadahead(tls *TLS, f uintptr) (r Tsize_t)
- func Y__fwritex(tls *TLS, s uintptr, l Tsize_t, f uintptr) (r Tsize_t)
- func Y__stdio_read(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func Y__stdio_write(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func Y__stdout_write(tls *TLS, f uintptr, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func Y__strftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Y__strxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Y__wcsftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Y__wcsxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Yc16rtomb(tls *TLS, s uintptr, c16 Tchar16_t, ps uintptr) (r Tsize_t)
- func Yc32rtomb(tls *TLS, s uintptr, c32 Tchar32_t, ps uintptr) (r Tsize_t)
- func Yconfstr(tls *TLS, name int32, buf uintptr, len1 Tsize_t) (r Tsize_t)
- func Yfread(tls *TLS, destv uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Yfread_unlocked(tls *TLS, destv uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Yfwrite(tls *TLS, src uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Yfwrite_unlocked(tls *TLS, src uintptr, size Tsize_t, nmemb Tsize_t, f uintptr) (r Tsize_t)
- func Yiconv(tls *TLS, cd Ticonv_t, in uintptr, inb uintptr, out uintptr, outb uintptr) (r Tsize_t)
- func Ymalloc_usable_size(tls *TLS, p uintptr) (r Tsize_t)
- func Ymbrlen(tls *TLS, s uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Ymbrtoc16(tls *TLS, pc16 uintptr, s uintptr, n Tsize_t, ps uintptr) (r Tsize_t)
- func Ymbrtoc32(tls *TLS, pc32 uintptr, s uintptr, n Tsize_t, ps uintptr) (r Tsize_t)
- func Ymbrtowc(tls *TLS, wc uintptr, src uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Ymbsnrtowcs(tls *TLS, wcs uintptr, src uintptr, n Tsize_t, wn Tsize_t, st uintptr) (r Tsize_t)
- func Ymbsrtowcs(tls *TLS, ws uintptr, src uintptr, wn Tsize_t, st uintptr) (r Tsize_t)
- func Ymbstowcs(tls *TLS, ws uintptr, _s uintptr, wn Tsize_t) (r Tsize_t)
- func Yregerror(tls *TLS, e int32, preg uintptr, buf uintptr, size Tsize_t) (r Tsize_t)
- func Ystrcspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Ystrftime(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr) (r Tsize_t)
- func Ystrftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Ystrlcat(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r Tsize_t)
- func Ystrlcpy(tls *TLS, d uintptr, s uintptr, n Tsize_t) (r Tsize_t)
- func Ystrlen(tls *TLS, s uintptr) (r Tsize_t)
- func Ystrnlen(tls *TLS, s uintptr, n Tsize_t) (r Tsize_t)
- func Ystrspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Ystrxfrm(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r Tsize_t)
- func Ystrxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- func Ywcrtomb(tls *TLS, s uintptr, wc Twchar_t, st uintptr) (r Tsize_t)
- func Ywcscspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Ywcsftime(tls *TLS, wcs uintptr, n Tsize_t, f uintptr, tm uintptr) (r Tsize_t)
- func Ywcsftime_l(tls *TLS, s uintptr, n Tsize_t, f uintptr, tm uintptr, loc Tlocale_t) (r Tsize_t)
- func Ywcslen(tls *TLS, s uintptr) (r Tsize_t)
- func Ywcsnlen(tls *TLS, s uintptr, n Tsize_t) (r Tsize_t)
- func Ywcsnrtombs(tls *TLS, dst uintptr, wcs uintptr, wn Tsize_t, n Tsize_t, st uintptr) (r Tsize_t)
- func Ywcsrtombs(tls *TLS, s uintptr, ws uintptr, n Tsize_t, st uintptr) (r Tsize_t)
- func Ywcsspn(tls *TLS, s uintptr, c uintptr) (r Tsize_t)
- func Ywcstombs(tls *TLS, s uintptr, ws uintptr, n Tsize_t) (r Tsize_t)
- func Ywcsxfrm(tls *TLS, dest uintptr, src uintptr, n Tsize_t) (r Tsize_t)
- func Ywcsxfrm_l(tls *TLS, dest uintptr, src uintptr, n Tsize_t, loc Tlocale_t) (r Tsize_t)
- type Tsockaddr
- type Tsockaddr_in
- type Tsockaddr_in6
- type Tsockaddr_ll_hack
- type Tsockaddr_storage
- type Tsockany
- type Tsocklen_t
- type Tspeed_t
- type Tspwd
- type Tssize_t
- func X__getdelim(tls *TLS, s uintptr, n uintptr, delim int32, f uintptr) (r Tssize_t)
- func Xcopy_file_range(tls *TLS, fd_in int32, off_in uintptr, fd_out int32, off_out uintptr, ...) (r Tssize_t)
- func Xfgetxattr(tls *TLS, filedes int32, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Xflistxattr(tls *TLS, filedes int32, list uintptr, size Tsize_t) (r Tssize_t)
- func Xgetdelim(tls *TLS, s uintptr, n uintptr, delim int32, f uintptr) (r Tssize_t)
- func Xgetline(tls *TLS, s uintptr, n uintptr, f uintptr) (r Tssize_t)
- func Xgetrandom(tls *TLS, buf uintptr, buflen Tsize_t, flags uint32) (r Tssize_t)
- func Xgetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Xlgetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Xlistxattr(tls *TLS, path uintptr, list uintptr, size Tsize_t) (r Tssize_t)
- func Xllistxattr(tls *TLS, path uintptr, list uintptr, size Tsize_t) (r Tssize_t)
- func Xmsgrcv(tls *TLS, q int32, m uintptr, len1 Tsize_t, type1 int64, flag int32) (r Tssize_t)
- func Xpread(tls *TLS, fd int32, buf uintptr, size Tsize_t, ofs Toff_t) (r Tssize_t)
- func Xpreadv(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t) (r Tssize_t)
- func Xpreadv2(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t, flags int32) (r Tssize_t)
- func Xprocess_vm_readv(tls *TLS, pid Tpid_t, lvec uintptr, liovcnt uint64, rvec uintptr, ...) (r Tssize_t)
- func Xprocess_vm_writev(tls *TLS, pid Tpid_t, lvec uintptr, liovcnt uint64, rvec uintptr, ...) (r Tssize_t)
- func Xpwrite(tls *TLS, fd int32, buf uintptr, size Tsize_t, ofs Toff_t) (r Tssize_t)
- func Xpwritev(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t) (r Tssize_t)
- func Xpwritev2(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t, flags int32) (r Tssize_t)
- func Xread(tls *TLS, fd int32, buf uintptr, count Tsize_t) (r Tssize_t)
- func Xreadahead(tls *TLS, fd int32, pos Toff_t, len1 Tsize_t) (r Tssize_t)
- func Xreadlink(tls *TLS, path uintptr, buf uintptr, bufsize Tsize_t) (r1 Tssize_t)
- func Xreadlinkat(tls *TLS, fd int32, path uintptr, buf uintptr, bufsize Tsize_t) (r1 Tssize_t)
- func Xreadv(tls *TLS, fd int32, iov uintptr, count int32) (r Tssize_t)
- func Xrecv(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32) (r Tssize_t)
- func Xrecvfrom(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32, addr uintptr, ...) (r1 Tssize_t)
- func Xrecvmsg(tls *TLS, fd int32, msg uintptr, flags int32) (r2 Tssize_t)
- func Xsend(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32) (r Tssize_t)
- func Xsendfile(tls *TLS, out_fd int32, in_fd int32, ofs uintptr, count Tsize_t) (r Tssize_t)
- func Xsendmsg(tls *TLS, fd int32, msg uintptr, flags int32) (r1 Tssize_t)
- func Xsendto(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32, addr uintptr, ...) (r1 Tssize_t)
- func Xsplice(tls *TLS, fd_in int32, off_in uintptr, fd_out int32, off_out uintptr, ...) (r Tssize_t)
- func Xstrfmon(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r Tssize_t)
- func Xstrfmon_l(tls *TLS, s uintptr, n Tsize_t, loc Tlocale_t, fmt uintptr, va uintptr) (r Tssize_t)
- func Xtee(tls *TLS, src int32, dest int32, len1 Tsize_t, flags uint32) (r Tssize_t)
- func Xvmsplice(tls *TLS, fd int32, iov uintptr, cnt Tsize_t, flags uint32) (r Tssize_t)
- func Xwrite(tls *TLS, fd int32, buf uintptr, count Tsize_t) (r Tssize_t)
- func Xwritev(tls *TLS, fd int32, iov uintptr, count int32) (r Tssize_t)
- func Y__getdelim(tls *TLS, s uintptr, n uintptr, delim int32, f uintptr) (r Tssize_t)
- func Ycopy_file_range(tls *TLS, fd_in int32, off_in uintptr, fd_out int32, off_out uintptr, ...) (r Tssize_t)
- func Yfgetxattr(tls *TLS, filedes int32, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Yflistxattr(tls *TLS, filedes int32, list uintptr, size Tsize_t) (r Tssize_t)
- func Ygetdelim(tls *TLS, s uintptr, n uintptr, delim int32, f uintptr) (r Tssize_t)
- func Ygetline(tls *TLS, s uintptr, n uintptr, f uintptr) (r Tssize_t)
- func Ygetrandom(tls *TLS, buf uintptr, buflen Tsize_t, flags uint32) (r Tssize_t)
- func Ygetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Ylgetxattr(tls *TLS, path uintptr, name uintptr, value uintptr, size Tsize_t) (r Tssize_t)
- func Ylistxattr(tls *TLS, path uintptr, list uintptr, size Tsize_t) (r Tssize_t)
- func Yllistxattr(tls *TLS, path uintptr, list uintptr, size Tsize_t) (r Tssize_t)
- func Ymsgrcv(tls *TLS, q int32, m uintptr, len1 Tsize_t, type1 int64, flag int32) (r Tssize_t)
- func Ypread(tls *TLS, fd int32, buf uintptr, size Tsize_t, ofs Toff_t) (r Tssize_t)
- func Ypreadv(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t) (r Tssize_t)
- func Ypreadv2(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t, flags int32) (r Tssize_t)
- func Yprocess_vm_readv(tls *TLS, pid Tpid_t, lvec uintptr, liovcnt uint64, rvec uintptr, ...) (r Tssize_t)
- func Yprocess_vm_writev(tls *TLS, pid Tpid_t, lvec uintptr, liovcnt uint64, rvec uintptr, ...) (r Tssize_t)
- func Ypwrite(tls *TLS, fd int32, buf uintptr, size Tsize_t, ofs Toff_t) (r Tssize_t)
- func Ypwritev(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t) (r Tssize_t)
- func Ypwritev2(tls *TLS, fd int32, iov uintptr, count int32, ofs Toff_t, flags int32) (r Tssize_t)
- func Yread(tls *TLS, fd int32, buf uintptr, count Tsize_t) (r Tssize_t)
- func Yreadahead(tls *TLS, fd int32, pos Toff_t, len1 Tsize_t) (r Tssize_t)
- func Yreadlink(tls *TLS, path uintptr, buf uintptr, bufsize Tsize_t) (r1 Tssize_t)
- func Yreadlinkat(tls *TLS, fd int32, path uintptr, buf uintptr, bufsize Tsize_t) (r1 Tssize_t)
- func Yreadv(tls *TLS, fd int32, iov uintptr, count int32) (r Tssize_t)
- func Yrecv(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32) (r Tssize_t)
- func Yrecvfrom(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32, addr uintptr, ...) (r1 Tssize_t)
- func Yrecvmsg(tls *TLS, fd int32, msg uintptr, flags int32) (r2 Tssize_t)
- func Ysend(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32) (r Tssize_t)
- func Ysendfile(tls *TLS, out_fd int32, in_fd int32, ofs uintptr, count Tsize_t) (r Tssize_t)
- func Ysendmsg(tls *TLS, fd int32, msg uintptr, flags int32) (r1 Tssize_t)
- func Ysendto(tls *TLS, fd int32, buf uintptr, len1 Tsize_t, flags int32, addr uintptr, ...) (r1 Tssize_t)
- func Ysplice(tls *TLS, fd_in int32, off_in uintptr, fd_out int32, off_out uintptr, ...) (r Tssize_t)
- func Ystrfmon(tls *TLS, s uintptr, n Tsize_t, fmt uintptr, va uintptr) (r Tssize_t)
- func Ystrfmon_l(tls *TLS, s uintptr, n Tsize_t, loc Tlocale_t, fmt uintptr, va uintptr) (r Tssize_t)
- func Ytee(tls *TLS, src int32, dest int32, len1 Tsize_t, flags uint32) (r Tssize_t)
- func Yvmsplice(tls *TLS, fd int32, iov uintptr, cnt Tsize_t, flags uint32) (r Tssize_t)
- func Ywrite(tls *TLS, fd int32, buf uintptr, count Tsize_t) (r Tssize_t)
- func Ywritev(tls *TLS, fd int32, iov uintptr, count int32) (r Tssize_t)
- type Tst
- type Tstack_t
- type Tstat
- type Tstateful_cd
- type Tstatfs
- type Tstatvfs
- type Tstatx
- type Tstatx1
- type Tstatx_timestamp
- type Tstr_list
- type Tstr_mlist
- type Tstrbuf
- type Tstrfdinsert
- type Tstrioctl
- type Tstrpeek
- type Tstrrecvfd
- type Tsuseconds_t
- type Tsyscall_arg_t
- type Tsysinfo
- type Ttcflag_t
- type Ttermios
- type Ttime_t
- type Ttimeb
- type Ttimer_t
- type Ttimespec
- type Ttimeval
- type Ttimex
- type Ttimezone
- type Ttls_module
- type Ttm
- type Ttm1
- type Ttms
- type Ttnfa
- type Ttnfa_transition
- type Ttre_addtags_symbol_t
- type Ttre_ast_node_t
- type Ttre_ast_type_t
- type Ttre_backtrack_item_t
- type Ttre_backtrack_struct
- type Ttre_backtrack_t
- type Ttre_catenation_t
- type Ttre_char_t
- type Ttre_cint_t
- type Ttre_copyast_symbol_t
- type Ttre_ctype_t
- type Ttre_expand_ast_symbol_t
- type Ttre_iteration_t
- type Ttre_list
- type Ttre_list_t
- type Ttre_literal_t
- type Ttre_mem_struct
- type Ttre_mem_t
- type Ttre_nfl_stack_symbol_t
- type Ttre_parse_ctx_t
- type Ttre_pos_and_tags_t
- type Ttre_reach_pos_t
- type Ttre_stack_item
- type Ttre_stack_rec
- type Ttre_stack_t
- type Ttre_submatch_data
- type Ttre_submatch_data_t
- type Ttre_tag_direction_t
- type Ttre_tag_states_t
- type Ttre_tnfa_reach_t
- type Ttre_tnfa_t
- type Ttre_tnfa_transition_t
- type Ttre_union_t
- type Tucontext
- type Tucontext_t
- type Tucontext_t1
- type Tucred
- type Tuid_t
- type Tuint8_t
- type Tuint16_t
- type Tuint32_t
- type Tuint64_t
- type Tuint_fast8_t
- type Tuint_fast16_t
- type Tuint_fast32_t
- type Tuint_fast64_t
- type Tuint_least8_t
- type Tuint_least16_t
- type Tuint_least32_t
- type Tuint_least64_t
- type Tuintmax_t
- func X__strtoumax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- func Xstrtoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- func Xwcstoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- func Y__strtoumax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- func Ystrtoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- func Ywcstoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
- type Tuintptr_t
- type Tuseconds_t
- type Tutimbuf
- type Tutmpx
- type Tutsname
- type Tutsname1
- type Tv4l2_event
- type Tva_list
- type Twchar_t
- type Twctrans_t
- func X__wctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
- func Xwctrans(tls *TLS, class uintptr) (r Twctrans_t)
- func Xwctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
- func Y__wctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
- func Ywctrans(tls *TLS, class uintptr) (r Twctrans_t)
- func Ywctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
- type Twctype_t
- func X__wctype_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctype_t)
- func Xwctype(tls *TLS, s uintptr) (r Twctype_t)
- func Xwctype_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctype_t)
- func Y__wctype_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctype_t)
- func Ywctype(tls *TLS, s uintptr) (r Twctype_t)
- func Ywctype_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctype_t)
- type Twinsize
- type Twint_t
- func X__fgetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func X__fputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func X__towctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
- func X__towlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func X__towupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Xbtowc(tls *TLS, c int32) (r Twint_t)
- func Xfgetwc(tls *TLS, f uintptr) (r Twint_t)
- func Xfgetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func Xfputwc(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Xfputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Xgetwc(tls *TLS, f uintptr) (r Twint_t)
- func Xgetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func Xgetwchar(tls *TLS) (r Twint_t)
- func Xgetwchar_unlocked(tls *TLS) (r Twint_t)
- func Xputwc(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Xputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Xputwchar(tls *TLS, c Twchar_t) (r Twint_t)
- func Xputwchar_unlocked(tls *TLS, c Twchar_t) (r Twint_t)
- func Xtowctrans(tls *TLS, wc Twint_t, trans Twctrans_t) (r Twint_t)
- func Xtowctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
- func Xtowlower(tls *TLS, wc Twint_t) (r Twint_t)
- func Xtowlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Xtowupper(tls *TLS, wc Twint_t) (r Twint_t)
- func Xtowupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Xungetwc(tls *TLS, c Twint_t, f uintptr) (r Twint_t)
- func Y__fgetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func Y__fputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Y__towctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
- func Y__towlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Y__towupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Ybtowc(tls *TLS, c int32) (r Twint_t)
- func Yfgetwc(tls *TLS, f uintptr) (r Twint_t)
- func Yfgetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func Yfputwc(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Yfputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Ygetwc(tls *TLS, f uintptr) (r Twint_t)
- func Ygetwc_unlocked(tls *TLS, f uintptr) (r Twint_t)
- func Ygetwchar(tls *TLS) (r Twint_t)
- func Ygetwchar_unlocked(tls *TLS) (r Twint_t)
- func Yputwc(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Yputwc_unlocked(tls *TLS, c Twchar_t, f uintptr) (r Twint_t)
- func Yputwchar(tls *TLS, c Twchar_t) (r Twint_t)
- func Yputwchar_unlocked(tls *TLS, c Twchar_t) (r Twint_t)
- func Ytowctrans(tls *TLS, wc Twint_t, trans Twctrans_t) (r Twint_t)
- func Ytowctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
- func Ytowlower(tls *TLS, wc Twint_t) (r Twint_t)
- func Ytowlower_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Ytowupper(tls *TLS, wc Twint_t) (r Twint_t)
- func Ytowupper_l(tls *TLS, c Twint_t, l Tlocale_t) (r Twint_t)
- func Yungetwc(tls *TLS, c Twint_t, f uintptr) (r Twint_t)
- type Twms_FILE
- type Uint128
- func Uint128FromFloat32(n float32) Uint128
- func Uint128FromFloat64(n float64) Uint128
- func Uint128FromInt8(n int8) Uint128
- func Uint128FromInt16(n int16) Uint128
- func Uint128FromInt32(n int32) Uint128
- func Uint128FromInt64(n int64) (r Uint128)
- func Uint128FromInt128(n Int128) Uint128
- func Uint128FromUint8(n uint8) Uint128
- func Uint128FromUint16(n uint16) Uint128
- func Uint128FromUint32(n uint32) Uint128
- func Uint128FromUint64(n uint64) Uint128
- func (n Uint128) Add(m Uint128) (r Uint128)
- func (n Uint128) And(m Uint128) Uint128
- func (n Uint128) Cmp(m Uint128) int
- func (n Uint128) Div(m Uint128) (r Uint128)
- func (n Uint128) Float32() float32
- func (n Uint128) Float64() float64
- func (n Uint128) Int8() int8
- func (n Uint128) Int16() int16
- func (n Uint128) Int32() int32
- func (n Uint128) Int64() int64
- func (n Uint128) Int128() Int128
- func (n *Uint128) LValueShl(c int32)
- func (n *Uint128) LValueShr(c int32)
- func (n Uint128) Mul(m Uint128) Uint128
- func (n Uint128) Or(m Uint128) Uint128
- func (n Uint128) Shl(c int32) (r Uint128)
- func (n Uint128) Shr(c int32) (r Uint128)
- func (n Uint128) Sub(m Uint128) Uint128
- func (n Uint128) Uint8() uint8
- func (n Uint128) Uint16() uint16
- func (n Uint128) Uint32() uint32
- func (n Uint128) Uint64() uint64
- func (n Uint128) Xor(m Uint128) Uint128
Constants ¶
const ABDAY_1 = 131072
const ABDAY_2 = 131073
const ABDAY_3 = 131074
const ABDAY_4 = 131075
const ABDAY_5 = 131076
const ABDAY_6 = 131077
const ABDAY_7 = 131078
const ABMON_1 = 131086
const ABMON_10 = 131095
const ABMON_11 = 131096
const ABMON_12 = 131097
const ABMON_2 = 131087
const ABMON_3 = 131088
const ABMON_4 = 131089
const ABMON_5 = 131090
const ABMON_6 = 131091
const ABMON_7 = 131092
const ABMON_8 = 131093
const ABMON_9 = 131094
const ABUF_SIZE = 4800
const ACCOUNTING = 9
const ADD = 0
const ADDR_COMPAT_LAYOUT = 2097152
const ADDR_LIMIT_32BIT = 8388608
const ADDR_LIMIT_3GB = 134217728
const ADDR_NO_RANDOMIZE = 262144
const ADJ_ESTERROR = 8
const ADJ_FREQUENCY = 2
const ADJ_MAXERROR = 4
const ADJ_MICRO = 4096
const ADJ_NANO = 8192
const ADJ_OFFSET = 1
const ADJ_OFFSET_SINGLESHOT = 32769
const ADJ_OFFSET_SS_READ = 40961
const ADJ_SETOFFSET = 256
const ADJ_STATUS = 16
const ADJ_TAI = 128
const ADJ_TICK = 16384
const ADJ_TIMECONST = 32
const AF_ALG = 38
const AF_APPLETALK = 5
const AF_ASH = 18
const AF_ATMPVC = 8
const AF_ATMSVC = 20
const AF_AX25 = 3
const AF_BLUETOOTH = 31
const AF_BRIDGE = 7
const AF_CAIF = 37
const AF_CAN = 29
const AF_DECnet = 12
const AF_ECONET = 19
const AF_FILE = 1
const AF_IB = 27
const AF_IEEE802154 = 36
const AF_INET = 2
const AF_INET6 = 10
const AF_IPX = 4
const AF_IRDA = 23
const AF_ISDN = 34
const AF_IUCV = 32
const AF_KCM = 41
const AF_KEY = 15
const AF_LLC = 26
const AF_LOCAL = 1
const AF_MAX = 45
const AF_MPLS = 28
const AF_NETBEUI = 13
const AF_NETLINK = 16
const AF_NETROM = 6
const AF_NFC = 39
const AF_PACKET = 17
const AF_PHONET = 35
const AF_PPPOX = 24
const AF_QIPCRTR = 42
const AF_RDS = 21
const AF_ROSE = 11
const AF_ROUTE = 16
const AF_RXRPC = 33
const AF_SECURITY = 14
const AF_SMC = 43
const AF_SNA = 22
const AF_TIPC = 30
const AF_UNIX = 1
const AF_UNSPEC = 0
const AF_VSOCK = 40
const AF_WANPIPE = 25
const AF_X25 = 9
const AF_XDP = 44
const AI_ADDRCONFIG = 32
const AI_ALL = 16
const AI_CANONNAME = 2
const AI_NUMERICHOST = 4
const AI_NUMERICSERV = 1024
const AI_PASSIVE = 1
const AI_V4MAPPED = 8
const ALIGN = 0
const ALIGN1 = -1
const ALIGN2 = 0
const ALIGN3 = -1
const ALIGN4 = 0
const ALIGN5 = -1
const ALIGN6 = 0
const ALT_DIGITS = 131119
const ALT_FORM = 8
const AM_STR = 131110
const ANYMARK = 1
const ARG_MAX = 131072
const ARPD_FLUSH = 3
const ARPD_LOOKUP = 2
const ARPD_UPDATE = 1
const ARPHRD_6LOWPAN = 825
const ARPHRD_ADAPT = 264
const ARPHRD_APPLETLK = 8
const ARPHRD_ARCNET = 7
const ARPHRD_ASH = 781
const ARPHRD_ATM = 19
const ARPHRD_AX25 = 3
const ARPHRD_BIF = 775
const ARPHRD_CAIF = 822
const ARPHRD_CAN = 280
const ARPHRD_CHAOS = 5
const ARPHRD_CISCO = 513
const ARPHRD_CSLIP = 257
const ARPHRD_CSLIP6 = 259
const ARPHRD_DDCMP = 517
const ARPHRD_DLCI = 15
const ARPHRD_ECONET = 782
const ARPHRD_EETHER = 2
const ARPHRD_ETHER = 1
const ARPHRD_EUI64 = 27
const ARPHRD_FCAL = 785
const ARPHRD_FCFABRIC = 787
const ARPHRD_FCPL = 786
const ARPHRD_FCPP = 784
const ARPHRD_FDDI = 774
const ARPHRD_FRAD = 770
const ARPHRD_HDLC = 513
const ARPHRD_HIPPI = 780
const ARPHRD_HWX25 = 272
const ARPHRD_IEEE1394 = 24
const ARPHRD_IEEE802 = 6
const ARPHRD_IEEE80211 = 801
const ARPHRD_IEEE80211_PRISM = 802
const ARPHRD_IEEE80211_RADIOTAP = 803
const ARPHRD_IEEE802154 = 804
const ARPHRD_IEEE802154_MONITOR = 805
const ARPHRD_IEEE802_TR = 800
const ARPHRD_INFINIBAND = 32
const ARPHRD_IP6GRE = 823
const ARPHRD_IPDDP = 777
const ARPHRD_IPGRE = 778
const ARPHRD_IRDA = 783
const ARPHRD_LAPB = 516
const ARPHRD_LOCALTLK = 773
const ARPHRD_LOOPBACK = 772
const ARPHRD_METRICOM = 23
const ARPHRD_NETLINK = 824
const ARPHRD_NETROM = 0
const ARPHRD_NONE = 65534
const ARPHRD_PHONET = 820
const ARPHRD_PHONET_PIPE = 821
const ARPHRD_PIMREG = 779
const ARPHRD_PPP = 512
const ARPHRD_PRONET = 4
const ARPHRD_RAWHDLC = 518
const ARPHRD_RAWIP = 519
const ARPHRD_ROSE = 270
const ARPHRD_RSRVD = 260
const ARPHRD_SIT = 776
const ARPHRD_SKIP = 771
const ARPHRD_SLIP = 256
const ARPHRD_SLIP6 = 258
const ARPHRD_TUNNEL = 768
const ARPHRD_TUNNEL6 = 769
const ARPHRD_VOID = 65535
const ARPHRD_VSOCKMON = 826
const ARPHRD_X25 = 271
const ARPOP_InREPLY = 9
const ARPOP_InREQUEST = 8
const ARPOP_NAK = 10
const ARPOP_REPLY = 2
const ARPOP_REQUEST = 1
const ARPOP_RREPLY = 4
const ARPOP_RREQUEST = 3
const ASSERTION = -2
const ASSERT_AT_BOL = 1
const ASSERT_AT_BOW = 16
const ASSERT_AT_EOL = 2
const ASSERT_AT_EOW = 32
const ASSERT_AT_WB = 64
const ASSERT_AT_WB_NEG = 128
const ASSERT_BACKREF = 256
const ASSERT_CHAR_CLASS = 4
const ASSERT_CHAR_CLASS_NEG = 8
const ASSERT_LAST = 256
const ATF_COM = 2
const ATF_DONTPUB = 64
const ATF_MAGIC = 128
const ATF_NETMASK = 32
const ATF_PERM = 4
const ATF_PUBL = 8
const ATF_USETRAILERS = 16
const AT_BASE = 7
const AT_BASE_PLATFORM = 24
const AT_CLKTCK = 17
const AT_DCACHEBSIZE = 19
const AT_EACCESS = 512
const AT_EGID = 14
const AT_EMPTY_PATH = 4096
const AT_ENTRY = 9
const AT_EUID = 12
const AT_EXECFD = 2
const AT_EXECFN = 31
const AT_FDCWD = -100
const AT_FLAGS = 8
const AT_FPUCW = 18
const AT_GID = 13
const AT_HWCAP = 16
const AT_HWCAP2 = 26
const AT_ICACHEBSIZE = 20
const AT_IGNORE = 1
const AT_IGNOREPPC = 22
const AT_L1D_CACHEGEOMETRY = 43
const AT_L1D_CACHESHAPE = 35
const AT_L1D_CACHESIZE = 42
const AT_L1I_CACHEGEOMETRY = 41
const AT_L1I_CACHESHAPE = 34
const AT_L1I_CACHESIZE = 40
const AT_L2_CACHEGEOMETRY = 45
const AT_L2_CACHESHAPE = 36
const AT_L2_CACHESIZE = 44
const AT_L3_CACHEGEOMETRY = 47
const AT_L3_CACHESHAPE = 37
const AT_L3_CACHESIZE = 46
const AT_MINSIGSTKSZ = 51
const AT_NOTELF = 10
const AT_NO_AUTOMOUNT = 2048
const AT_NULL = 0
const AT_PAGESZ = 6
const AT_PHDR = 3
const AT_PHENT = 4
const AT_PHNUM = 5
const AT_PLATFORM = 15
const AT_RANDOM = 25
const AT_RECURSIVE = 32768
const AT_REMOVEDIR = 512
const AT_SECURE = 23
const AT_STATX_DONT_SYNC = 16384
const AT_STATX_FORCE_SYNC = 8192
const AT_STATX_SYNC_AS_STAT = 0
const AT_STATX_SYNC_TYPE = 24576
const AT_SYMLINK_FOLLOW = 1024
const AT_SYMLINK_NOFOLLOW = 256
const AT_SYSINFO = 32
const AT_SYSINFO_EHDR = 33
const AT_UCACHEBSIZE = 21
const AT_UID = 11
const B0 = 0
const B1000000 = 4104
const B110 = 3
const B115200 = 4098
const B1152000 = 4105
const B1200 = 9
const B134 = 4
const B150 = 5
const B1500000 = 4106
const B1800 = 10
const B19200 = 14
const B200 = 6
const B2000000 = 4107
const B230400 = 4099
const B2400 = 11
const B2500000 = 4108
const B300 = 7
const B3000000 = 4109
const B3500000 = 4110
const B38400 = 15
const B4000000 = 4111
const B460800 = 4100
const B4800 = 12
const B50 = 1
const B500000 = 4101
const B57600 = 4097
const B576000 = 4102
const B600 = 8
const B75 = 2
const B921600 = 4103
const B9600 = 13
const BACKREF = -4
const BC_BASE_MAX = 99
const BC_DIM_MAX = 2048
const BC_SCALE_MAX = 99
const BC_STRING_MAX = 1000
const BF_N = 16
const BIG5 = 224
const BIG_ENDIAN = 4321
const BLKBSZGET = 2147488368
const BLKBSZSET = 1073746545
const BLKFLSBUF = 4705
const BLKFRAGET = 4709
const BLKFRASET = 4708
const BLKGETSIZE = 4704
const BLKGETSIZE64 = 2147488370
const BLKRAGET = 4707
const BLKRASET = 4706
const BLKROGET = 4702
const BLKROSET = 4701
const BLKRRPART = 4703
const BLKSECTGET = 4711
const BLKSECTSET = 4710
const BLKSSZGET = 4712
const BOOT_TIME = 2
const BRACKET = -3
const BRKINT = 2
const BS0 = 0
const BS1 = 8192
const BSDLY = 8192
const BUFSIZ = 1024
const BUS_ADRALN = 1
const BUS_ADRERR = 2
const BUS_MCEERR_AO = 5
const BUS_MCEERR_AR = 4
const BUS_OBJERR = 3
const BYTE_ORDER = 1234
const CBAUD = 4111
const CBAUDEX = 4096
const CHARCLASS_NAME_MAX = 14
const CHAR_BIT = 8
const CHAR_MAX = 255
const CHAR_MIN = 0
const CIBAUD = 269418496
const CLD_CONTINUED = 6
const CLD_DUMPED = 3
const CLD_EXITED = 1
const CLD_KILLED = 2
const CLD_STOPPED = 5
const CLD_TRAPPED = 4
const CLOCAL = 2048
const CLOCKS_PER_SEC = 1000000
const CLOCK_BOOTTIME = 7
const CLOCK_BOOTTIME_ALARM = 9
const CLOCK_MONOTONIC = 1
const CLOCK_MONOTONIC_COARSE = 6
const CLOCK_MONOTONIC_RAW = 4
const CLOCK_PROCESS_CPUTIME_ID = 2
const CLOCK_REALTIME = 0
const CLOCK_REALTIME_ALARM = 8
const CLOCK_REALTIME_COARSE = 5
const CLOCK_SGI_CYCLE = 10
const CLOCK_TAI = 11
const CLOCK_THREAD_CPUTIME_ID = 3
const CLONE_CHILD_CLEARTID = 2097152
const CLONE_CHILD_SETTID = 16777216
const CLONE_DETACHED = 4194304
const CLONE_FILES = 1024
const CLONE_FS = 512
const CLONE_IO = 2147483648
const CLONE_NEWCGROUP = 33554432
const CLONE_NEWIPC = 134217728
const CLONE_NEWNET = 1073741824
const CLONE_NEWNS = 131072
const CLONE_NEWPID = 536870912
const CLONE_NEWTIME = 128
const CLONE_NEWUSER = 268435456
const CLONE_NEWUTS = 67108864
const CLONE_PARENT = 32768
const CLONE_PARENT_SETTID = 1048576
const CLONE_PIDFD = 4096
const CLONE_PTRACE = 8192
const CLONE_SETTLS = 524288
const CLONE_SIGHAND = 2048
const CLONE_SYSVSEM = 262144
const CLONE_THREAD = 65536
const CLONE_UNTRACED = 8388608
const CLONE_VFORK = 16384
const CLONE_VM = 256
const CMSPAR = 1073741824
const CODESET = 14
const COLL_WEIGHTS_MAX = 2
const COPY_MAXIMIZE_FIRST_TAG = 2
const COPY_REMOVE_TAGS = 1
const COUNT = 32
const CPU_SETSIZE = 1024
const CR0 = 0
const CR1 = 512
const CR2 = 1024
const CR3 = 1536
const CRDLY = 1536
const CREAD = 128
const CRNCYSTR = 262159
const CRTSCTS = 2147483648
const CS5 = 0
const CS6 = 16
const CS7 = 32
const CS8 = 48
const CSIGNAL = 255
const CSIZE = 48
const CSTOPB = 64
const C_ANY = 0
const C_CHAOS = 0
const C_HS = 0
const C_IN = 0
const C_LOCALE = 0
const C_NONE = 0
const DAS_MATCHINGLABEL = 268435456
const DAS_MATCHINGSCOPE = 536870912
const DAS_ORDER_SHIFT = 0
const DAS_PREC_SHIFT = 20
const DAS_PREFIX_SHIFT = 8
const DAS_SCOPE_SHIFT = 16
const DAS_USABLE = 1073741824
const DAYS_PER_100Y = 36524
const DAYS_PER_400Y = 146097
const DAYS_PER_4Y = 1461
const DAY_1 = 131079
const DAY_2 = 131080
const DAY_3 = 131081
const DAY_4 = 131082
const DAY_5 = 131083
const DAY_6 = 131084
const DAY_7 = 131085
const DBL_DECIMAL_DIG = 17
const DBL_DIG = 15
const DBL_EPSILON = 0
const DBL_EPSILON1 = 2.220446049250313e-16
const DBL_EPSILON10 = 0
const DBL_EPSILON11 = 2.220446049250313e-16
const DBL_EPSILON12 = 0
const DBL_EPSILON2 = 0
const DBL_EPSILON3 = 2.220446049250313e-16
const DBL_EPSILON4 = 0
const DBL_EPSILON5 = 2.220446049250313e-16
const DBL_EPSILON6 = 0
const DBL_EPSILON7 = 2.220446049250313e-16
const DBL_EPSILON8 = 0
const DBL_EPSILON9 = 2.220446049250313e-16
const DBL_HAS_SUBNORM = 1
const DBL_MANT_DIG = 53
const DBL_MAX = 0
const DBL_MAX_10_EXP = 308
const DBL_MAX_EXP = 1024
const DBL_MIN = 0
const DBL_MIN1 = 2.2250738585072014e-308
const DBL_MIN2 = 0
const DBL_MIN_10_EXP = -307
const DBL_MIN_EXP = -1021
const DBL_TRUE_MIN = 0
const DEAD_PROCESS = 8
const DECIMAL_DIG = 17
const DEFAULT_GUARD_MAX = 1048576
const DEFAULT_GUARD_SIZE = 8192
const DEFAULT_STACK_MAX = 8388608
const DEFAULT_STACK_SIZE = 131072
const DELAYTIMER_MAX = 2147483647
const DELETE = 0
const DF_1_CONFALT = 8192
const DF_1_DIRECT = 256
const DF_1_DISPRELDNE = 32768
const DF_1_DISPRELPND = 65536
const DF_1_EDITED = 2097152
const DF_1_ENDFILTEE = 16384
const DF_1_GLOBAL = 2
const DF_1_GLOBAUDIT = 16777216
const DF_1_GROUP = 4
const DF_1_IGNMULDEF = 262144
const DF_1_INITFIRST = 32
const DF_1_INTERPOSE = 1024
const DF_1_LOADFLTR = 16
const DF_1_NODEFLIB = 2048
const DF_1_NODELETE = 8
const DF_1_NODIRECT = 131072
const DF_1_NODUMP = 4096
const DF_1_NOHDR = 1048576
const DF_1_NOKSYMS = 524288
const DF_1_NOOPEN = 64
const DF_1_NORELOC = 4194304
const DF_1_NOW = 1
const DF_1_ORIGIN = 128
const DF_1_PIE = 134217728
const DF_1_SINGLETON = 33554432
const DF_1_STUB = 67108864
const DF_1_SYMINTPOSE = 8388608
const DF_1_TRANS = 512
const DF_BIND_NOW = 8
const DF_ORIGIN = 1
const DF_P1_GROUPPERM = 2
const DF_P1_LAZYLOAD = 1
const DF_STATIC_TLS = 16
const DF_SYMBOLIC = 2
const DF_TEXTREL = 4
const DN_ACCESS = 1
const DN_ATTRIB = 32
const DN_CREATE = 4
const DN_DELETE = 8
const DN_MODIFY = 2
const DN_MULTISHOT = 2147483648
const DN_RENAME = 16
const DTF_1_CONFEXP = 2
const DTF_1_PARINIT = 1
const DTP_OFFSET = 0
const DT_ADDRNUM = 11
const DT_ADDRRNGHI = 1879047935
const DT_ADDRRNGLO = 1879047680
const DT_ALPHA_NUM = 1
const DT_ALPHA_PLTRO = 1879048192
const DT_AUDIT = 1879047932
const DT_AUXILIARY = 2147483645
const DT_BIND_NOW = 24
const DT_BLK = 6
const DT_CHECKSUM = 1879047672
const DT_CHR = 2
const DT_CONFIG = 1879047930
const DT_DEBUG = 21
const DT_DEPAUDIT = 1879047931
const DT_DETACHED = _DT_DETACHED
const DT_DIR = 4
const DT_ENCODING = 32
const DT_EXITING = _DT_EXITING
const DT_EXTRANUM = 3
const DT_FEATURE_1 = 1879047676
const DT_FIFO = 1
const DT_FILTER = 2147483647
const DT_FINI = 13
const DT_FINI_ARRAY = 26
const DT_FINI_ARRAYSZ = 28
const DT_FLAGS = 30
const DT_FLAGS_1 = 1879048187
const DT_GNU_CONFLICT = 1879047928
const DT_GNU_CONFLICTSZ = 1879047670
const DT_GNU_HASH = 1879047925
const DT_GNU_LIBLIST = 1879047929
const DT_GNU_LIBLISTSZ = 1879047671
const DT_GNU_PRELINKED = 1879047669
const DT_HASH = 4
const DT_HIOS = 1879044096
const DT_HIPROC = 2147483647
const DT_IA_64_NUM = 1
const DT_IA_64_PLT_RESERVE = 1879048192
const DT_INIT = 12
const DT_INIT_ARRAY = 25
const DT_INIT_ARRAYSZ = 27
const DT_JMPREL = 23
const DT_JOINABLE = _DT_JOINABLE
const DT_LNK = 10
const DT_LOOS = 1610612749
const DT_LOPROC = 1879048192
const DT_MIPS_AUX_DYNAMIC = 1879048241
const DT_MIPS_BASE_ADDRESS = 1879048198
const DT_MIPS_COMPACT_SIZE = 1879048239
const DT_MIPS_CONFLICT = 1879048200
const DT_MIPS_CONFLICTNO = 1879048203
const DT_MIPS_CXX_FLAGS = 1879048226
const DT_MIPS_DELTA_CLASS = 1879048215
const DT_MIPS_DELTA_CLASSSYM = 1879048224
const DT_MIPS_DELTA_CLASSSYM_NO = 1879048225
const DT_MIPS_DELTA_CLASS_NO = 1879048216
const DT_MIPS_DELTA_INSTANCE = 1879048217
const DT_MIPS_DELTA_INSTANCE_NO = 1879048218
const DT_MIPS_DELTA_RELOC = 1879048219
const DT_MIPS_DELTA_RELOC_NO = 1879048220
const DT_MIPS_DELTA_SYM = 1879048221
const DT_MIPS_DELTA_SYM_NO = 1879048222
const DT_MIPS_DYNSTR_ALIGN = 1879048235
const DT_MIPS_FLAGS = 1879048197
const DT_MIPS_GOTSYM = 1879048211
const DT_MIPS_GP_VALUE = 1879048240
const DT_MIPS_HIDDEN_GOTIDX = 1879048231
const DT_MIPS_HIPAGENO = 1879048212
const DT_MIPS_ICHECKSUM = 1879048195
const DT_MIPS_INTERFACE = 1879048234
const DT_MIPS_INTERFACE_SIZE = 1879048236
const DT_MIPS_IVERSION = 1879048196
const DT_MIPS_LIBLIST = 1879048201
const DT_MIPS_LIBLISTNO = 1879048208
const DT_MIPS_LOCALPAGE_GOTIDX = 1879048229
const DT_MIPS_LOCAL_GOTIDX = 1879048230
const DT_MIPS_LOCAL_GOTNO = 1879048202
const DT_MIPS_MSYM = 1879048199
const DT_MIPS_NUM = 54
const DT_MIPS_OPTIONS = 1879048233
const DT_MIPS_PERF_SUFFIX = 1879048238
const DT_MIPS_PIXIE_INIT = 1879048227
const DT_MIPS_PLTGOT = 1879048242
const DT_MIPS_PROTECTED_GOTIDX = 1879048232
const DT_MIPS_RLD_MAP = 1879048214
const DT_MIPS_RLD_MAP_REL = 1879048245
const DT_MIPS_RLD_TEXT_RESOLVE_ADDR = 1879048237
const DT_MIPS_RLD_VERSION = 1879048193
const DT_MIPS_RWPLT = 1879048244
const DT_MIPS_SYMBOL_LIB = 1879048228
const DT_MIPS_SYMTABNO = 1879048209
const DT_MIPS_TIME_STAMP = 1879048194
const DT_MIPS_UNREFEXTNO = 1879048210
const DT_MOVEENT = 1879047674
const DT_MOVESZ = 1879047675
const DT_MOVETAB = 1879047934
const DT_NEEDED = 1
const DT_NIOS2_GP = 1879048194
const DT_NULL = 0
const DT_NUM = 38
const DT_PLTGOT = 3
const DT_PLTPAD = 1879047933
const DT_PLTPADSZ = 1879047673
const DT_PLTREL = 20
const DT_PLTRELSZ = 2
const DT_POSFLAG_1 = 1879047677
const DT_PPC64_GLINK = 1879048192
const DT_PPC64_NUM = 4
const DT_PPC64_OPD = 1879048193
const DT_PPC64_OPDSZ = 1879048194
const DT_PPC64_OPT = 1879048195
const DT_PPC_GOT = 1879048192
const DT_PPC_NUM = 2
const DT_PPC_OPT = 1879048193
const DT_PREINIT_ARRAY = 32
const DT_PREINIT_ARRAYSZ = 33
const DT_PROCNUM = 54
const DT_REG = 8
const DT_REL = 17
const DT_RELA = 7
const DT_RELACOUNT = 1879048185
const DT_RELAENT = 9
const DT_RELASZ = 8
const DT_RELCOUNT = 1879048186
const DT_RELENT = 19
const DT_RELR = 36
const DT_RELRENT = 37
const DT_RELRSZ = 35
const DT_RELSZ = 18
const DT_RPATH = 15
const DT_RUNPATH = 29
const DT_SOCK = 12
const DT_SONAME = 14
const DT_SPARC_NUM = 2
const DT_SPARC_REGISTER = 1879048193
const DT_STRSZ = 10
const DT_STRTAB = 5
const DT_SYMBOLIC = 16
const DT_SYMENT = 11
const DT_SYMINENT = 1879047679
const DT_SYMINFO = 1879047935
const DT_SYMINSZ = 1879047678
const DT_SYMTAB = 6
const DT_SYMTAB_SHNDX = 34
const DT_TEXTREL = 22
const DT_TLSDESC_GOT = 1879047927
const DT_TLSDESC_PLT = 1879047926
const DT_UNKNOWN = 0
const DT_VALNUM = 12
const DT_VALRNGHI = 1879047679
const DT_VALRNGLO = 1879047424
const DT_VERDEF = 1879048188
const DT_VERDEFNUM = 1879048189
const DT_VERNEED = 1879048190
const DT_VERNEEDNUM = 1879048191
const DT_VERSIONTAGNUM = 16
const DT_VERSYM = 1879048176
const DT_WHT = 14
const D_FMT = 131113
const D_T_FMT = 131112
const E2BIG = 7
const EACCES = 13
const EADDRINUSE = 98
const EADDRNOTAVAIL = 99
const EADV = 68
const EAFNOSUPPORT = 97
const EAGAIN = 11
const EAI_ADDRFAMILY = -9
const EAI_AGAIN = -3
const EAI_ALLDONE = -103
const EAI_BADFLAGS = -1
const EAI_CANCELED = -101
const EAI_FAIL = -4
const EAI_FAMILY = -6
const EAI_IDN_ENCODE = -105
const EAI_INPROGRESS = -100
const EAI_INTR = -104
const EAI_MEMORY = -10
const EAI_NODATA = -5
const EAI_NONAME = -2
const EAI_NOTCANCELED = -102
const EAI_OVERFLOW = -12
const EAI_SERVICE = -8
const EAI_SOCKTYPE = -7
const EAI_SYSTEM = -11
const EALREADY = 114
const EBADE = 52
const EBADF = 9
const EBADFD = 77
const EBADMSG = 74
const EBADR = 53
const EBADRQC = 56
const EBADSLT = 57
const EBFONT = 59
const EBUSY = 16
const ECANCELED = 125
const ECHILD = 10
const ECHO = 8
const ECHOCTL = 512
const ECHOE = 16
const ECHOK = 32
const ECHOKE = 2048
const ECHONL = 64
const ECHOPRT = 1024
const ECHRNG = 44
const ECOMM = 70
const ECONNABORTED = 103
const ECONNREFUSED = 111
const ECONNRESET = 104
const EDEADLK = 35
const EDEADLOCK = 35
const EDESTADDRREQ = 89
const EDOM = 33
const EDOTDOT = 73
const EDQUOT = 122
const EEXIST = 17
const EFAULT = 14
const EFA_PARISC_1_0 = 523
const EFA_PARISC_1_1 = 528
const EFA_PARISC_2_0 = 532
const EFBIG = 27
const EFD_CLOEXEC = 524288
const EFD_NONBLOCK = 2048
const EFD_SEMAPHORE = 1
const EF_ALPHA_32BIT = 1
const EF_ALPHA_CANRELAX = 2
const EF_ARM_ABI_FLOAT_HARD = 1024
const EF_ARM_ABI_FLOAT_SOFT = 512
const EF_ARM_ALIGN8 = 64
const EF_ARM_APCS_26 = 8
const EF_ARM_APCS_FLOAT = 16
const EF_ARM_BE8 = 8388608
const EF_ARM_DYNSYMSUSESEGIDX = 8
const EF_ARM_EABIMASK = 4278190080
const EF_ARM_EABI_UNKNOWN = 0
const EF_ARM_EABI_VER1 = 16777216
const EF_ARM_EABI_VER2 = 33554432
const EF_ARM_EABI_VER3 = 50331648
const EF_ARM_EABI_VER4 = 67108864
const EF_ARM_EABI_VER5 = 83886080
const EF_ARM_HASENTRY = 2
const EF_ARM_INTERWORK = 4
const EF_ARM_LE8 = 4194304
const EF_ARM_MAPSYMSFIRST = 16
const EF_ARM_MAVERICK_FLOAT = 2048
const EF_ARM_NEW_ABI = 128
const EF_ARM_OLD_ABI = 256
const EF_ARM_PIC = 32
const EF_ARM_RELEXEC = 1
const EF_ARM_SOFT_FLOAT = 512
const EF_ARM_SYMSARESORTED = 4
const EF_ARM_VFP_FLOAT = 1024
const EF_CPU32 = 8454144
const EF_IA_64_ABI64 = 16
const EF_IA_64_ARCH = 4278190080
const EF_IA_64_MASKOS = 15
const EF_LARCH_ABI_DOUBLE_FLOAT = 3
const EF_LARCH_ABI_MODIFIER_MASK = 7
const EF_LARCH_ABI_SINGLE_FLOAT = 2
const EF_LARCH_ABI_SOFT_FLOAT = 1
const EF_LARCH_OBJABI_V1 = 64
const EF_MIPS_64BIT_WHIRL = 16
const EF_MIPS_ABI2 = 32
const EF_MIPS_ABI_ON32 = 64
const EF_MIPS_ARCH = 4026531840
const EF_MIPS_ARCH_1 = 0
const EF_MIPS_ARCH_2 = 268435456
const EF_MIPS_ARCH_3 = 536870912
const EF_MIPS_ARCH_32 = 1342177280
const EF_MIPS_ARCH_32R2 = 1879048192
const EF_MIPS_ARCH_4 = 805306368
const EF_MIPS_ARCH_5 = 1073741824
const EF_MIPS_ARCH_64 = 1610612736
const EF_MIPS_ARCH_64R2 = 2147483648
const EF_MIPS_CPIC = 4
const EF_MIPS_FP64 = 512
const EF_MIPS_NAN2008 = 1024
const EF_MIPS_NOREORDER = 1
const EF_MIPS_PIC = 2
const EF_MIPS_XGOT = 8
const EF_PARISC_ARCH = 65535
const EF_PARISC_EXT = 131072
const EF_PARISC_LAZYSWAP = 4194304
const EF_PARISC_LSB = 262144
const EF_PARISC_NO_KABP = 1048576
const EF_PARISC_TRAPNIL = 65536
const EF_PARISC_WIDE = 524288
const EF_PPC64_ABI = 3
const EF_PPC_EMB = 2147483648
const EF_PPC_RELOCATABLE = 65536
const EF_PPC_RELOCATABLE_LIB = 32768
const EF_SH1 = 1
const EF_SH2 = 2
const EF_SH2A = 13
const EF_SH2A_NOFPU = 19
const EF_SH2A_SH3E = 24
const EF_SH2A_SH3_NOFPU = 22
const EF_SH2A_SH4 = 23
const EF_SH2A_SH4_NOFPU = 21
const EF_SH2E = 11
const EF_SH3 = 3
const EF_SH3E = 8
const EF_SH3_DSP = 5
const EF_SH3_NOMMU = 20
const EF_SH4 = 9
const EF_SH4A = 12
const EF_SH4AL_DSP = 6
const EF_SH4A_NOFPU = 17
const EF_SH4_NOFPU = 16
const EF_SH4_NOMMU_NOFPU = 18
const EF_SH_DSP = 4
const EF_SH_MACH_MASK = 31
const EF_SH_UNKNOWN = 0
const EF_SPARCV9_MM = 3
const EF_SPARCV9_PSO = 1
const EF_SPARCV9_RMO = 2
const EF_SPARCV9_TSO = 0
const EF_SPARC_32PLUS = 256
const EF_SPARC_EXT_MASK = 16776960
const EF_SPARC_HAL_R1 = 1024
const EF_SPARC_LEDATA = 8388608
const EF_SPARC_SUN_US1 = 512
const EF_SPARC_SUN_US3 = 2048
const EHOSTDOWN = 112
const EHOSTUNREACH = 113
const EHWPOISON = 133
const EIDRM = 43
const EILSEQ = 84
const EINPROGRESS = 115
const EINTR = 4
const EINVAL = 22
const EIO = 5
const EISCONN = 106
const EISDIR = 21
const EISNAM = 120
const EI_ABIVERSION = 8
const EI_CLASS = 4
const EI_DATA = 5
const EI_MAG0 = 0
const EI_MAG1 = 1
const EI_MAG2 = 2
const EI_MAG3 = 3
const EI_NIDENT = 16
const EI_OSABI = 7
const EI_PAD = 9
const EI_VERSION = 6
const EKEYEXPIRED = 127
const EKEYREJECTED = 129
const EKEYREVOKED = 128
const EL2HLT = 51
const EL2NSYNC = 45
const EL3HLT = 46
const EL3RST = 47
const ELFCLASS32 = 1
const ELFCLASS64 = 2
const ELFCLASSNONE = 0
const ELFCLASSNUM = 3
const ELFCOMPRESS_HIOS = 1879048191
const ELFCOMPRESS_HIPROC = 2147483647
const ELFCOMPRESS_LOOS = 1610612736
const ELFCOMPRESS_LOPROC = 1879048192
const ELFCOMPRESS_ZLIB = 1
const ELFCOMPRESS_ZSTD = 2
const ELFDATA2LSB = 1
const ELFDATA2MSB = 2
const ELFDATANONE = 0
const ELFDATANUM = 3
const ELFMAG = "\\177ELF"
const ELFMAG0 = 127
const ELFMAG1 = 69
const ELFMAG2 = 76
const ELFMAG3 = 70
const ELFOSABI_AIX = 7
const ELFOSABI_ARM = 97
const ELFOSABI_FREEBSD = 9
const ELFOSABI_GNU = 3
const ELFOSABI_HPUX = 1
const ELFOSABI_IRIX = 8
const ELFOSABI_LINUX = 3
const ELFOSABI_MODESTO = 11
const ELFOSABI_NETBSD = 2
const ELFOSABI_NONE = 0
const ELFOSABI_OPENBSD = 12
const ELFOSABI_SOLARIS = 6
const ELFOSABI_STANDALONE = 255
const ELFOSABI_SYSV = 0
const ELFOSABI_TRU64 = 10
const ELF_NOTE_ABI = 1
const ELF_NOTE_GNU = "GNU"
const ELF_NOTE_OS_FREEBSD = 3
const ELF_NOTE_OS_GNU = 1
const ELF_NOTE_OS_LINUX = 0
const ELF_NOTE_OS_SOLARIS2 = 2
const ELF_NOTE_PAGESIZE_HINT = 1
const ELF_NOTE_SOLARIS = "SUNW Solaris"
const ELIBACC = 79
const ELIBBAD = 80
const ELIBEXEC = 83
const ELIBMAX = 82
const ELIBSCN = 81
const ELNRNG = 48
const ELOOP = 40
const EMEDIUMTYPE = 124
const EMFILE = 24
const EMLINK = 31
const EMPTY = 0
const EMPTY1 = -1
const EMSGSIZE = 90
const EMULTIHOP = 72
const EM_386 = 3
const EM_56800EX = 200
const EM_68HC05 = 72
const EM_68HC08 = 71
const EM_68HC11 = 70
const EM_68HC12 = 53
const EM_68HC16 = 69
const EM_68K = 4
const EM_78KOR = 199
const EM_8051 = 165
const EM_860 = 7
const EM_88K = 5
const EM_960 = 19
const EM_AARCH64 = 183
const EM_ALPHA = 36902
const EM_ALTERA_NIOS2 = 113
const EM_AMDGPU = 224
const EM_ARC = 45
const EM_ARCA = 109
const EM_ARC_A5 = 93
const EM_ARC_COMPACT = 93
const EM_ARC_COMPACT2 = 195
const EM_ARM = 40
const EM_AVR = 83
const EM_AVR32 = 185
const EM_BA1 = 201
const EM_BA2 = 202
const EM_BLACKFIN = 106
const EM_BPF = 247
const EM_C166 = 116
const EM_CDP = 215
const EM_CE = 119
const EM_CLOUDSHIELD = 192
const EM_COGE = 216
const EM_COLDFIRE = 52
const EM_COOL = 217
const EM_COREA_1ST = 193
const EM_COREA_2ND = 194
const EM_CR = 103
const EM_CR16 = 177
const EM_CRAYNV2 = 172
const EM_CRIS = 76
const EM_CRX = 114
const EM_CSKY = 252
const EM_CSR_KALIMBA = 219
const EM_CUDA = 190
const EM_CYPRESS_M8C = 161
const EM_D10V = 85
const EM_D30V = 86
const EM_DSP24 = 136
const EM_DSPIC30F = 118
const EM_DXP = 112
const EM_ECOG16 = 176
const EM_ECOG1X = 168
const EM_ECOG2 = 134
const EM_EMX16 = 212
const EM_EMX8 = 213
const EM_ETPU = 178
const EM_EXCESS = 111
const EM_F2MC16 = 104
const EM_FAKE_ALPHA = 41
const EM_FIREPATH = 78
const EM_FR20 = 37
const EM_FR30 = 84
const EM_FT32 = 222
const EM_FX66 = 66
const EM_H8S = 48
const EM_H8_300 = 46
const EM_H8_300H = 47
const EM_H8_500 = 49
const EM_HUANY = 81
const EM_IA_64 = 50
const EM_IP2K = 101
const EM_JAVELIN = 77
const EM_K10M = 181
const EM_KM32 = 210
const EM_KMX32 = 211
const EM_KVARC = 214
const EM_L10M = 180
const EM_LATTICEMICO32 = 138
const EM_LOONGARCH = 258
const EM_M16C = 117
const EM_M32 = 1
const EM_M32C = 120
const EM_M32R = 88
const EM_MANIK = 171
const EM_MAX = 102
const EM_MAXQ30 = 169
const EM_MCHP_PIC = 204
const EM_MCST_ELBRUS = 175
const EM_ME16 = 59
const EM_METAG = 174
const EM_MICROBLAZE = 189
const EM_MIPS = 8
const EM_MIPS_RS3_LE = 10
const EM_MIPS_X = 51
const EM_MMA = 54
const EM_MMDSP_PLUS = 160
const EM_MMIX = 80
const EM_MN10200 = 90
const EM_MN10300 = 89
const EM_MOXIE = 223
const EM_MSP430 = 105
const EM_NCPU = 56
const EM_NDR1 = 57
const EM_NDS32 = 167
const EM_NONE = 0
const EM_NORC = 218
const EM_NS32K = 97
const EM_NUM = 259
const EM_OPEN8 = 196
const EM_OPENRISC = 92
const EM_OR1K = 92
const EM_PARISC = 15
const EM_PCP = 55
const EM_PDSP = 63
const EM_PJ = 91
const EM_PPC = 20
const EM_PPC64 = 21
const EM_PRISM = 82
const EM_QDSP6 = 164
const EM_R32C = 162
const EM_RCE = 39
const EM_RH32 = 38
const EM_RISCV = 243
const EM_RL78 = 197
const EM_RS08 = 132
const EM_RX = 173
const EM_S370 = 9
const EM_S390 = 22
const EM_SCORE7 = 135
const EM_SEP = 108
const EM_SE_C17 = 139
const EM_SE_C33 = 107
const EM_SH = 42
const EM_SHARC = 133
const EM_SLE9X = 179
const EM_SNP1K = 99
const EM_SPARC = 2
const EM_SPARC32PLUS = 18
const EM_SPARCV9 = 43
const EM_ST100 = 60
const EM_ST19 = 74
const EM_ST200 = 100
const EM_ST7 = 68
const EM_ST9PLUS = 67
const EM_STARCORE = 58
const EM_STM8 = 186
const EM_STXP7X = 166
const EM_SVX = 73
const EM_TILE64 = 187
const EM_TILEGX = 191
const EM_TILEPRO = 188
const EM_TINYJ = 61
const EM_TI_ARP32 = 143
const EM_TI_C2000 = 141
const EM_TI_C5500 = 142
const EM_TI_C6000 = 140
const EM_TI_PRU = 144
const EM_TMM_GPP = 96
const EM_TPC = 98
const EM_TRICORE = 44
const EM_TRIMEDIA = 163
const EM_TSK3000 = 131
const EM_UNICORE = 110
const EM_V800 = 36
const EM_V850 = 87
const EM_VAX = 75
const EM_VIDEOCORE = 95
const EM_VIDEOCORE3 = 137
const EM_VIDEOCORE5 = 198
const EM_VISIUM = 221
const EM_VPP500 = 17
const EM_X86_64 = 62
const EM_XCORE = 203
const EM_XGATE = 115
const EM_XIMO16 = 170
const EM_XTENSA = 94
const EM_Z80 = 220
const EM_ZSP = 79
const ENAMETOOLONG = 36
const ENAVAIL = 119
const END = 0
const ENETDOWN = 100
const ENETRESET = 102
const ENETUNREACH = 101
const ENFILE = 23
const ENOANO = 55
const ENOBUFS = 105
const ENOCSI = 50
const ENODATA = 61
const ENODEV = 19
const ENOENT = 2
const ENOEXEC = 8
const ENOKEY = 126
const ENOLCK = 37
const ENOLINK = 67
const ENOMEDIUM = 123
const ENOMEM = 12
const ENOMSG = 42
const ENONET = 64
const ENOPKG = 65
const ENOPROTOOPT = 92
const ENOSPC = 28
const ENOSR = 63
const ENOSTR = 60
const ENOSYS = 38
const ENOTBLK = 15
const ENOTCONN = 107
const ENOTDIR = 20
const ENOTEMPTY = 39
const ENOTNAM = 118
const ENOTRECOVERABLE = 131
const ENOTSOCK = 88
const ENOTSUP = 95
const ENOTTY = 25
const ENOTUNIQ = 76
const ENXIO = 6
const EOPNOTSUPP = 95
const EOVERFLOW = 75
const EOWNERDEAD = 130
const EPERM = 1
const EPFNOSUPPORT = 96
const EPIPE = 32
const EPOLLERR = 8
const EPOLLET = 2147483648
const EPOLLEXCLUSIVE = 268435456
const EPOLLHUP = 16
const EPOLLIN = 1
const EPOLLMSG = 1024
const EPOLLNVAL = 32
const EPOLLONESHOT = 1073741824
const EPOLLOUT = 4
const EPOLLPRI = 2
const EPOLLRDBAND = 128
const EPOLLRDHUP = 8192
const EPOLLRDNORM = 64
const EPOLLWAKEUP = 536870912
const EPOLLWRBAND = 512
const EPOLLWRNORM = 256
const EPOLL_CLOEXEC = 524288
const EPOLL_CTL_ADD = 1
const EPOLL_CTL_DEL = 2
const EPOLL_CTL_MOD = 3
const EPOLL_NONBLOCK = 2048
const EPROTO = 71
const EPROTONOSUPPORT = 93
const EPROTOTYPE = 91
const EPS = 0
const ERA = 131116
const ERANGE = 34
const ERA_D_FMT = 131118
const ERA_D_T_FMT = 131120
const ERA_T_FMT = 131121
const EREMCHG = 78
const EREMOTE = 66
const EREMOTEIO = 121
const ERESTART = 85
const ERFKILL = 132
const EROFS = 30
const ESHUTDOWN = 108
const ESOCKTNOSUPPORT = 94
const ESPIPE = 29
const ESRCH = 3
const ESRMNT = 69
const ESTALE = 116
const ESTRPIPE = 86
const ETHERMIN = 46
const ETHERMTU = 1500
const ETHERTYPE_AARP = 33011
const ETHERTYPE_ARP = 2054
const ETHERTYPE_AT = 32923
const ETHERTYPE_IP = 2048
const ETHERTYPE_IPV6 = 34525
const ETHERTYPE_IPX = 33079
const ETHERTYPE_LOOPBACK = 36864
const ETHERTYPE_NTRAILER = 16
const ETHERTYPE_PUP = 512
const ETHERTYPE_REVARP = 32821
const ETHERTYPE_SPRITE = 1280
const ETHERTYPE_TRAIL = 4096
const ETHERTYPE_VLAN = 33024
const ETHER_ADDR_LEN = 6
const ETHER_CRC_LEN = 4
const ETHER_HDR_LEN = 14
const ETHER_MAX_LEN = 1518
const ETHER_MIN_LEN = 64
const ETHER_TYPE_LEN = 2
const ETH_ALEN = 6
const ETH_DATA_LEN = 1500
const ETH_FCS_LEN = 4
const ETH_FRAME_LEN = 1514
const ETH_HLEN = 14
const ETH_MAX_MTU = 65535
const ETH_MIN_MTU = 68
const ETH_P_1588 = 35063
const ETH_P_8021AD = 34984
const ETH_P_8021AH = 35047
const ETH_P_8021Q = 33024
const ETH_P_80221 = 35095
const ETH_P_802_2 = 4
const ETH_P_802_3 = 1
const ETH_P_802_3_MIN = 1536
const ETH_P_802_EX1 = 34997
const ETH_P_AARP = 33011
const ETH_P_AF_IUCV = 64507
const ETH_P_ALL = 3
const ETH_P_AOE = 34978
const ETH_P_ARCNET = 26
const ETH_P_ARP = 2054
const ETH_P_ATALK = 32923
const ETH_P_ATMFATE = 34948
const ETH_P_ATMMPOA = 34892
const ETH_P_AX25 = 2
const ETH_P_BATMAN = 17157
const ETH_P_BPQ = 2303
const ETH_P_CAIF = 247
const ETH_P_CAN = 12
const ETH_P_CANFD = 13
const ETH_P_CFM = 35074
const ETH_P_CONTROL = 22
const ETH_P_CUST = 24582
const ETH_P_DDCMP = 6
const ETH_P_DEC = 24576
const ETH_P_DIAG = 24581
const ETH_P_DNA_DL = 24577
const ETH_P_DNA_RC = 24578
const ETH_P_DNA_RT = 24579
const ETH_P_DSA = 27
const ETH_P_DSA_8021Q = 56027
const ETH_P_ECONET = 24
const ETH_P_EDSA = 56026
const ETH_P_ERSPAN = 35006
const ETH_P_ERSPAN2 = 8939
const ETH_P_FCOE = 35078
const ETH_P_FIP = 35092
const ETH_P_HDLC = 25
const ETH_P_HSR = 35119
const ETH_P_IBOE = 35093
const ETH_P_IEEE802154 = 246
const ETH_P_IEEEPUP = 2560
const ETH_P_IEEEPUPAT = 2561
const ETH_P_IFE = 60734
const ETH_P_IP = 2048
const ETH_P_IPV6 = 34525
const ETH_P_IPX = 33079
const ETH_P_IRDA = 23
const ETH_P_LAT = 24580
const ETH_P_LINK_CTL = 34924
const ETH_P_LLDP = 35020
const ETH_P_LOCALTALK = 9
const ETH_P_LOOP = 96
const ETH_P_LOOPBACK = 36864
const ETH_P_MACSEC = 35045
const ETH_P_MAP = 249
const ETH_P_MOBITEX = 21
const ETH_P_MPLS_MC = 34888
const ETH_P_MPLS_UC = 34887
const ETH_P_MRP = 35043
const ETH_P_MVRP = 35061
const ETH_P_NCSI = 35064
const ETH_P_NSH = 35151
const ETH_P_PAE = 34958
const ETH_P_PAUSE = 34824
const ETH_P_PHONET = 245
const ETH_P_PPPTALK = 16
const ETH_P_PPP_DISC = 34915
const ETH_P_PPP_MP = 8
const ETH_P_PPP_SES = 34916
const ETH_P_PREAUTH = 35015
const ETH_P_PRP = 35067
const ETH_P_PUP = 512
const ETH_P_PUPAT = 513
const ETH_P_QINQ1 = 37120
const ETH_P_QINQ2 = 37376
const ETH_P_QINQ3 = 37632
const ETH_P_RARP = 32821
const ETH_P_SCA = 24583
const ETH_P_SLOW = 34825
const ETH_P_SNAP = 5
const ETH_P_TDLS = 35085
const ETH_P_TEB = 25944
const ETH_P_TIPC = 35018
const ETH_P_TRAILER = 28
const ETH_P_TR_802_2 = 17
const ETH_P_TSN = 8944
const ETH_P_WAN_PPP = 7
const ETH_P_WCCP = 34878
const ETH_P_X25 = 2053
const ETH_P_XDSA = 248
const ETH_TLEN = 2
const ETH_ZLEN = 60
const ETIME = 62
const ETIMEDOUT = 110
const ETOOMANYREFS = 109
const ETXTBSY = 26
const ET_CORE = 4
const ET_DYN = 3
const ET_EXEC = 2
const ET_HIOS = 65279
const ET_HIPROC = 65535
const ET_LOOS = 65024
const ET_LOPROC = 65280
const ET_NONE = 0
const ET_NUM = 5
const ET_REL = 1
const EUCLEAN = 117
const EUC_JP = 208
const EUC_KR = 232
const EUNATCH = 49
const EUSERS = 87
const EV_CURRENT = 1
const EV_NONE = 0
const EV_NUM = 2
const EWOULDBLOCK = 11
const EXDEV = 18
const EXFULL = 54
const EXIT_FAILURE = 1
const EXIT_SUCCESS = 0
const EXP2F_POLY_ORDER = 3
const EXP2F_TABLE_BITS = 5
const EXP2_POLY_ORDER = 5
const EXPR_NEST_MAX = 32
const EXP_POLY_ORDER = 5
const EXP_TABLE_BITS = 7
const EXP_USE_TOINT_NARROW = 0
const EXTA = 14
const EXTB = 15
const EXTPROC = 65536
const E_MIPS_ARCH_1 = 0
const E_MIPS_ARCH_2 = 268435456
const E_MIPS_ARCH_3 = 536870912
const E_MIPS_ARCH_32 = 1342177280
const E_MIPS_ARCH_4 = 805306368
const E_MIPS_ARCH_5 = 1073741824
const E_MIPS_ARCH_64 = 1610612736
const FALLOC_FL_KEEP_SIZE = 1
const FALLOC_FL_PUNCH_HOLE = 2
const FANOTIFY_METADATA_VERSION = 3
const FAN_ACCESS = 1
const FAN_ACCESS_PERM = 131072
const FAN_ALLOW = 1
const FAN_ALL_CLASS_BITS = 12
const FAN_ALL_EVENTS = 59
const FAN_ALL_INIT_FLAGS = 63
const FAN_ALL_MARK_FLAGS = 255
const FAN_ALL_OUTGOING_EVENTS = 213051
const FAN_ALL_PERM_EVENTS = 196608
const FAN_ATTRIB = 4
const FAN_AUDIT = 16
const FAN_CLASS_CONTENT = 4
const FAN_CLASS_NOTIF = 0
const FAN_CLASS_PRE_CONTENT = 8
const FAN_CLOEXEC = 1
const FAN_CLOSE = 24
const FAN_CLOSE_NOWRITE = 16
const FAN_CLOSE_WRITE = 8
const FAN_CREATE = 256
const FAN_DELETE = 512
const FAN_DELETE_SELF = 1024
const FAN_DENY = 2
const FAN_DIR_MODIFY = 524288
const FAN_ENABLE_AUDIT = 64
const FAN_EVENT_INFO_TYPE_DFID = 3
const FAN_EVENT_INFO_TYPE_DFID_NAME = 2
const FAN_EVENT_INFO_TYPE_FID = 1
const FAN_EVENT_METADATA_LEN = 0
const FAN_EVENT_ON_CHILD = 134217728
const FAN_MARK_ADD = 1
const FAN_MARK_DONT_FOLLOW = 4
const FAN_MARK_FILESYSTEM = 256
const FAN_MARK_FLUSH = 128
const FAN_MARK_IGNORED_MASK = 32
const FAN_MARK_IGNORED_SURV_MODIFY = 64
const FAN_MARK_INODE = 0
const FAN_MARK_MOUNT = 16
const FAN_MARK_ONLYDIR = 8
const FAN_MARK_REMOVE = 2
const FAN_MARK_TYPE_MASK = 272
const FAN_MODIFY = 2
const FAN_MOVE = 192
const FAN_MOVED_FROM = 64
const FAN_MOVED_TO = 128
const FAN_MOVE_SELF = 2048
const FAN_NOFD = -1
const FAN_NONBLOCK = 2
const FAN_ONDIR = 1073741824
const FAN_OPEN = 32
const FAN_OPEN_EXEC = 4096
const FAN_OPEN_EXEC_PERM = 262144
const FAN_OPEN_PERM = 65536
const FAN_Q_OVERFLOW = 16384
const FAN_REPORT_DFID_NAME = 3072
const FAN_REPORT_DIR_FID = 1024
const FAN_REPORT_FID = 512
const FAN_REPORT_NAME = 2048
const FAN_REPORT_TID = 256
const FAN_UNLIMITED_MARKS = 32
const FAN_UNLIMITED_QUEUE = 16
const FAPPEND = 1024
const FASYNC = 8192
const FDOP_CHDIR = 4
const FDOP_CLOSE = 1
const FDOP_DUP2 = 2
const FDOP_FCHDIR = 5
const FDOP_OPEN = 3
const FDPIC_FUNCPTRS = 524288
const FD_CLOEXEC = 1
const FD_SETSIZE = 1024
const FENV_SUPPORT = 1
const FE_ALL_EXCEPT = 63
const FE_DIVBYZERO = 4
const FE_DOWNWARD = 1024
const FE_INEXACT = 32
const FE_INVALID = 1
const FE_OVERFLOW = 8
const FE_TONEAREST = 0
const FE_TOWARDZERO = 3072
const FE_UNDERFLOW = 16
const FE_UPWARD = 2048
const FF0 = 0
const FF1 = 32768
const FFDLY = 32768
const FFSYNC = 1052672
const FILENAME_MAX = 4096
const FILESIZEBITS = 64
const FIOASYNC = 21586
const FIOCLEX = 21585
const FIOGETOWN = 35075
const FIONBIO = 21537
const FIONCLEX = 21584
const FIONREAD = 21531
const FIOQSIZE = 21600
const FIOSETOWN = 35073
const FLAGMASK = 75913
const FLT_DECIMAL_DIG = 9
const FLT_DIG = 6
const FLT_EPSILON = 0
const FLT_EPSILON1 = 1.1920928955078125e-07
const FLT_EPSILON2 = 0
const FLT_EPSILON3 = 1.1920928955078125e-07
const FLT_EPSILON4 = 0
const FLT_EVAL_METHOD = 0
const FLT_HAS_SUBNORM = 1
const FLT_MANT_DIG = 24
const FLT_MAX = 0
const FLT_MAX_10_EXP = 38
const FLT_MAX_EXP = 128
const FLT_MIN = 0
const FLT_MIN1 = 1.1754943508222875e-38
const FLT_MIN2 = 0
const FLT_MIN_10_EXP = -37
const FLT_MIN_EXP = -125
const FLT_RADIX = 2
const FLT_ROUNDS = 0
const FLT_TRUE_MIN = 0
const FLUSHBAND = 4
const FLUSHO = 4096
const FLUSHR = 1
const FLUSHRW = 3
const FLUSHW = 2
const FMNAMESZ = 8
const FNDELAY = 2048
const FNM_CASEFOLD = 16
const FNM_FILE_NAME = 1
const FNM_LEADING_DIR = 8
const FNM_NOESCAPE = 2
const FNM_NOMATCH = 1
const FNM_NOSYS = -1
const FNM_PATHNAME = 1
const FNM_PERIOD = 4
const FNONBLOCK = 2048
const FOPEN_MAX = 1000
const FORMERR = 0
const FPE_FLTDIV = 3
const FPE_FLTINV = 7
const FPE_FLTOVF = 4
const FPE_FLTRES = 6
const FPE_FLTSUB = 8
const FPE_FLTUND = 5
const FPE_INTDIV = 1
const FPE_INTOVF = 2
const FP_ILOGB0 = -2147483648
const FP_ILOGBNAN = -2147483648
const FP_INFINITE = 1
const FP_NAN = 0
const FP_NORMAL = 4
const FP_SUBNORMAL = 3
const FP_ZERO = 2
const FSETLOCKING_BYCALLER = 2
const FSETLOCKING_INTERNAL = 1
const FSETLOCKING_QUERY = 0
const FTW_CHDIR = 4
const FTW_D = 2
const FTW_DEPTH = 8
const FTW_DNR = 3
const FTW_DP = 6
const FTW_F = 1
const FTW_MOUNT = 2
const FTW_NS = 4
const FTW_PHYS = 1
const FTW_SL = 5
const FTW_SLN = 7
const FUTEX_CLOCK_REALTIME = 256
const FUTEX_CMP_REQUEUE = 4
const FUTEX_FD = 2
const FUTEX_LOCK_PI = 6
const FUTEX_PRIVATE = 128
const FUTEX_REQUEUE = 3
const FUTEX_TRYLOCK_PI = 8
const FUTEX_UNLOCK_PI = 7
const FUTEX_WAIT = 0
const FUTEX_WAIT_BITSET = 9
const FUTEX_WAKE = 1
const FUTEX_WAKE_OP = 5
const F_ADD_SEALS = 1033
const F_APP = 128
const F_CANCELLK = 1029
const F_DUPFD = 0
const F_DUPFD_CLOEXEC = 1030
const F_EOF = 16
const F_ERR = 32
const F_GETFD = 1
const F_GETFL = 3
const F_GETLEASE = 1025
const F_GETLK = 5
const F_GETOWN = 9
const F_GETOWNER_UIDS = 17
const F_GETOWN_EX = 16
const F_GETPIPE_SZ = 1032
const F_GETSIG = 11
const F_GET_FILE_RW_HINT = 1037
const F_GET_RW_HINT = 1035
const F_GET_SEALS = 1034
const F_LOCK = 1
const F_NORD = 4
const F_NOTIFY = 1026
const F_NOWR = 8
const F_OFD_GETLK = 36
const F_OFD_SETLK = 37
const F_OFD_SETLKW = 38
const F_OK = 0
const F_OWNER_GID = 2
const F_OWNER_PGRP = 2
const F_OWNER_PID = 1
const F_OWNER_TID = 0
const F_PERM = 1
const F_RDLCK = 0
const F_SEAL_FUTURE_WRITE = 16
const F_SEAL_GROW = 4
const F_SEAL_SEAL = 1
const F_SEAL_SHRINK = 2
const F_SEAL_WRITE = 8
const F_SETFD = 2
const F_SETFL = 4
const F_SETLEASE = 1024
const F_SETLK = 6
const F_SETLKW = 7
const F_SETOWN = 8
const F_SETOWN_EX = 15
const F_SETPIPE_SZ = 1031
const F_SETSIG = 10
const F_SET_FILE_RW_HINT = 1038
const F_SET_RW_HINT = 1036
const F_SVB = 64
const F_TEST = 3
const F_TLOCK = 2
const F_ULOCK = 0
const F_UNLCK = 2
const F_WRLCK = 1
const GB18030 = 216
const GB2312 = 218
const GBK = 217
const GETALL = 13
const GETGRBYGID = 3
const GETGRBYNAME = 2
const GETINITGR = 15
const GETLONG = 0
const GETNCNT = 14
const GETPID = 11
const GETPWBYNAME = 0
const GETPWBYUID = 1
const GETSHORT = 0
const GETVAL = 12
const GETZCNT = 15
const GLOB_ABORTED = 2
const GLOB_APPEND = 32
const GLOB_DOOFFS = 8
const GLOB_ERR = 1
const GLOB_MARK = 2
const GLOB_NOCHECK = 16
const GLOB_NOESCAPE = 64
const GLOB_NOMATCH = 3
const GLOB_NOSORT = 4
const GLOB_NOSPACE = 1
const GLOB_NOSYS = 4
const GLOB_PERIOD = 128
const GLOB_TILDE = 4096
const GLOB_TILDE_CHECK = 16384
const GRFOUND = 1
const GRGID = 4
const GRMEMCNT = 5
const GRNAMELEN = 2
const GRND_INSECURE = 4
const GRND_NONBLOCK = 1
const GRND_RANDOM = 2
const GROUPED = 128
const GRPASSWDLEN = 3
const GRPQUOTA = 1
const GRP_COMDAT = 1
const GRVERSION = 0
const GR_LEN = 6
const HFIXEDSZ = 12
const HIGHS = 0
const HOST_NAME_MAX = 255
const HOST_NOT_FOUND = 1
const HUGE = 0
const HUGE_VALF = 0
const HUPCL = 1024
const I = 0
const ICANON = 2
const ICRNL = 256
const IEXTEN = 32768
const IFADDRS_HASH_SIZE = 64
const IFA_ADDRESS = 1
const IFA_BROADCAST = 4
const IFA_LABEL = 3
const IFA_LOCAL = 2
const IFF_ALLMULTI = 512
const IFF_AUTOMEDIA = 16384
const IFF_BROADCAST = 2
const IFF_DEBUG = 4
const IFF_DORMANT = 131072
const IFF_DYNAMIC = 32768
const IFF_ECHO = 262144
const IFF_LOOPBACK = 8
const IFF_LOWER_UP = 65536
const IFF_MASTER = 1024
const IFF_MULTICAST = 4096
const IFF_NOARP = 128
const IFF_NOTRAILERS = 32
const IFF_POINTOPOINT = 16
const IFF_PORTSEL = 8192
const IFF_PROMISC = 256
const IFF_RUNNING = 64
const IFF_SLAVE = 2048
const IFF_UP = 1
const IFF_VOLATILE = 461914
const IFHWADDRLEN = 6
const IFLA_ADDRESS = 1
const IFLA_BROADCAST = 2
const IFLA_IFNAME = 3
const IFLA_STATS = 7
const IFNAMSIZ = 16
const IF_NAMESIZE = 16
const IGNBRK = 1
const IGNCR = 128
const IGNPAR = 4
const IIF_ALL = 7
const IIF_BGRACE = 1
const IIF_FLAGS = 4
const IIF_IGRACE = 2
const ILL_BADSTK = 8
const ILL_COPROC = 7
const ILL_ILLADR = 3
const ILL_ILLOPC = 1
const ILL_ILLOPN = 2
const ILL_ILLTRP = 4
const ILL_PRVOPC = 5
const ILL_PRVREG = 6
const IMAXBEL = 8192
const IN6ADDRSZ = 16
const INADDRSZ = 4
const INDIR_MASK = 192
const INET6_ADDRSTRLEN = 46
const INET_ADDRSTRLEN = 16
const INFINITY = 0
const INITGRFOUND = 1
const INITGRNGRPS = 2
const INITGRVERSION = 0
const INITGR_LEN = 3
const INIT_PROCESS = 5
const INLCR = 64
const INPCK = 16
const INT16SZ = 2
const INT16_MAX = 32767
const INT16_MIN = -32768
const INT32SZ = 4
const INT32_MAX = 2147483647
const INT32_MIN = -2147483648
const INT64_MAX = 9223372036854775807
const INT64_MIN = -9223372036854775808
const INT8SZ = 1
const INT8_MAX = 127
const INT8_MIN = -128
const INTMAX_MAX = 9223372036854775807
const INTMAX_MIN = -9223372036854775808
const INTPTR_MAX = 9223372036854775807
const INTPTR_MIN = -9223372036854775808
const INT_FAST16_MAX = 2147483647
const INT_FAST16_MIN = -2147483648
const INT_FAST32_MAX = 2147483647
const INT_FAST32_MIN = -2147483648
const INT_FAST64_MAX = 9223372036854775807
const INT_FAST64_MIN = -9223372036854775808
const INT_FAST8_MAX = 127
const INT_FAST8_MIN = -128
const INT_LEAST16_MAX = 32767
const INT_LEAST16_MIN = -32768
const INT_LEAST32_MAX = 2147483647
const INT_LEAST32_MIN = -2147483648
const INT_LEAST64_MAX = 9223372036854775807
const INT_LEAST64_MIN = -9223372036854775808
const INT_LEAST8_MAX = 127
const INT_LEAST8_MIN = -128
const INT_MAX = 2147483647
const INT_MIN = -2147483648
const IN_ACCESS = 1
const IN_ALL_EVENTS = 4095
const IN_ATTRIB = 4
const IN_CLASSA_HOST = 16777215
const IN_CLASSA_MAX = 128
const IN_CLASSA_NET = 4278190080
const IN_CLASSA_NSHIFT = 24
const IN_CLASSB_HOST = 65535
const IN_CLASSB_MAX = 65536
const IN_CLASSB_NET = 4294901760
const IN_CLASSB_NSHIFT = 16
const IN_CLASSC_HOST = 255
const IN_CLASSC_NET = 4294967040
const IN_CLASSC_NSHIFT = 8
const IN_CLOEXEC = 524288
const IN_CLOSE = 24
const IN_CLOSE_NOWRITE = 16
const IN_CLOSE_WRITE = 8
const IN_CREATE = 256
const IN_DELETE = 512
const IN_DELETE_SELF = 1024
const IN_DONT_FOLLOW = 33554432
const IN_EXCL_UNLINK = 67108864
const IN_IGNORED = 32768
const IN_ISDIR = 1073741824
const IN_LOOPBACKNET = 127
const IN_MASK_ADD = 536870912
const IN_MASK_CREATE = 268435456
const IN_MODIFY = 2
const IN_MOVE = 192
const IN_MOVED_FROM = 64
const IN_MOVED_TO = 128
const IN_MOVE_SELF = 2048
const IN_NONBLOCK = 2048
const IN_ONESHOT = 2147483648
const IN_ONLYDIR = 16777216
const IN_OPEN = 32
const IN_Q_OVERFLOW = 16384
const IN_UNMOUNT = 8192
const IOV_MAX = 1024
const IPCOP_msgctl = 14
const IPCOP_msgget = 13
const IPCOP_msgrcv = 12
const IPCOP_msgsnd = 11
const IPCOP_semctl = 3
const IPCOP_semget = 2
const IPCOP_semop = 1
const IPCOP_semtimedop = 4
const IPCOP_shmat = 21
const IPCOP_shmctl = 24
const IPCOP_shmdt = 22
const IPCOP_shmget = 23
const IPC_64 = 0
const IPC_CREAT = 512
const IPC_EXCL = 1024
const IPC_INFO = 3
const IPC_NOWAIT = 2048
const IPC_RMID = 0
const IPC_SET = 1
const IPC_STAT = 2
const IPC_TIME64 = 0
const IPPORT_RESERVED = 1024
const IPPROTO_AH = 51
const IPPROTO_BEETPH = 94
const IPPROTO_COMP = 108
const IPPROTO_DCCP = 33
const IPPROTO_DSTOPTS = 60
const IPPROTO_EGP = 8
const IPPROTO_ENCAP = 98
const IPPROTO_ESP = 50
const IPPROTO_ETHERNET = 143
const IPPROTO_FRAGMENT = 44
const IPPROTO_GRE = 47
const IPPROTO_HOPOPTS = 0
const IPPROTO_ICMP = 1
const IPPROTO_ICMPV6 = 58
const IPPROTO_IDP = 22
const IPPROTO_IGMP = 2
const IPPROTO_IP = 0
const IPPROTO_IPIP = 4
const IPPROTO_IPV6 = 41
const IPPROTO_MAX = 263
const IPPROTO_MH = 135
const IPPROTO_MPLS = 137
const IPPROTO_MPTCP = 262
const IPPROTO_MTP = 92
const IPPROTO_NONE = 59
const IPPROTO_PIM = 103
const IPPROTO_PUP = 12
const IPPROTO_RAW = 255
const IPPROTO_ROUTING = 43
const IPPROTO_RSVP = 46
const IPPROTO_SCTP = 132
const IPPROTO_TCP = 6
const IPPROTO_TP = 29
const IPPROTO_UDP = 17
const IPPROTO_UDPLITE = 136
const IPV6_2292DSTOPTS = 4
const IPV6_2292HOPLIMIT = 8
const IPV6_2292HOPOPTS = 3
const IPV6_2292PKTINFO = 2
const IPV6_2292PKTOPTIONS = 6
const IPV6_2292RTHDR = 5
const IPV6_ADDRFORM = 1
const IPV6_ADDR_PREFERENCES = 72
const IPV6_ADD_MEMBERSHIP = 20
const IPV6_AUTHHDR = 10
const IPV6_AUTOFLOWLABEL = 70
const IPV6_CHECKSUM = 7
const IPV6_DONTFRAG = 62
const IPV6_DROP_MEMBERSHIP = 21
const IPV6_DSTOPTS = 59
const IPV6_FREEBIND = 78
const IPV6_HDRINCL = 36
const IPV6_HOPLIMIT = 52
const IPV6_HOPOPTS = 54
const IPV6_IPSEC_POLICY = 34
const IPV6_JOIN_ANYCAST = 27
const IPV6_JOIN_GROUP = 20
const IPV6_LEAVE_ANYCAST = 28
const IPV6_LEAVE_GROUP = 21
const IPV6_MINHOPCOUNT = 73
const IPV6_MTU = 24
const IPV6_MTU_DISCOVER = 23
const IPV6_MULTICAST_ALL = 29
const IPV6_MULTICAST_HOPS = 18
const IPV6_MULTICAST_IF = 17
const IPV6_MULTICAST_LOOP = 19
const IPV6_NEXTHOP = 9
const IPV6_ORIGDSTADDR = 74
const IPV6_PATHMTU = 61
const IPV6_PKTINFO = 50
const IPV6_PMTUDISC_DO = 2
const IPV6_PMTUDISC_DONT = 0
const IPV6_PMTUDISC_INTERFACE = 4
const IPV6_PMTUDISC_OMIT = 5
const IPV6_PMTUDISC_PROBE = 3
const IPV6_PMTUDISC_WANT = 1
const IPV6_PREFER_SRC_CGA = 8
const IPV6_PREFER_SRC_COA = 4
const IPV6_PREFER_SRC_HOME = 1024
const IPV6_PREFER_SRC_NONCGA = 2048
const IPV6_PREFER_SRC_PUBLIC = 2
const IPV6_PREFER_SRC_PUBTMP_DEFAULT = 256
const IPV6_PREFER_SRC_TMP = 1
const IPV6_RECVDSTOPTS = 58
const IPV6_RECVERR = 25
const IPV6_RECVFRAGSIZE = 77
const IPV6_RECVHOPLIMIT = 51
const IPV6_RECVHOPOPTS = 53
const IPV6_RECVORIGDSTADDR = 74
const IPV6_RECVPATHMTU = 60
const IPV6_RECVPKTINFO = 49
const IPV6_RECVRTHDR = 56
const IPV6_RECVTCLASS = 66
const IPV6_ROUTER_ALERT = 22
const IPV6_ROUTER_ALERT_ISOLATE = 30
const IPV6_RTHDR = 57
const IPV6_RTHDRDSTOPTS = 55
const IPV6_RTHDR_LOOSE = 0
const IPV6_RTHDR_STRICT = 1
const IPV6_RTHDR_TYPE_0 = 0
const IPV6_RXDSTOPTS = 59
const IPV6_RXHOPOPTS = 54
const IPV6_TCLASS = 67
const IPV6_TRANSPARENT = 75
const IPV6_UNICAST_HOPS = 16
const IPV6_UNICAST_IF = 76
const IPV6_V6ONLY = 26
const IPV6_XFRM_POLICY = 35
const IP_ADD_MEMBERSHIP = 35
const IP_ADD_SOURCE_MEMBERSHIP = 39
const IP_BIND_ADDRESS_NO_PORT = 24
const IP_BLOCK_SOURCE = 38
const IP_CHECKSUM = 23
const IP_DEFAULT_MULTICAST_LOOP = 1
const IP_DEFAULT_MULTICAST_TTL = 1
const IP_DROP_MEMBERSHIP = 36
const IP_DROP_SOURCE_MEMBERSHIP = 40
const IP_FREEBIND = 15
const IP_HDRINCL = 3
const IP_IPSEC_POLICY = 16
const IP_MAX_MEMBERSHIPS = 20
const IP_MINTTL = 21
const IP_MSFILTER = 41
const IP_MTU = 14
const IP_MTU_DISCOVER = 10
const IP_MULTICAST_ALL = 49
const IP_MULTICAST_IF = 32
const IP_MULTICAST_LOOP = 34
const IP_MULTICAST_TTL = 33
const IP_NODEFRAG = 22
const IP_OPTIONS = 4
const IP_ORIGDSTADDR = 20
const IP_PASSSEC = 18
const IP_PKTINFO = 8
const IP_PKTOPTIONS = 9
const IP_PMTUDISC = 10
const IP_PMTUDISC_DO = 2
const IP_PMTUDISC_DONT = 0
const IP_PMTUDISC_INTERFACE = 4
const IP_PMTUDISC_OMIT = 5
const IP_PMTUDISC_PROBE = 3
const IP_PMTUDISC_WANT = 1
const IP_RECVERR = 11
const IP_RECVERR_RFC4884 = 26
const IP_RECVFRAGSIZE = 25
const IP_RECVOPTS = 6
const IP_RECVORIGDSTADDR = 20
const IP_RECVRETOPTS = 7
const IP_RECVTOS = 13
const IP_RECVTTL = 12
const IP_RETOPTS = 7
const IP_ROUTER_ALERT = 5
const IP_TOS = 1
const IP_TRANSPARENT = 19
const IP_TTL = 2
const IP_UNBLOCK_SOURCE = 37
const IP_UNICAST_IF = 50
const IP_XFRM_POLICY = 17
const IQUERY = 0
const ISIG = 1
const ISO2022_JP = 210
const ISTRIP = 32
const ITIMER_PROF = 2
const ITIMER_REAL = 0
const ITIMER_VIRTUAL = 1
const IUCLC = 512
const IUTF8 = 16384
const IXANY = 2048
const IXOFF = 4096
const IXON = 1024
const I_ATMARK = 21279
const I_CANPUT = 21282
const I_CKBAND = 21277
const I_FDINSERT = 21264
const I_FIND = 21259
const I_FLUSH = 21253
const I_FLUSHBAND = 21276
const I_GETBAND = 21278
const I_GETCLTIME = 21281
const I_GETSIG = 21258
const I_GRDOPT = 21255
const I_GWROPT = 21268
const I_LINK = 21260
const I_LIST = 21269
const I_LOOK = 21252
const I_NREAD = 21249
const I_PEEK = 21263
const I_PLINK = 21270
const I_POP = 21251
const I_PUNLINK = 21271
const I_PUSH = 21250
const I_RECVFD = 21262
const I_SENDFD = 21265
const I_SETCLTIME = 21280
const I_SETSIG = 21257
const I_SRDOPT = 21254
const I_STR = 21256
const I_SWROPT = 21267
const I_UNLINK = 21261
const JT_ARG_MAX = -254
const JT_AVPHYS_PAGES = -247
const JT_DELAYTIMER_MAX = -245
const JT_MINSIGSTKSZ = -244
const JT_MQ_PRIO_MAX = -253
const JT_NPROCESSORS_CONF = -250
const JT_NPROCESSORS_ONLN = -249
const JT_PAGE_SIZE = -252
const JT_PHYS_PAGES = -248
const JT_SEM_VALUE_MAX = -251
const JT_SIGSTKSZ = -243
const JT_ZERO = -246
const KEY_MAX = 30000
const KEY_MAX1 = 256
const KMAX = 128
const LASTMARK = 2
const LC_ALL = 6
const LC_ALL_MASK = 2147483647
const LC_COLLATE = 3
const LC_COLLATE_MASK = 8
const LC_CTYPE = 0
const LC_CTYPE_MASK = 1
const LC_GLOBAL_LOCALE = -1
const LC_MESSAGES = 5
const LC_MESSAGES_MASK = 32
const LC_MONETARY = 4
const LC_MONETARY_MASK = 16
const LC_NUMERIC = 1
const LC_NUMERIC_MASK = 2
const LC_TIME = 2
const LC_TIME_MASK = 4
const LDBL_DECIMAL_DIG = 17
const LDBL_DIG = 15
const LDBL_EPSILON = 0
const LDBL_EPSILON1 = 2.22044604925031308085e-16
const LDBL_EPSILON2 = 0
const LDBL_EPSILON3 = 2.22044604925031308085e-16
const LDBL_HAS_SUBNORM = 1
const LDBL_MANT_DIG = 53
const LDBL_MAX = 0
const LDBL_MAX1 = 1.79769313486231570815e+308
const LDBL_MAX2 = 0
const LDBL_MAX_10_EXP = 308
const LDBL_MAX_EXP = 1024
const LDBL_MIN = 0
const LDBL_MIN1 = 2.22507385850720138309e-308
const LDBL_MIN2 = 0
const LDBL_MIN_10_EXP = -307
const LDBL_MIN_EXP = -1021
const LDBL_TRUE_MIN = 0
const LD_B1B_DIG = 2
const LD_B1B_MAX = 254740991
const LEAPOCH = 951868800
const LEFT_ADJ = 8192
const LINE_MAX = 4096
const LITTLE_ENDIAN = 1234
const LITUSE_ALPHA_ADDR = 0
const LITUSE_ALPHA_BASE = 1
const LITUSE_ALPHA_BYTOFF = 2
const LITUSE_ALPHA_JSR = 3
const LITUSE_ALPHA_TLS_GD = 4
const LITUSE_ALPHA_TLS_LDM = 5
const LLONG_MAX = 9223372036854775807
const LLONG_MIN = -9223372036854775808
const LL_DELAY_LOAD = 16
const LL_DELTA = 32
const LL_EXACT_MATCH = 1
const LL_EXPORTS = 8
const LL_IGNORE_INT_VER = 2
const LL_NONE = 0
const LL_REQUIRE_MINOR = 4
const LOCALDOMAINPARTS = 2
const LOCALE_NAME_MAX = 23
const LOCK_EX = 2
const LOCK_NB = 4
const LOCK_SH = 1
const LOCK_UN = 8
const LOG2F_POLY_ORDER = 4
const LOG2F_TABLE_BITS = 4
const LOG2_POLY1_ORDER = 11
const LOG2_POLY_ORDER = 7
const LOG2_TABLE_BITS = 6
const LOGF_POLY_ORDER = 4
const LOGF_TABLE_BITS = 4
const LOGIN_NAME_MAX = 256
const LOGIN_PROCESS = 6
const LOG_ALERT = 1
const LOG_AUTH = 32
const LOG_AUTHPRIV = 80
const LOG_CONS = 2
const LOG_CRIT = 2
const LOG_CRON = 72
const LOG_DAEMON = 24
const LOG_DEBUG = 7
const LOG_EMERG = 0
const LOG_ERR = 3
const LOG_FACMASK = 1016
const LOG_FTP = 88
const LOG_INFO = 6
const LOG_KERN = 0
const LOG_LOCAL0 = 128
const LOG_LOCAL1 = 136
const LOG_LOCAL2 = 144
const LOG_LOCAL3 = 152
const LOG_LOCAL4 = 160
const LOG_LOCAL5 = 168
const LOG_LOCAL6 = 176
const LOG_LOCAL7 = 184
const LOG_LPR = 48
const LOG_MAIL = 16
const LOG_NDELAY = 8
const LOG_NEWS = 56
const LOG_NFACILITIES = 24
const LOG_NOTICE = 5
const LOG_NOWAIT = 16
const LOG_ODELAY = 4
const LOG_PERROR = 32
const LOG_PID = 1
const LOG_POLY1_ORDER = 12
const LOG_POLY_ORDER = 6
const LOG_PRIMASK = 7
const LOG_SYSLOG = 40
const LOG_TABLE_BITS = 7
const LOG_USER = 8
const LOG_UUCP = 64
const LOG_WARNING = 4
const LONG_BIT = 64
const LONG_MAX = 9223372036854775807
const LONG_MIN = -9223372036854775808
const LS = 0
const L_INCR = 1
const L_SET = 0
const L_XTND = 2
const L_ctermid = 20
const L_cuserid = 20
const L_tmpnam = 20
const MADV_COLD = 20
const MADV_DODUMP = 17
const MADV_DOFORK = 11
const MADV_DONTDUMP = 16
const MADV_DONTFORK = 10
const MADV_DONTNEED = 4
const MADV_FREE = 8
const MADV_HUGEPAGE = 14
const MADV_HWPOISON = 100
const MADV_KEEPONFORK = 19
const MADV_MERGEABLE = 12
const MADV_NOHUGEPAGE = 15
const MADV_NORMAL = 0
const MADV_PAGEOUT = 21
const MADV_RANDOM = 1
const MADV_REMOVE = 9
const MADV_SEQUENTIAL = 2
const MADV_SOFT_OFFLINE = 101
const MADV_UNMERGEABLE = 13
const MADV_WILLNEED = 3
const MADV_WIPEONFORK = 18
const MAP_32BIT = 64
const MAP_ANON = 32
const MAP_ANONYMOUS = 32
const MAP_DENYWRITE = 2048
const MAP_EXECUTABLE = 4096
const MAP_FAILED = -1
const MAP_FILE = 0
const MAP_FIXED = 16
const MAP_FIXED_NOREPLACE = 1048576
const MAP_GROWSDOWN = 256
const MAP_HUGETLB = 262144
const MAP_HUGE_16GB = 2281701376
const MAP_HUGE_16KB = 939524096
const MAP_HUGE_16MB = 1610612736
const MAP_HUGE_1GB = 2013265920
const MAP_HUGE_1MB = 1342177280
const MAP_HUGE_256MB = 1879048192
const MAP_HUGE_2GB = 2080374784
const MAP_HUGE_2MB = 1409286144
const MAP_HUGE_32MB = 1677721600
const MAP_HUGE_512KB = 1275068416
const MAP_HUGE_512MB = 1946157056
const MAP_HUGE_64KB = 1073741824
const MAP_HUGE_8MB = 1543503872
const MAP_HUGE_MASK = 63
const MAP_HUGE_SHIFT = 26
const MAP_LOCKED = 8192
const MAP_NONBLOCK = 65536
const MAP_NORESERVE = 16384
const MAP_POPULATE = 32768
const MAP_PRIVATE = 2
const MAP_SHARED = 1
const MAP_SHARED_VALIDATE = 3
const MAP_STACK = 131072
const MAP_SYNC = 524288
const MAP_TYPE = 15
const MARK_POS = 2048
const MASK = 127
const MATH_ERREXCEPT = 2
const MATH_ERRNO = 1
const MAXADDRS = 48
const MAXCDNAME = 255
const MAXDFLSRCH = 3
const MAXDNAME = 1025
const MAXDNSRCH = 6
const MAXH = 0
const MAXLABEL = 63
const MAXNS = 3
const MAXNUM = 0
const MAXNUMF = 0
const MAXQUOTAS = 2
const MAXRESOLVSORT = 10
const MAXSERVS = 2
const MAXSIZE = 1
const MAXTC = 6
const MAXTRIES = 100
const MAX_ADDR_LEN = 7
const MAX_DQ_TIME = 604800
const MAX_HANDLE_SZ = 128
const MAX_IQ_TIME = 604800
const MAX_NEG_CLASSES = 64
const MAYBE_WAITERS = 1073741824
const MB_CUR_MAX = 0
const MB_LEN_MAX = 4
const MCAST_BLOCK_SOURCE = 43
const MCAST_EXCLUDE = 0
const MCAST_INCLUDE = 1
const MCAST_JOIN_GROUP = 42
const MCAST_JOIN_SOURCE_GROUP = 46
const MCAST_LEAVE_GROUP = 45
const MCAST_LEAVE_SOURCE_GROUP = 47
const MCAST_MSFILTER = 48
const MCAST_UNBLOCK_SOURCE = 44
const MCL_CURRENT = 1
const MCL_FUTURE = 2
const MCL_ONFAULT = 4
const MFD_ALLOW_SEALING = 2
const MFD_CLOEXEC = 1
const MFD_HUGETLB = 4
const MINSIGSTKSZ = 2048
const MINSIZE = 8
const MIPS_AFL_ASE_DSP = 1
const MIPS_AFL_ASE_DSPR2 = 2
const MIPS_AFL_ASE_EVA = 4
const MIPS_AFL_ASE_MASK = 8191
const MIPS_AFL_ASE_MCU = 8
const MIPS_AFL_ASE_MDMX = 16
const MIPS_AFL_ASE_MICROMIPS = 2048
const MIPS_AFL_ASE_MIPS16 = 1024
const MIPS_AFL_ASE_MIPS3D = 32
const MIPS_AFL_ASE_MSA = 512
const MIPS_AFL_ASE_MT = 64
const MIPS_AFL_ASE_SMARTMIPS = 128
const MIPS_AFL_ASE_VIRT = 256
const MIPS_AFL_ASE_XPA = 4096
const MIPS_AFL_EXT_10000 = 11
const MIPS_AFL_EXT_3900 = 10
const MIPS_AFL_EXT_4010 = 8
const MIPS_AFL_EXT_4100 = 9
const MIPS_AFL_EXT_4111 = 13
const MIPS_AFL_EXT_4120 = 14
const MIPS_AFL_EXT_4650 = 7
const MIPS_AFL_EXT_5400 = 15
const MIPS_AFL_EXT_5500 = 16
const MIPS_AFL_EXT_5900 = 6
const MIPS_AFL_EXT_LOONGSON_2E = 17
const MIPS_AFL_EXT_LOONGSON_2F = 18
const MIPS_AFL_EXT_LOONGSON_3A = 4
const MIPS_AFL_EXT_OCTEON = 5
const MIPS_AFL_EXT_OCTEON2 = 2
const MIPS_AFL_EXT_OCTEONP = 3
const MIPS_AFL_EXT_SB1 = 12
const MIPS_AFL_EXT_XLR = 1
const MIPS_AFL_FLAGS1_ODDSPREG = 1
const MIPS_AFL_REG_128 = 3
const MIPS_AFL_REG_32 = 1
const MIPS_AFL_REG_64 = 2
const MIPS_AFL_REG_NONE = 0
const MLOCK_ONFAULT = 1
const MMAP_PAGE_ZERO = 1048576
const MM_APPL = 8
const MM_CONSOLE = 512
const MM_ERROR = 2
const MM_FIRM = 4
const MM_HALT = 1
const MM_HARD = 1
const MM_INFO = 4
const MM_NOCON = 4
const MM_NOMSG = 1
const MM_NOSEV = 0
const MM_NOTOK = -1
const MM_NRECOV = 128
const MM_NULLMC = 0
const MM_NULLSEV = 0
const MM_OK = 0
const MM_OPSYS = 32
const MM_PRINT = 256
const MM_RECOVER = 64
const MM_SOFT = 2
const MM_UTIL = 16
const MM_WARNING = 3
const MNTOPT_DEFAULTS = "defaults"
const MNTOPT_NOAUTO = "noauto"
const MNTOPT_NOSUID = "nosuid"
const MNTOPT_RO = "ro"
const MNTOPT_RW = "rw"
const MNTOPT_SUID = "suid"
const MNTTYPE_IGNORE = "ignore"
const MNTTYPE_NFS = "nfs"
const MNTTYPE_SWAP = "swap"
const MNT_DETACH = 2
const MNT_EXPIRE = 4
const MNT_FORCE = 1
const MOD_CLKA = 32769
const MOD_CLKB = 16384
const MOD_ESTERROR = 8
const MOD_FREQUENCY = 2
const MOD_MAXERROR = 4
const MOD_MICRO = 4096
const MOD_NANO = 8192
const MOD_OFFSET = 1
const MOD_STATUS = 16
const MOD_TAI = 128
const MOD_TIMECONST = 32
const MON_1 = 131098
const MON_10 = 131107
const MON_11 = 131108
const MON_12 = 131109
const MON_2 = 131099
const MON_3 = 131100
const MON_4 = 131101
const MON_5 = 131102
const MON_6 = 131103
const MON_7 = 131104
const MON_8 = 131105
const MON_9 = 131106
const MORECTL = 1
const MOREDATA = 2
const MOUNTED = "/etc/mtab"
const MQ_PRIO_MAX = 32768
const MREMAP_DONTUNMAP = 4
const MREMAP_FIXED = 2
const MREMAP_MAYMOVE = 1
const MSG_ANY = 2
const MSG_BAND = 4
const MSG_BATCH = 262144
const MSG_CMSG_CLOEXEC = 1073741824
const MSG_CONFIRM = 2048
const MSG_CTRUNC = 8
const MSG_DONTROUTE = 4
const MSG_DONTWAIT = 64
const MSG_EOR = 128
const MSG_ERRQUEUE = 8192
const MSG_EXCEPT = 8192
const MSG_FASTOPEN = 536870912
const MSG_FIN = 512
const MSG_HIPRI = 1
const MSG_INFO = 12
const MSG_MORE = 32768
const MSG_NOERROR = 4096
const MSG_NOSIGNAL = 16384
const MSG_OOB = 1
const MSG_PEEK = 2
const MSG_PROXY = 16
const MSG_RST = 4096
const MSG_STAT = 11
const MSG_STAT_ANY = 13
const MSG_SYN = 1024
const MSG_TRUNC = 32
const MSG_WAITALL = 256
const MSG_WAITFORONE = 65536
const MSG_ZEROCOPY = 67108864
const MS_ACTIVE = 1073741824
const MS_ASYNC = 1
const MS_BIND = 4096
const MS_BORN = 536870912
const MS_DIRSYNC = 128
const MS_INVALIDATE = 2
const MS_I_VERSION = 8388608
const MS_KERNMOUNT = 4194304
const MS_LAZYTIME = 33554432
const MS_MANDLOCK = 64
const MS_MGC_MSK = 4294901760
const MS_MGC_VAL = 3236757504
const MS_MOVE = 8192
const MS_NOATIME = 1024
const MS_NODEV = 4
const MS_NODIRATIME = 2048
const MS_NOEXEC = 8
const MS_NOREMOTELOCK = 134217728
const MS_NOSEC = 268435456
const MS_NOSUID = 2
const MS_NOSYMFOLLOW = 256
const MS_NOUSER = 2147483648
const MS_POSIXACL = 65536
const MS_PRIVATE = 262144
const MS_RDONLY = 1
const MS_REC = 16384
const MS_RELATIME = 2097152
const MS_REMOUNT = 32
const MS_RMT_MASK = 41943121
const MS_SHARED = 1048576
const MS_SILENT = 32768
const MS_SLAVE = 524288
const MS_STRICTATIME = 16777216
const MS_SYNC = 4
const MS_SYNCHRONOUS = 16
const MS_UNBINDABLE = 131072
const MUXID_ALL = -1
const M_1_PI = 0
const M_2_PI = 0
const M_2_SQRTPI = 0
const M_E = 0
const M_LN10 = 0
const M_LN2 = 0
const M_LOG10E = 0
const M_LOG2E = 0
const M_PI = 0
const M_PI1 = 3.141592653589793
const M_PI2 = 0
const M_PI_2 = 0
const M_PI_21 = 1.5707963267948966
const M_PI_210 = 0
const M_PI_22 = 0
const M_PI_23 = 1.5707963267948966
const M_PI_24 = 0
const M_PI_25 = 1.5707963267948966
const M_PI_26 = 0
const M_PI_27 = 1.5707963267948966
const M_PI_28 = 0
const M_PI_29 = 1.5707963267948966
const M_PI_4 = 0
const M_SQRT1_2 = 0
const M_SQRT2 = 0
const N = 128
const N1 = 32
const N10 = 12
const N2 = 128
const N3 = 32
const N4 = 128
const N5 = 64
const N6 = 16
const N7 = 128
const N8 = 16
const N9 = 128
const NAMESERVER_PORT = 53
const NAME_MAX = 255
const NAN = 0
const NCCS = 32
const NDEBUG = 1
const NETLINK_ROUTE = 0
const NEW_TIME = 3
const NGROUPS_MAX = 32
const NI_DGRAM = 16
const NI_MAXHOST = 255
const NI_MAXSERV = 32
const NI_NAMEREQD = 8
const NI_NOFQDN = 4
const NI_NUMERICHOST = 1
const NI_NUMERICSCOPE = 256
const NI_NUMERICSERV = 2
const NL0 = 0
const NL1 = 256
const NLDLY = 256
const NLMSG_DONE = 3
const NLMSG_ERROR = 2
const NLMSG_NOOP = 1
const NLMSG_OVERRUN = 4
const NLM_F_ACK = 4
const NLM_F_ATOMIC = 1024
const NLM_F_DUMP = 768
const NLM_F_MATCH = 512
const NLM_F_MULTI = 2
const NLM_F_REQUEST = 1
const NLM_F_ROOT = 256
const NL_ARGMAX = 9
const NL_CAT_LOCALE = 1
const NL_LANGMAX = 32
const NL_MSGMAX = 32767
const NL_NMAX = 16
const NL_SETD = 1
const NL_SETMAX = 255
const NL_TEXTMAX = 2048
const NOERROR = 0
const NOEXPR = 327681
const NOFLSH = 128
const NOSTR = 327683
const NOTAUTH = 0
const NOTIMP = 0
const NOTZONE = 0
const NO_ADDRESS = 4
const NO_DATA = 4
const NO_RECOVERY = 3
const NO_TIME32 = 0
const NR_DQHASH = 43
const NR_DQUOTS = 256
const NSCDVERSION = 2
const NSIG = 65
const NS_ALG_DH = 2
const NS_ALG_DSA = 3
const NS_ALG_DSS = 3
const NS_ALG_EXPIRE_ONLY = 253
const NS_ALG_MD5RSA = 1
const NS_ALG_PRIVATE_OID = 254
const NS_CMPRSFLGS = 192
const NS_DEFAULTPORT = 53
const NS_DSA_MAX_BYTES = 405
const NS_DSA_MIN_SIZE = 213
const NS_DSA_SIG_SIZE = 41
const NS_HFIXEDSZ = 12
const NS_IN6ADDRSZ = 16
const NS_INADDRSZ = 4
const NS_INT16SZ = 2
const NS_INT32SZ = 4
const NS_INT8SZ = 1
const NS_KEY_EXTENDED_FLAGS = 4096
const NS_KEY_NAME_ENTITY = 512
const NS_KEY_NAME_RESERVED = 768
const NS_KEY_NAME_TYPE = 768
const NS_KEY_NAME_USER = 0
const NS_KEY_NAME_ZONE = 256
const NS_KEY_NO_AUTH = 32768
const NS_KEY_NO_CONF = 16384
const NS_KEY_PROT_ANY = 255
const NS_KEY_PROT_DNSSEC = 3
const NS_KEY_PROT_EMAIL = 2
const NS_KEY_PROT_IPSEC = 4
const NS_KEY_PROT_TLS = 1
const NS_KEY_RESERVED10 = 32
const NS_KEY_RESERVED11 = 16
const NS_KEY_RESERVED2 = 8192
const NS_KEY_RESERVED4 = 2048
const NS_KEY_RESERVED5 = 1024
const NS_KEY_RESERVED8 = 128
const NS_KEY_RESERVED9 = 64
const NS_KEY_RESERVED_BITMASK = 11504
const NS_KEY_RESERVED_BITMASK2 = 65535
const NS_KEY_SIGNATORYMASK = 15
const NS_KEY_TYPEMASK = 49152
const NS_KEY_TYPE_AUTH_CONF = 0
const NS_KEY_TYPE_AUTH_ONLY = 16384
const NS_KEY_TYPE_CONF_ONLY = 32768
const NS_KEY_TYPE_NO_KEY = 49152
const NS_MAXCDNAME = 255
const NS_MAXDNAME = 1025
const NS_MAXLABEL = 63
const NS_MAXMSG = 65535
const NS_MD5RSA_MAX_BASE64 = 10928
const NS_MD5RSA_MAX_BITS = 4096
const NS_MD5RSA_MAX_BYTES = 8195
const NS_MD5RSA_MAX_SIZE = 512
const NS_MD5RSA_MIN_BITS = 512
const NS_MD5RSA_MIN_SIZE = 64
const NS_NOTIFY_OP = 0
const NS_NXT_BITS = 8
const NS_NXT_MAX = 127
const NS_OPT_DNSSEC_OK = 32768
const NS_OPT_NSID = 3
const NS_PACKETSZ = 512
const NS_QFIXEDSZ = 4
const NS_RRFIXEDSZ = 10
const NS_SIG_ALG = 2
const NS_SIG_EXPIR = 8
const NS_SIG_FOOT = 16
const NS_SIG_LABELS = 3
const NS_SIG_OTTL = 4
const NS_SIG_SIGNED = 12
const NS_SIG_SIGNER = 18
const NS_SIG_TYPE = 0
const NS_TSIG_ALG_HMAC_MD5 = "HMAC-MD5.SIG-ALG.REG.INT"
const NS_TSIG_ERROR_FORMERR = -12
const NS_TSIG_ERROR_NO_SPACE = -11
const NS_TSIG_ERROR_NO_TSIG = -10
const NS_TSIG_FUDGE = 300
const NS_TSIG_TCP_COUNT = 100
const NS_UPDATE_OP = 0
const NT_386_IOPERM = 513
const NT_386_TLS = 512
const NT_ARC_V2 = 1536
const NT_ARM_HW_BREAK = 1026
const NT_ARM_HW_WATCH = 1027
const NT_ARM_PACA_KEYS = 1031
const NT_ARM_PACG_KEYS = 1032
const NT_ARM_PAC_ENABLED_KEYS = 1034
const NT_ARM_PAC_MASK = 1030
const NT_ARM_SVE = 1029
const NT_ARM_SYSTEM_CALL = 1028
const NT_ARM_TAGGED_ADDR_CTRL = 1033
const NT_ARM_TLS = 1025
const NT_ARM_VFP = 1024
const NT_ASRS = 8
const NT_AUXV = 6
const NT_FILE = 1179208773
const NT_FPREGSET = 2
const NT_GNU_ABI_TAG = 1
const NT_GNU_BUILD_ID = 3
const NT_GNU_GOLD_VERSION = 4
const NT_GNU_PROPERTY_TYPE_0 = 5
const NT_GWINDOWS = 7
const NT_LOONGARCH_CPUCFG = 2560
const NT_LOONGARCH_CSR = 2561
const NT_LOONGARCH_LASX = 2563
const NT_LOONGARCH_LBT = 2564
const NT_LOONGARCH_LSX = 2562
const NT_LWPSINFO = 17
const NT_LWPSTATUS = 16
const NT_METAG_CBUF = 1280
const NT_METAG_RPIPE = 1281
const NT_METAG_TLS = 1282
const NT_MIPS_DSP = 2048
const NT_MIPS_FP_MODE = 2049
const NT_MIPS_MSA = 2050
const NT_PLATFORM = 5
const NT_PPC_DSCR = 261
const NT_PPC_EBB = 262
const NT_PPC_PMU = 263
const NT_PPC_PPR = 260
const NT_PPC_SPE = 257
const NT_PPC_TAR = 259
const NT_PPC_TM_CDSCR = 271
const NT_PPC_TM_CFPR = 265
const NT_PPC_TM_CGPR = 264
const NT_PPC_TM_CPPR = 270
const NT_PPC_TM_CTAR = 269
const NT_PPC_TM_CVMX = 266
const NT_PPC_TM_CVSX = 267
const NT_PPC_TM_SPR = 268
const NT_PPC_VMX = 256
const NT_PPC_VSX = 258
const NT_PRCRED = 14
const NT_PRFPREG = 2
const NT_PRFPXREG = 20
const NT_PRPSINFO = 3
const NT_PRSTATUS = 1
const NT_PRXFPREG = 1189489535
const NT_PRXREG = 4
const NT_PSINFO = 13
const NT_PSTATUS = 10
const NT_RISCV_CSR = 2304
const NT_RISCV_VECTOR = 2305
const NT_S390_CTRS = 772
const NT_S390_GS_BC = 780
const NT_S390_GS_CB = 779
const NT_S390_HIGH_GPRS = 768
const NT_S390_LAST_BREAK = 774
const NT_S390_PREFIX = 773
const NT_S390_RI_CB = 781
const NT_S390_SYSTEM_CALL = 775
const NT_S390_TDB = 776
const NT_S390_TIMER = 769
const NT_S390_TODCMP = 770
const NT_S390_TODPREG = 771
const NT_S390_VXRS_HIGH = 778
const NT_S390_VXRS_LOW = 777
const NT_SIGINFO = 1397311305
const NT_TASKSTRUCT = 4
const NT_UTSNAME = 15
const NT_VERSION = 1
const NT_VMCOREDD = 1792
const NT_X86_XSTATE = 514
const NXDOMAIN = 0
const NXRRSET = 0
const NZERO = 20
const N_6PACK = 7
const N_AX25 = 5
const N_CAIF = 20
const N_GIGASET_M101 = 16
const N_GSM0710 = 21
const N_HCI = 15
const N_HDLC = 13
const N_IRDA = 11
const N_MASC = 8
const N_MOUSE = 2
const N_NCI = 25
const N_NULL = 27
const N_PPP = 3
const N_PPS = 18
const N_PROFIBUS_FDL = 10
const N_R3964 = 9
const N_SLCAN = 17
const N_SLIP = 1
const N_SMSBLOCK = 12
const N_SPEAKUP = 26
const N_STRIP = 4
const N_SYNC_PPP = 14
const N_TI_WL = 22
const N_TRACEROUTER = 24
const N_TRACESINK = 23
const N_TTY = 0
const N_V253 = 19
const N_X25 = 6
const OCRNL = 8
const ODK_EXCEPTIONS = 2
const ODK_FILL = 5
const ODK_HWAND = 7
const ODK_HWOR = 8
const ODK_HWPATCH = 4
const ODK_NULL = 0
const ODK_PAD = 3
const ODK_REGINFO = 1
const ODK_TAGS = 6
const OEX_DISMISS = 524288
const OEX_FPDBUG = 262144
const OEX_FPU_DIV0 = 8
const OEX_FPU_INEX = 1
const OEX_FPU_INVAL = 16
const OEX_FPU_MAX = 7936
const OEX_FPU_MIN = 31
const OEX_FPU_OFLO = 4
const OEX_FPU_UFLO = 2
const OEX_PAGE0 = 65536
const OEX_PRECISEFP = 262144
const OEX_SMM = 131072
const OFDEL = 128
const OFF = 4604367669032910848
const OFF1 = 1060306944
const OFF2 = 4604531861337669632
const OFF3 = 1060306944
const OFF_MASK = 4095
const OFILL = 64
const OHWA0_R4KEOP_CHECKED = 1
const OHWA1_R4KEOP_CLEAN = 2
const OHW_R4KEOP = 1
const OHW_R5KCVTL = 8
const OHW_R5KEOP = 4
const OHW_R8KPFETCH = 2
const OLCUC = 2
const OLD_TIME = 4
const ONES = 0
const ONLCR = 4
const ONLRET = 32
const ONOCR = 16
const OPAD_POSTFIX = 2
const OPAD_PREFIX = 1
const OPAD_SYMBOL = 4
const OPOST = 1
const O_ACCMODE = 2097155
const O_APPEND = 1024
const O_ASYNC = 8192
const O_CLOEXEC = 524288
const O_CREAT = 64
const O_DIRECT = 16384
const O_DIRECTORY = 65536
const O_DSYNC = 4096
const O_EXCL = 128
const O_EXEC = 2097152
const O_LARGEFILE = 32768
const O_NDELAY = 2048
const O_NOATIME = 262144
const O_NOCTTY = 256
const O_NOFOLLOW = 131072
const O_NONBLOCK = 2048
const O_PATH = 2097152
const O_RDONLY = 0
const O_RDWR = 2
const O_RSYNC = 1052672
const O_SEARCH = 2097152
const O_SYNC = 1052672
const O_TMPFILE = 4259840
const O_TRUNC = 512
const O_TTY_INIT = 0
const O_WRONLY = 1
const PACKETSZ = 512
const PAD_POS = 1
const PAGESIZE = 4096
const PAGE_SIZE = 4096
const PARENB = 256
const PARMRK = 8
const PARODD = 512
const PATH_MAX = 4096
const PDP_ENDIAN = 3412
const PENDIN = 16384
const PER_BSD = 6
const PER_HPUX = 16
const PER_IRIX32 = 67108873
const PER_IRIX64 = 67108875
const PER_IRIXN32 = 67108874
const PER_ISCR4 = 67108869
const PER_LINUX = 0
const PER_LINUX32 = 8
const PER_LINUX32_3GB = 134217736
const PER_LINUX_32BIT = 8388608
const PER_LINUX_FDPIC = 524288
const PER_MASK = 255
const PER_OSF4 = 15
const PER_OSR5 = 100663299
const PER_RISCOS = 12
const PER_SCOSVR3 = 117440515
const PER_SOLARIS = 67108877
const PER_SUNOS = 67108870
const PER_SVR3 = 83886082
const PER_SVR4 = 68157441
const PER_UW7 = 68157454
const PER_WYSEV386 = 83886084
const PER_XENIX = 83886087
const PF_ALG = 38
const PF_APPLETALK = 5
const PF_ARM_ABS = 1073741824
const PF_ARM_PI = 536870912
const PF_ARM_SB = 268435456
const PF_ASH = 18
const PF_ATMPVC = 8
const PF_ATMSVC = 20
const PF_AX25 = 3
const PF_BLUETOOTH = 31
const PF_BRIDGE = 7
const PF_CAIF = 37
const PF_CAN = 29
const PF_DECnet = 12
const PF_ECONET = 19
const PF_FILE = 1
const PF_HP_CODE = 16777216
const PF_HP_FAR_SHARED = 2097152
const PF_HP_LAZYSWAP = 67108864
const PF_HP_MODIFY = 33554432
const PF_HP_NEAR_SHARED = 4194304
const PF_HP_PAGE_SIZE = 1048576
const PF_HP_SBP = 134217728
const PF_IA_64_NORECOV = 2147483648
const PF_IB = 27
const PF_IEEE802154 = 36
const PF_INET = 2
const PF_INET6 = 10
const PF_IPX = 4
const PF_IRDA = 23
const PF_ISDN = 34
const PF_IUCV = 32
const PF_KCM = 41
const PF_KEY = 15
const PF_LLC = 26
const PF_LOCAL = 1
const PF_MASKOS = 267386880
const PF_MASKPROC = 4026531840
const PF_MAX = 45
const PF_MIPS_LOCAL = 268435456
const PF_MPLS = 28
const PF_NETBEUI = 13
const PF_NETLINK = 16
const PF_NETROM = 6
const PF_NFC = 39
const PF_PACKET = 17
const PF_PARISC_SBP = 134217728
const PF_PHONET = 35
const PF_PPPOX = 24
const PF_QIPCRTR = 42
const PF_R = 4
const PF_RDS = 21
const PF_ROSE = 11
const PF_ROUTE = 16
const PF_RXRPC = 33
const PF_SECURITY = 14
const PF_SMC = 43
const PF_SNA = 22
const PF_TIPC = 30
const PF_UNIX = 1
const PF_UNSPEC = 0
const PF_VSOCK = 40
const PF_W = 2
const PF_WANPIPE = 25
const PF_X = 1
const PF_X25 = 9
const PF_XDP = 44
const PIPE_BUF = 4096
const PM_STR = 131111
const PN_XNUM = 65535
const POLLERR = 8
const POLLHUP = 16
const POLLIN = 1
const POLLMSG = 1024
const POLLNVAL = 32
const POLLOUT = 4
const POLLPRI = 2
const POLLRDBAND = 128
const POLLRDHUP = 8192
const POLLRDNORM = 64
const POLLWRBAND = 512
const POLLWRNORM = 256
const POLL_ERR = 4
const POLL_HUP = 6
const POLL_IN = 1
const POLL_MSG = 3
const POLL_OUT = 2
const POLL_PRI = 5
const POSIX_CLOSE_RESTART = 0
const POSIX_FADV_DONTNEED = 4
const POSIX_FADV_NOREUSE = 5
const POSIX_FADV_NORMAL = 0
const POSIX_FADV_RANDOM = 1
const POSIX_FADV_SEQUENTIAL = 2
const POSIX_FADV_WILLNEED = 3
const POSIX_MADV_DONTNEED = 4
const POSIX_MADV_NORMAL = 0
const POSIX_MADV_RANDOM = 1
const POSIX_MADV_SEQUENTIAL = 2
const POSIX_MADV_WILLNEED = 3
const POSIX_SPAWN_RESETIDS = 1
const POSIX_SPAWN_SETPGROUP = 2
const POSIX_SPAWN_SETSCHEDPARAM = 16
const POSIX_SPAWN_SETSCHEDULER = 32
const POSIX_SPAWN_SETSID = 128
const POSIX_SPAWN_SETSIGDEF = 4
const POSIX_SPAWN_SETSIGMASK = 8
const POSIX_SPAWN_USEVFORK = 64
const POWF_LOG2_POLY_ORDER = 5
const POWF_LOG2_TABLE_BITS = 4
const POWF_SCALE_BITS = 0
const POW_LOG_POLY_ORDER = 8
const POW_LOG_TABLE_BITS = 7
const PPC64_OPT_LOCALENTRY = 4
const PPC64_OPT_MULTI_TOC = 2
const PPC64_OPT_TLS = 1
const PPC_OPT_TLS = 1
const PRIO_MAX = 20
const PRIO_MIN = -20
const PRIO_PGRP = 1
const PRIO_PROCESS = 0
const PRIO_USER = 2
const PRIX16 = "X"
const PRIX32 = "X"
const PRIX8 = "X"
const PRIXFAST16 = "X"
const PRIXFAST32 = "X"
const PRIXFAST8 = "X"
const PRIXLEAST16 = "X"
const PRIXLEAST32 = "X"
const PRIXLEAST8 = "X"
const PRId16 = "d"
const PRId32 = "d"
const PRId8 = "d"
const PRIdFAST16 = "d"
const PRIdFAST32 = "d"
const PRIdFAST8 = "d"
const PRIdLEAST16 = "d"
const PRIdLEAST32 = "d"
const PRIdLEAST8 = "d"
const PRIi16 = "i"
const PRIi32 = "i"
const PRIi8 = "i"
const PRIiFAST16 = "i"
const PRIiFAST32 = "i"
const PRIiFAST8 = "i"
const PRIiLEAST16 = "i"
const PRIiLEAST32 = "i"
const PRIiLEAST8 = "i"
const PRIo16 = "o"
const PRIo32 = "o"
const PRIo8 = "o"
const PRIoFAST16 = "o"
const PRIoFAST32 = "o"
const PRIoFAST8 = "o"
const PRIoLEAST16 = "o"
const PRIoLEAST32 = "o"
const PRIoLEAST8 = "o"
const PRIu16 = "u"
const PRIu32 = "u"
const PRIu8 = "u"
const PRIuFAST16 = "u"
const PRIuFAST32 = "u"
const PRIuFAST8 = "u"
const PRIuLEAST16 = "u"
const PRIuLEAST32 = "u"
const PRIuLEAST8 = "u"
const PRIx16 = "x"
const PRIx32 = "x"
const PRIx8 = "x"
const PRIxFAST16 = "x"
const PRIxFAST32 = "x"
const PRIxFAST8 = "x"
const PRIxLEAST16 = "x"
const PRIxLEAST32 = "x"
const PRIxLEAST8 = "x"
const PROT_EXEC = 4
const PROT_GROWSDOWN = 16777216
const PROT_GROWSUP = 33554432
const PROT_NONE = 0
const PROT_READ = 1
const PROT_WRITE = 2
const PR_CAPBSET_DROP = 24
const PR_CAPBSET_READ = 23
const PR_CAP_AMBIENT = 47
const PR_CAP_AMBIENT_CLEAR_ALL = 4
const PR_CAP_AMBIENT_IS_SET = 1
const PR_CAP_AMBIENT_LOWER = 3
const PR_CAP_AMBIENT_RAISE = 2
const PR_ENDIAN_BIG = 0
const PR_ENDIAN_LITTLE = 1
const PR_ENDIAN_PPC_LITTLE = 2
const PR_FPEMU_NOPRINT = 1
const PR_FPEMU_SIGFPE = 2
const PR_FP_EXC_ASYNC = 2
const PR_FP_EXC_DISABLED = 0
const PR_FP_EXC_DIV = 65536
const PR_FP_EXC_INV = 1048576
const PR_FP_EXC_NONRECOV = 1
const PR_FP_EXC_OVF = 131072
const PR_FP_EXC_PRECISE = 3
const PR_FP_EXC_RES = 524288
const PR_FP_EXC_SW_ENABLE = 128
const PR_FP_EXC_UND = 262144
const PR_FP_MODE_FR = 1
const PR_FP_MODE_FRE = 2
const PR_GET_CHILD_SUBREAPER = 37
const PR_GET_DUMPABLE = 3
const PR_GET_ENDIAN = 19
const PR_GET_FPEMU = 9
const PR_GET_FPEXC = 11
const PR_GET_FP_MODE = 46
const PR_GET_IO_FLUSHER = 58
const PR_GET_KEEPCAPS = 7
const PR_GET_NAME = 16
const PR_GET_NO_NEW_PRIVS = 39
const PR_GET_PDEATHSIG = 2
const PR_GET_SECCOMP = 21
const PR_GET_SECUREBITS = 27
const PR_GET_SPECULATION_CTRL = 52
const PR_GET_TAGGED_ADDR_CTRL = 56
const PR_GET_THP_DISABLE = 42
const PR_GET_TID_ADDRESS = 40
const PR_GET_TIMERSLACK = 30
const PR_GET_TIMING = 13
const PR_GET_TSC = 25
const PR_GET_UNALIGN = 5
const PR_MCE_KILL = 33
const PR_MCE_KILL_CLEAR = 0
const PR_MCE_KILL_DEFAULT = 2
const PR_MCE_KILL_EARLY = 1
const PR_MCE_KILL_GET = 34
const PR_MCE_KILL_LATE = 0
const PR_MCE_KILL_SET = 1
const PR_MPX_DISABLE_MANAGEMENT = 44
const PR_MPX_ENABLE_MANAGEMENT = 43
const PR_MTE_TAG_MASK = 524280
const PR_MTE_TAG_SHIFT = 3
const PR_MTE_TCF_ASYNC = 4
const PR_MTE_TCF_MASK = 6
const PR_MTE_TCF_NONE = 0
const PR_MTE_TCF_SHIFT = 1
const PR_MTE_TCF_SYNC = 2
const PR_PAC_APDAKEY = 4
const PR_PAC_APDBKEY = 8
const PR_PAC_APGAKEY = 16
const PR_PAC_APIAKEY = 1
const PR_PAC_APIBKEY = 2
const PR_PAC_GET_ENABLED_KEYS = 61
const PR_PAC_RESET_KEYS = 54
const PR_PAC_SET_ENABLED_KEYS = 60
const PR_SET_CHILD_SUBREAPER = 36
const PR_SET_DUMPABLE = 4
const PR_SET_ENDIAN = 20
const PR_SET_FPEMU = 10
const PR_SET_FPEXC = 12
const PR_SET_FP_MODE = 45
const PR_SET_IO_FLUSHER = 57
const PR_SET_KEEPCAPS = 8
const PR_SET_MM = 35
const PR_SET_MM_ARG_END = 9
const PR_SET_MM_ARG_START = 8
const PR_SET_MM_AUXV = 12
const PR_SET_MM_BRK = 7
const PR_SET_MM_END_CODE = 2
const PR_SET_MM_END_DATA = 4
const PR_SET_MM_ENV_END = 11
const PR_SET_MM_ENV_START = 10
const PR_SET_MM_EXE_FILE = 13
const PR_SET_MM_MAP = 14
const PR_SET_MM_MAP_SIZE = 15
const PR_SET_MM_START_BRK = 6
const PR_SET_MM_START_CODE = 1
const PR_SET_MM_START_DATA = 3
const PR_SET_MM_START_STACK = 5
const PR_SET_NAME = 15
const PR_SET_NO_NEW_PRIVS = 38
const PR_SET_PDEATHSIG = 1
const PR_SET_PTRACER = 1499557217
const PR_SET_PTRACER_ANY = 18446744073709551615
const PR_SET_SECCOMP = 22
const PR_SET_SECUREBITS = 28
const PR_SET_SPECULATION_CTRL = 53
const PR_SET_SYSCALL_USER_DISPATCH = 59
const PR_SET_TAGGED_ADDR_CTRL = 55
const PR_SET_THP_DISABLE = 41
const PR_SET_TIMERSLACK = 29
const PR_SET_TIMING = 14
const PR_SET_TSC = 26
const PR_SET_UNALIGN = 6
const PR_SPEC_DISABLE = 4
const PR_SPEC_DISABLE_NOEXEC = 16
const PR_SPEC_ENABLE = 2
const PR_SPEC_FORCE_DISABLE = 8
const PR_SPEC_INDIRECT_BRANCH = 1
const PR_SPEC_NOT_AFFECTED = 0
const PR_SPEC_PRCTL = 1
const PR_SPEC_STORE_BYPASS = 0
const PR_SVE_GET_VL = 51
const PR_SVE_SET_VL = 50
const PR_SVE_SET_VL_ONEXEC = 262144
const PR_SVE_VL_INHERIT = 131072
const PR_SVE_VL_LEN_MASK = 65535
const PR_SYS_DISPATCH_OFF = 0
const PR_SYS_DISPATCH_ON = 1
const PR_TAGGED_ADDR_ENABLE = 1
const PR_TASK_PERF_EVENTS_DISABLE = 31
const PR_TASK_PERF_EVENTS_ENABLE = 32
const PR_TIMING_STATISTICAL = 0
const PR_TIMING_TIMESTAMP = 1
const PR_TSC_ENABLE = 1
const PR_TSC_SIGSEGV = 2
const PR_UNALIGN_NOPRINT = 1
const PR_UNALIGN_SIGBUS = 2
const PTHREAD_BARRIER_SERIAL_THREAD = -1
const PTHREAD_CANCELED = -1
const PTHREAD_CANCEL_ASYNCHRONOUS = 1
const PTHREAD_CANCEL_DEFERRED = 0
const PTHREAD_CANCEL_DISABLE = 1
const PTHREAD_CANCEL_ENABLE = 0
const PTHREAD_CANCEL_MASKED = 2
const PTHREAD_CREATE_DETACHED = 1
const PTHREAD_CREATE_JOINABLE = 0
const PTHREAD_DESTRUCTOR_ITERATIONS = 4
const PTHREAD_EXPLICIT_SCHED = 1
const PTHREAD_INHERIT_SCHED = 0
const PTHREAD_KEYS_MAX = 128
const PTHREAD_MUTEX_DEFAULT = 0
const PTHREAD_MUTEX_ERRORCHECK = 2
const PTHREAD_MUTEX_NORMAL = 0
const PTHREAD_MUTEX_RECURSIVE = 1
const PTHREAD_MUTEX_ROBUST = 1
const PTHREAD_MUTEX_STALLED = 0
const PTHREAD_ONCE_INIT = 0
const PTHREAD_PRIO_INHERIT = 1
const PTHREAD_PRIO_NONE = 0
const PTHREAD_PRIO_PROTECT = 2
const PTHREAD_PROCESS_PRIVATE = 0
const PTHREAD_PROCESS_SHARED = 1
const PTHREAD_SCOPE_PROCESS = 1
const PTHREAD_SCOPE_SYSTEM = 0
const PTHREAD_STACK_MIN = 2048
const PTRACE_ARCH_PRCTL = 30
const PTRACE_ATTACH = 16
const PTRACE_CONT = 7
const PTRACE_DETACH = 17
const PTRACE_EVENT_CLONE = 3
const PTRACE_EVENT_EXEC = 4
const PTRACE_EVENT_EXIT = 6
const PTRACE_EVENT_FORK = 1
const PTRACE_EVENT_SECCOMP = 7
const PTRACE_EVENT_STOP = 128
const PTRACE_EVENT_VFORK = 2
const PTRACE_EVENT_VFORK_DONE = 5
const PTRACE_GETEVENTMSG = 16897
const PTRACE_GETFPREGS = 14
const PTRACE_GETFPXREGS = 18
const PTRACE_GETREGS = 12
const PTRACE_GETREGSET = 16900
const PTRACE_GETSIGINFO = 16898
const PTRACE_GETSIGMASK = 16906
const PTRACE_GET_RSEQ_CONFIGURATION = 16911
const PTRACE_GET_SYSCALL_INFO = 16910
const PTRACE_GET_THREAD_AREA = 25
const PTRACE_INTERRUPT = 16903
const PTRACE_KILL = 8
const PTRACE_LISTEN = 16904
const PTRACE_O_EXITKILL = 1048576
const PTRACE_O_MASK = 3145983
const PTRACE_O_SUSPEND_SECCOMP = 2097152
const PTRACE_O_TRACECLONE = 8
const PTRACE_O_TRACEEXEC = 16
const PTRACE_O_TRACEEXIT = 64
const PTRACE_O_TRACEFORK = 2
const PTRACE_O_TRACESECCOMP = 128
const PTRACE_O_TRACESYSGOOD = 1
const PTRACE_O_TRACEVFORK = 4
const PTRACE_O_TRACEVFORKDONE = 32
const PTRACE_PEEKDATA = 2
const PTRACE_PEEKSIGINFO = 16905
const PTRACE_PEEKSIGINFO_SHARED = 1
const PTRACE_PEEKTEXT = 1
const PTRACE_PEEKUSER = 3
const PTRACE_POKEDATA = 5
const PTRACE_POKETEXT = 4
const PTRACE_POKEUSER = 6
const PTRACE_SECCOMP_GET_FILTER = 16908
const PTRACE_SECCOMP_GET_METADATA = 16909
const PTRACE_SEIZE = 16902
const PTRACE_SETFPREGS = 15
const PTRACE_SETFPXREGS = 19
const PTRACE_SETOPTIONS = 16896
const PTRACE_SETREGS = 13
const PTRACE_SETREGSET = 16901
const PTRACE_SETSIGINFO = 16899
const PTRACE_SETSIGMASK = 16907
const PTRACE_SET_THREAD_AREA = 26
const PTRACE_SINGLEBLOCK = 33
const PTRACE_SINGLESTEP = 9
const PTRACE_SYSCALL = 24
const PTRACE_SYSCALL_INFO_ENTRY = 1
const PTRACE_SYSCALL_INFO_EXIT = 2
const PTRACE_SYSCALL_INFO_NONE = 0
const PTRACE_SYSCALL_INFO_SECCOMP = 3
const PTRACE_SYSEMU = 31
const PTRACE_SYSEMU_SINGLESTEP = 32
const PTRACE_TRACEME = 0
const PTRDIFF_MAX = 9223372036854775807
const PTRDIFF_MIN = -9223372036854775808
const PT_ARCH_PRCTL = 30
const PT_ARM_EXIDX = 1879048193
const PT_ATTACH = 16
const PT_CONTINUE = 7
const PT_DETACH = 17
const PT_DYNAMIC = 2
const PT_GETEVENTMSG = 16897
const PT_GETFPREGS = 14
const PT_GETFPXREGS = 18
const PT_GETREGS = 12
const PT_GETSIGINFO = 16898
const PT_GET_THREAD_AREA = 25
const PT_GNU_EH_FRAME = 1685382480
const PT_GNU_PROPERTY = 1685382483
const PT_GNU_RELRO = 1685382482
const PT_GNU_STACK = 1685382481
const PT_HIOS = 1879048191
const PT_HIPROC = 2147483647
const PT_HISUNW = 1879048191
const PT_HP_CORE_COMM = 1610612740
const PT_HP_CORE_KERNEL = 1610612739
const PT_HP_CORE_LOADABLE = 1610612742
const PT_HP_CORE_MMF = 1610612745
const PT_HP_CORE_NONE = 1610612737
const PT_HP_CORE_PROC = 1610612741
const PT_HP_CORE_SHM = 1610612744
const PT_HP_CORE_STACK = 1610612743
const PT_HP_CORE_VERSION = 1610612738
const PT_HP_FASTBIND = 1610612753
const PT_HP_HSL_ANNOT = 1610612755
const PT_HP_OPT_ANNOT = 1610612754
const PT_HP_PARALLEL = 1610612752
const PT_HP_STACK = 1610612756
const PT_HP_TLS = 1610612736
const PT_IA_64_ARCHEXT = 1879048192
const PT_IA_64_HP_HSL_ANOT = 1610612755
const PT_IA_64_HP_OPT_ANOT = 1610612754
const PT_IA_64_HP_STACK = 1610612756
const PT_IA_64_UNWIND = 1879048193
const PT_INTERP = 3
const PT_KILL = 8
const PT_LOAD = 1
const PT_LOOS = 1610612736
const PT_LOPROC = 1879048192
const PT_LOSUNW = 1879048186
const PT_MIPS_ABIFLAGS = 1879048195
const PT_MIPS_OPTIONS = 1879048194
const PT_MIPS_REGINFO = 1879048192
const PT_MIPS_RTPROC = 1879048193
const PT_NOTE = 4
const PT_NULL = 0
const PT_NUM = 8
const PT_PARISC_ARCHEXT = 1879048192
const PT_PARISC_UNWIND = 1879048193
const PT_PHDR = 6
const PT_READ_D = 2
const PT_READ_I = 1
const PT_READ_U = 3
const PT_SETFPREGS = 15
const PT_SETFPXREGS = 19
const PT_SETOPTIONS = 16896
const PT_SETREGS = 13
const PT_SETSIGINFO = 16899
const PT_SET_THREAD_AREA = 26
const PT_SHLIB = 5
const PT_STEP = 9
const PT_STEPBLOCK = 33
const PT_SUNWBSS = 1879048186
const PT_SUNWSTACK = 1879048187
const PT_SYSCALL = 24
const PT_SYSEMU = 31
const PT_SYSEMU_SINGLESTEP = 32
const PT_TLS = 7
const PT_TRACE_ME = 0
const PT_WRITE_D = 5
const PT_WRITE_I = 4
const PT_WRITE_U = 6
const PUTLONG = 0
const PUTSHORT = 0
const PWDIRLEN = 7
const PWFOUND = 1
const PWGECOSLEN = 6
const PWGID = 5
const PWNAMELEN = 2
const PWPASSWDLEN = 3
const PWSHELLLEN = 8
const PWUID = 4
const PWVERSION = 0
const PW_LEN = 9
const P_tmpdir = "/tmp"
const QFIXEDSZ = 4
const QFMT_OCFS2 = 3
const QFMT_VFS_OLD = 1
const QFMT_VFS_V0 = 2
const QFMT_VFS_V1 = 4
const QIF_ALL = 63
const QIF_BLIMITS = 1
const QIF_BTIME = 16
const QIF_ILIMITS = 4
const QIF_INODES = 8
const QIF_ITIME = 32
const QIF_LIMITS = 5
const QIF_SPACE = 2
const QIF_TIMES = 48
const QIF_USAGE = 10
const QUERY = 0
const QUESTION = -4
const QUOTAFILENAME = "quota"
const QUOTAGROUP = "staff"
const Q_GETFMT = 8388612
const Q_GETINFO = 8388613
const Q_GETQUOTA = 8388615
const Q_QUOTAOFF = 8388611
const Q_QUOTAON = 8388610
const Q_SETINFO = 8388614
const Q_SETQUOTA = 8388616
const Q_SYNC = 8388609
const R = 2
const RADIXCHAR = 65536
const RAND_MAX = 2147483647
const RB_AUTOBOOT = 19088743
const RB_DISABLE_CAD = 0
const RB_ENABLE_CAD = 2309737967
const RB_HALT_SYSTEM = 3454992675
const RB_KEXEC = 1163412803
const RB_POWER_OFF = 1126301404
const RB_SW_SUSPEND = 3489725666
const READ_IMPLIES_EXEC = 4194304
const REFUSED = 0
const REG_BADBR = 10
const REG_BADPAT = 2
const REG_BADRPT = 13
const REG_EBRACE = 9
const REG_EBRACK = 7
const REG_ECOLLATE = 3
const REG_ECTYPE = 4
const REG_EESCAPE = 5
const REG_ENOSYS = -1
const REG_EPAREN = 8
const REG_ERANGE = 11
const REG_ESPACE = 12
const REG_ESUBREG = 6
const REG_EXTENDED = 1
const REG_ICASE = 2
const REG_NEWLINE = 4
const REG_NOMATCH = 1
const REG_NOSUB = 8
const REG_NOTBOL = 1
const REG_NOTEOL = 2
const REG_OK = 0
const REQKEYLEN = 2
const REQTYPE = 1
const REQVERSION = 0
const REQ_LEN = 3
const RES_AAONLY = 4
const RES_BLAST = 131072
const RES_DEBUG = 2
const RES_DEFAULT = 524992
const RES_DEFNAMES = 128
const RES_DFLRETRY = 2
const RES_DNSRCH = 512
const RES_EXHAUSTIVE = 1
const RES_F_CONN = 2
const RES_F_EDNS0ERR = 4
const RES_F_VC = 1
const RES_IGNTC = 32
const RES_INIT = 1
const RES_INSECURE1 = 1024
const RES_INSECURE2 = 2048
const RES_KEEPTSIG = 65536
const RES_MAXNDOTS = 15
const RES_MAXRETRANS = 30
const RES_MAXRETRY = 5
const RES_MAXTIME = 65535
const RES_NOALIASES = 4096
const RES_NOCHECKNAME = 32768
const RES_NOIP6DOTINT = 524288
const RES_PRF_ADD = 128
const RES_PRF_ANS = 32
const RES_PRF_AUTH = 64
const RES_PRF_CLASS = 4
const RES_PRF_CMD = 8
const RES_PRF_HEAD1 = 256
const RES_PRF_HEAD2 = 512
const RES_PRF_HEADX = 2048
const RES_PRF_INIT = 16384
const RES_PRF_QUERY = 4096
const RES_PRF_QUES = 16
const RES_PRF_REPLY = 8192
const RES_PRF_STATS = 1
const RES_PRF_TTLID = 1024
const RES_PRF_UPDATE = 2
const RES_PRIMARY = 16
const RES_RECURSE = 64
const RES_ROTATE = 16384
const RES_SNGLKUP = 2097152
const RES_SNGLKUPREOP = 4194304
const RES_STAYOPEN = 256
const RES_TIMEOUT = 5
const RES_USEBSTRING = 262144
const RES_USEVC = 8
const RES_USE_DNSSEC = 8388608
const RES_USE_EDNS0 = 1048576
const RES_USE_INET6 = 8192
const RE_DUP_MAX = 255
const RHF_CORD = 4096
const RHF_DEFAULT_DELAY_LOAD = 512
const RHF_DELTA_C_PLUS_PLUS = 64
const RHF_GUARANTEE_INIT = 32
const RHF_GUARANTEE_START_INIT = 128
const RHF_NONE = 0
const RHF_NOTPOT = 2
const RHF_NO_LIBRARY_REPLACEMENT = 4
const RHF_NO_MOVE = 8
const RHF_NO_UNRES_UNDEF = 8192
const RHF_PIXIE = 256
const RHF_QUICKSTART = 1
const RHF_REQUICKSTART = 1024
const RHF_REQUICKSTARTED = 2048
const RHF_RLD_ORDER_SAFE = 16384
const RHF_SGI_ONLY = 16
const RLIMIT_AS = 9
const RLIMIT_CORE = 4
const RLIMIT_CPU = 0
const RLIMIT_DATA = 2
const RLIMIT_FSIZE = 1
const RLIMIT_LOCKS = 10
const RLIMIT_MEMLOCK = 8
const RLIMIT_MSGQUEUE = 12
const RLIMIT_NICE = 13
const RLIMIT_NLIMITS = 16
const RLIMIT_NOFILE = 7
const RLIMIT_NPROC = 6
const RLIMIT_RSS = 5
const RLIMIT_RTPRIO = 14
const RLIMIT_RTTIME = 15
const RLIMIT_SIGPENDING = 11
const RLIMIT_STACK = 3
const RLIM_INFINITY = 18446744073709551615
const RLIM_NLIMITS = 16
const RLIM_SAVED_CUR = 18446744073709551615
const RLIM_SAVED_MAX = 18446744073709551615
const RMSGD = 1
const RMSGN = 2
const RNORM = 0
const ROUNDS_DEFAULT = 5000
const ROUNDS_MAX = 9999999
const ROUNDS_MIN = 1000
const RPROTDAT = 4
const RPROTDIS = 8
const RPROTMASK = 28
const RPROTNORM = 16
const RRFIXEDSZ = 10
const RR_A = 1
const RR_AAAA = 28
const RR_CNAME = 5
const RR_PTR = 12
const RS = 0
const RS_HIPRI = 1
const RTM_GETADDR = 22
const RTM_GETLINK = 18
const RTM_NEWADDR = 20
const RTM_NEWLINK = 16
const RUN_LVL = 1
const RUSAGE_CHILDREN = -1
const RUSAGE_SELF = 0
const RUSAGE_THREAD = 1
const RWF_APPEND = 16
const RWF_DSYNC = 2
const RWF_HIPRI = 1
const RWF_NOWAIT = 8
const RWF_SYNC = 4
const RWF_WRITE_LIFE_NOT_SET = 0
const RWH_WRITE_LIFE_EXTREME = 5
const RWH_WRITE_LIFE_LONG = 4
const RWH_WRITE_LIFE_MEDIUM = 3
const RWH_WRITE_LIFE_NONE = 1
const RWH_WRITE_LIFE_SHORT = 2
const R_386_16 = 20
const R_386_32 = 1
const R_386_32PLT = 11
const R_386_8 = 22
const R_386_COPY = 5
const R_386_GLOB_DAT = 6
const R_386_GOT32 = 3
const R_386_GOT32X = 43
const R_386_GOTOFF = 9
const R_386_GOTPC = 10
const R_386_IRELATIVE = 42
const R_386_JMP_SLOT = 7
const R_386_NONE = 0
const R_386_NUM = 44
const R_386_PC16 = 21
const R_386_PC32 = 2
const R_386_PC8 = 23
const R_386_PLT32 = 4
const R_386_RELATIVE = 8
const R_386_SIZE32 = 38
const R_386_TLS_DESC = 41
const R_386_TLS_DESC_CALL = 40
const R_386_TLS_DTPMOD32 = 35
const R_386_TLS_DTPOFF32 = 36
const R_386_TLS_GD = 18
const R_386_TLS_GD_32 = 24
const R_386_TLS_GD_CALL = 26
const R_386_TLS_GD_POP = 27
const R_386_TLS_GD_PUSH = 25
const R_386_TLS_GOTDESC = 39
const R_386_TLS_GOTIE = 16
const R_386_TLS_IE = 15
const R_386_TLS_IE_32 = 33
const R_386_TLS_LDM = 19
const R_386_TLS_LDM_32 = 28
const R_386_TLS_LDM_CALL = 30
const R_386_TLS_LDM_POP = 31
const R_386_TLS_LDM_PUSH = 29
const R_386_TLS_LDO_32 = 32
const R_386_TLS_LE = 17
const R_386_TLS_LE_32 = 34
const R_386_TLS_TPOFF = 14
const R_386_TLS_TPOFF32 = 37
const R_390_12 = 2
const R_390_16 = 3
const R_390_20 = 57
const R_390_32 = 4
const R_390_64 = 22
const R_390_8 = 1
const R_390_COPY = 9
const R_390_GLOB_DAT = 10
const R_390_GOT12 = 6
const R_390_GOT16 = 15
const R_390_GOT20 = 58
const R_390_GOT32 = 7
const R_390_GOT64 = 24
const R_390_GOTENT = 26
const R_390_GOTOFF16 = 27
const R_390_GOTOFF32 = 13
const R_390_GOTOFF64 = 28
const R_390_GOTPC = 14
const R_390_GOTPCDBL = 21
const R_390_GOTPLT12 = 29
const R_390_GOTPLT16 = 30
const R_390_GOTPLT20 = 59
const R_390_GOTPLT32 = 31
const R_390_GOTPLT64 = 32
const R_390_GOTPLTENT = 33
const R_390_JMP_SLOT = 11
const R_390_NONE = 0
const R_390_NUM = 61
const R_390_PC16 = 16
const R_390_PC16DBL = 17
const R_390_PC32 = 5
const R_390_PC32DBL = 19
const R_390_PC64 = 23
const R_390_PLT16DBL = 18
const R_390_PLT32 = 8
const R_390_PLT32DBL = 20
const R_390_PLT64 = 25
const R_390_PLTOFF16 = 34
const R_390_PLTOFF32 = 35
const R_390_PLTOFF64 = 36
const R_390_RELATIVE = 12
const R_390_TLS_DTPMOD = 54
const R_390_TLS_DTPOFF = 55
const R_390_TLS_GD32 = 40
const R_390_TLS_GD64 = 41
const R_390_TLS_GDCALL = 38
const R_390_TLS_GOTIE12 = 42
const R_390_TLS_GOTIE20 = 60
const R_390_TLS_GOTIE32 = 43
const R_390_TLS_GOTIE64 = 44
const R_390_TLS_IE32 = 47
const R_390_TLS_IE64 = 48
const R_390_TLS_IEENT = 49
const R_390_TLS_LDCALL = 39
const R_390_TLS_LDM32 = 45
const R_390_TLS_LDM64 = 46
const R_390_TLS_LDO32 = 52
const R_390_TLS_LDO64 = 53
const R_390_TLS_LE32 = 50
const R_390_TLS_LE64 = 51
const R_390_TLS_LOAD = 37
const R_390_TLS_TPOFF = 56
const R_68K_16 = 2
const R_68K_32 = 1
const R_68K_8 = 3
const R_68K_COPY = 19
const R_68K_GLOB_DAT = 20
const R_68K_GOT16 = 8
const R_68K_GOT16O = 11
const R_68K_GOT32 = 7
const R_68K_GOT32O = 10
const R_68K_GOT8 = 9
const R_68K_GOT8O = 12
const R_68K_JMP_SLOT = 21
const R_68K_NONE = 0
const R_68K_NUM = 43
const R_68K_PC16 = 5
const R_68K_PC32 = 4
const R_68K_PC8 = 6
const R_68K_PLT16 = 14
const R_68K_PLT16O = 17
const R_68K_PLT32 = 13
const R_68K_PLT32O = 16
const R_68K_PLT8 = 15
const R_68K_PLT8O = 18
const R_68K_RELATIVE = 22
const R_68K_TLS_DTPMOD32 = 40
const R_68K_TLS_DTPREL32 = 41
const R_68K_TLS_GD16 = 26
const R_68K_TLS_GD32 = 25
const R_68K_TLS_GD8 = 27
const R_68K_TLS_IE16 = 35
const R_68K_TLS_IE32 = 34
const R_68K_TLS_IE8 = 36
const R_68K_TLS_LDM16 = 29
const R_68K_TLS_LDM32 = 28
const R_68K_TLS_LDM8 = 30
const R_68K_TLS_LDO16 = 32
const R_68K_TLS_LDO32 = 31
const R_68K_TLS_LDO8 = 33
const R_68K_TLS_LE16 = 38
const R_68K_TLS_LE32 = 37
const R_68K_TLS_LE8 = 39
const R_68K_TLS_TPREL32 = 42
const R_AARCH64_ABS16 = 259
const R_AARCH64_ABS32 = 258
const R_AARCH64_ABS64 = 257
const R_AARCH64_ADD_ABS_LO12_NC = 277
const R_AARCH64_ADR_GOT_PAGE = 311
const R_AARCH64_ADR_PREL_LO21 = 274
const R_AARCH64_ADR_PREL_PG_HI21 = 275
const R_AARCH64_ADR_PREL_PG_HI21_NC = 276
const R_AARCH64_CALL26 = 283
const R_AARCH64_CONDBR19 = 280
const R_AARCH64_COPY = 1024
const R_AARCH64_GLOB_DAT = 1025
const R_AARCH64_GOTREL32 = 308
const R_AARCH64_GOTREL64 = 307
const R_AARCH64_GOT_LD_PREL19 = 309
const R_AARCH64_JUMP26 = 282
const R_AARCH64_JUMP_SLOT = 1026
const R_AARCH64_LD64_GOTOFF_LO15 = 310
const R_AARCH64_LD64_GOTPAGE_LO15 = 313
const R_AARCH64_LD64_GOT_LO12_NC = 312
const R_AARCH64_LDST128_ABS_LO12_NC = 299
const R_AARCH64_LDST16_ABS_LO12_NC = 284
const R_AARCH64_LDST32_ABS_LO12_NC = 285
const R_AARCH64_LDST64_ABS_LO12_NC = 286
const R_AARCH64_LDST8_ABS_LO12_NC = 278
const R_AARCH64_LD_PREL_LO19 = 273
const R_AARCH64_MOVW_GOTOFF_G0 = 300
const R_AARCH64_MOVW_GOTOFF_G0_NC = 301
const R_AARCH64_MOVW_GOTOFF_G1 = 302
const R_AARCH64_MOVW_GOTOFF_G1_NC = 303
const R_AARCH64_MOVW_GOTOFF_G2 = 304
const R_AARCH64_MOVW_GOTOFF_G2_NC = 305
const R_AARCH64_MOVW_GOTOFF_G3 = 306
const R_AARCH64_MOVW_PREL_G0 = 287
const R_AARCH64_MOVW_PREL_G0_NC = 288
const R_AARCH64_MOVW_PREL_G1 = 289
const R_AARCH64_MOVW_PREL_G1_NC = 290
const R_AARCH64_MOVW_PREL_G2 = 291
const R_AARCH64_MOVW_PREL_G2_NC = 292
const R_AARCH64_MOVW_PREL_G3 = 293
const R_AARCH64_MOVW_SABS_G0 = 270
const R_AARCH64_MOVW_SABS_G1 = 271
const R_AARCH64_MOVW_SABS_G2 = 272
const R_AARCH64_MOVW_UABS_G0 = 263
const R_AARCH64_MOVW_UABS_G0_NC = 264
const R_AARCH64_MOVW_UABS_G1 = 265
const R_AARCH64_MOVW_UABS_G1_NC = 266
const R_AARCH64_MOVW_UABS_G2 = 267
const R_AARCH64_MOVW_UABS_G2_NC = 268
const R_AARCH64_MOVW_UABS_G3 = 269
const R_AARCH64_NONE = 0
const R_AARCH64_P32_ABS32 = 1
const R_AARCH64_P32_COPY = 180
const R_AARCH64_P32_GLOB_DAT = 181
const R_AARCH64_P32_IRELATIVE = 188
const R_AARCH64_P32_JUMP_SLOT = 182
const R_AARCH64_P32_RELATIVE = 183
const R_AARCH64_P32_TLSDESC = 187
const R_AARCH64_P32_TLS_DTPMOD = 184
const R_AARCH64_P32_TLS_DTPREL = 185
const R_AARCH64_P32_TLS_TPREL = 186
const R_AARCH64_PREL16 = 262
const R_AARCH64_PREL32 = 261
const R_AARCH64_PREL64 = 260
const R_AARCH64_RELATIVE = 1027
const R_AARCH64_TLSDESC = 1031
const R_AARCH64_TLSDESC_ADD = 568
const R_AARCH64_TLSDESC_ADD_LO12 = 564
const R_AARCH64_TLSDESC_ADR_PAGE21 = 562
const R_AARCH64_TLSDESC_ADR_PREL21 = 561
const R_AARCH64_TLSDESC_CALL = 569
const R_AARCH64_TLSDESC_LD64_LO12 = 563
const R_AARCH64_TLSDESC_LDR = 567
const R_AARCH64_TLSDESC_LD_PREL19 = 560
const R_AARCH64_TLSDESC_OFF_G0_NC = 566
const R_AARCH64_TLSDESC_OFF_G1 = 565
const R_AARCH64_TLSGD_ADD_LO12_NC = 514
const R_AARCH64_TLSGD_ADR_PAGE21 = 513
const R_AARCH64_TLSGD_ADR_PREL21 = 512
const R_AARCH64_TLSGD_MOVW_G0_NC = 516
const R_AARCH64_TLSGD_MOVW_G1 = 515
const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 = 541
const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC = 542
const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 = 543
const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC = 540
const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 = 539
const R_AARCH64_TLSLD_ADD_DTPREL_HI12 = 528
const R_AARCH64_TLSLD_ADD_DTPREL_LO12 = 529
const R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC = 530
const R_AARCH64_TLSLD_ADD_LO12_NC = 519
const R_AARCH64_TLSLD_ADR_PAGE21 = 518
const R_AARCH64_TLSLD_ADR_PREL21 = 517
const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572
const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC = 573
const R_AARCH64_TLSLD_LDST16_DTPREL_LO12 = 533
const R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC = 534
const R_AARCH64_TLSLD_LDST32_DTPREL_LO12 = 535
const R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC = 536
const R_AARCH64_TLSLD_LDST64_DTPREL_LO12 = 537
const R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC = 538
const R_AARCH64_TLSLD_LDST8_DTPREL_LO12 = 531
const R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC = 532
const R_AARCH64_TLSLD_LD_PREL19 = 522
const R_AARCH64_TLSLD_MOVW_DTPREL_G0 = 526
const R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC = 527
const R_AARCH64_TLSLD_MOVW_DTPREL_G1 = 524
const R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC = 525
const R_AARCH64_TLSLD_MOVW_DTPREL_G2 = 523
const R_AARCH64_TLSLD_MOVW_G0_NC = 521
const R_AARCH64_TLSLD_MOVW_G1 = 520
const R_AARCH64_TLSLE_ADD_TPREL_HI12 = 549
const R_AARCH64_TLSLE_ADD_TPREL_LO12 = 550
const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC = 551
const R_AARCH64_TLSLE_LDST128_TPREL_LO12 = 570
const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC = 571
const R_AARCH64_TLSLE_LDST16_TPREL_LO12 = 554
const R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC = 555
const R_AARCH64_TLSLE_LDST32_TPREL_LO12 = 556
const R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC = 557
const R_AARCH64_TLSLE_LDST64_TPREL_LO12 = 558
const R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC = 559
const R_AARCH64_TLSLE_LDST8_TPREL_LO12 = 552
const R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC = 553
const R_AARCH64_TLSLE_MOVW_TPREL_G0 = 547
const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC = 548
const R_AARCH64_TLSLE_MOVW_TPREL_G1 = 545
const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC = 546
const R_AARCH64_TLSLE_MOVW_TPREL_G2 = 544
const R_AARCH64_TLS_DTPMOD = 1028
const R_AARCH64_TLS_DTPMOD64 = 1028
const R_AARCH64_TLS_DTPREL = 1029
const R_AARCH64_TLS_DTPREL64 = 1029
const R_AARCH64_TLS_TPREL = 1030
const R_AARCH64_TLS_TPREL64 = 1030
const R_AARCH64_TSTBR14 = 279
const R_ALPHA_BRADDR = 7
const R_ALPHA_COPY = 24
const R_ALPHA_DTPMOD64 = 31
const R_ALPHA_DTPREL16 = 36
const R_ALPHA_DTPREL64 = 33
const R_ALPHA_DTPRELHI = 34
const R_ALPHA_DTPRELLO = 35
const R_ALPHA_GLOB_DAT = 25
const R_ALPHA_GOTDTPREL = 32
const R_ALPHA_GOTTPREL = 37
const R_ALPHA_GPDISP = 6
const R_ALPHA_GPREL16 = 19
const R_ALPHA_GPREL32 = 3
const R_ALPHA_GPRELHIGH = 17
const R_ALPHA_GPRELLOW = 18
const R_ALPHA_HINT = 8
const R_ALPHA_JMP_SLOT = 26
const R_ALPHA_LITERAL = 4
const R_ALPHA_LITUSE = 5
const R_ALPHA_NONE = 0
const R_ALPHA_NUM = 46
const R_ALPHA_REFLONG = 1
const R_ALPHA_REFQUAD = 2
const R_ALPHA_RELATIVE = 27
const R_ALPHA_SREL16 = 9
const R_ALPHA_SREL32 = 10
const R_ALPHA_SREL64 = 11
const R_ALPHA_TLSGD = 29
const R_ALPHA_TLS_GD_HI = 28
const R_ALPHA_TLS_LDM = 30
const R_ALPHA_TPREL16 = 41
const R_ALPHA_TPREL64 = 38
const R_ALPHA_TPRELHI = 39
const R_ALPHA_TPRELLO = 40
const R_ARM_ABS12 = 6
const R_ARM_ABS16 = 5
const R_ARM_ABS32 = 2
const R_ARM_ABS32_NOI = 55
const R_ARM_ABS8 = 8
const R_ARM_ALU_PCREL_15_8 = 33
const R_ARM_ALU_PCREL_23_15 = 34
const R_ARM_ALU_PCREL_7_0 = 32
const R_ARM_ALU_PC_G0 = 58
const R_ARM_ALU_PC_G0_NC = 57
const R_ARM_ALU_PC_G1 = 60
const R_ARM_ALU_PC_G1_NC = 59
const R_ARM_ALU_PC_G2 = 61
const R_ARM_ALU_SBREL_19_12 = 36
const R_ARM_ALU_SBREL_27_20 = 37
const R_ARM_ALU_SB_G0 = 71
const R_ARM_ALU_SB_G0_NC = 70
const R_ARM_ALU_SB_G1 = 73
const R_ARM_ALU_SB_G1_NC = 72
const R_ARM_ALU_SB_G2 = 74
const R_ARM_AMP_VCALL9 = 12
const R_ARM_BASE_ABS = 31
const R_ARM_CALL = 28
const R_ARM_COPY = 20
const R_ARM_GLOB_DAT = 21
const R_ARM_GNU_VTENTRY = 100
const R_ARM_GNU_VTINHERIT = 101
const R_ARM_GOT32 = 26
const R_ARM_GOTOFF = 24
const R_ARM_GOTOFF12 = 98
const R_ARM_GOTPC = 25
const R_ARM_GOTRELAX = 99
const R_ARM_GOT_ABS = 95
const R_ARM_GOT_BREL12 = 97
const R_ARM_GOT_PREL = 96
const R_ARM_IRELATIVE = 160
const R_ARM_JUMP24 = 29
const R_ARM_JUMP_SLOT = 22
const R_ARM_LDC_PC_G0 = 67
const R_ARM_LDC_PC_G1 = 68
const R_ARM_LDC_PC_G2 = 69
const R_ARM_LDC_SB_G0 = 81
const R_ARM_LDC_SB_G1 = 82
const R_ARM_LDC_SB_G2 = 83
const R_ARM_LDRS_PC_G0 = 64
const R_ARM_LDRS_PC_G1 = 65
const R_ARM_LDRS_PC_G2 = 66
const R_ARM_LDRS_SB_G0 = 78
const R_ARM_LDRS_SB_G1 = 79
const R_ARM_LDRS_SB_G2 = 80
const R_ARM_LDR_PC_G1 = 62
const R_ARM_LDR_PC_G2 = 63
const R_ARM_LDR_SBREL_11_0 = 35
const R_ARM_LDR_SB_G0 = 75
const R_ARM_LDR_SB_G1 = 76
const R_ARM_LDR_SB_G2 = 77
const R_ARM_ME_TOO = 128
const R_ARM_MOVT_ABS = 44
const R_ARM_MOVT_BREL = 85
const R_ARM_MOVT_PREL = 46
const R_ARM_MOVW_ABS_NC = 43
const R_ARM_MOVW_BREL = 86
const R_ARM_MOVW_BREL_NC = 84
const R_ARM_MOVW_PREL_NC = 45
const R_ARM_NONE = 0
const R_ARM_NUM = 256
const R_ARM_PC13 = 4
const R_ARM_PC24 = 1
const R_ARM_PLT32 = 27
const R_ARM_PLT32_ABS = 94
const R_ARM_PREL31 = 42
const R_ARM_RABS22 = 253
const R_ARM_RBASE = 255
const R_ARM_REL32 = 3
const R_ARM_REL32_NOI = 56
const R_ARM_RELATIVE = 23
const R_ARM_RPC24 = 254
const R_ARM_RREL32 = 252
const R_ARM_RSBREL32 = 250
const R_ARM_RXPC25 = 249
const R_ARM_SBREL31 = 39
const R_ARM_SBREL32 = 9
const R_ARM_TARGET1 = 38
const R_ARM_TARGET2 = 41
const R_ARM_THM_ABS5 = 7
const R_ARM_THM_ALU_PREL_11_0 = 53
const R_ARM_THM_GOT_BREL12 = 131
const R_ARM_THM_JUMP19 = 51
const R_ARM_THM_JUMP24 = 30
const R_ARM_THM_JUMP6 = 52
const R_ARM_THM_MOVT_ABS = 48
const R_ARM_THM_MOVT_BREL = 88
const R_ARM_THM_MOVT_PREL = 50
const R_ARM_THM_MOVW_ABS_NC = 47
const R_ARM_THM_MOVW_BREL = 89
const R_ARM_THM_MOVW_BREL_NC = 87
const R_ARM_THM_MOVW_PREL_NC = 49
const R_ARM_THM_PC11 = 102
const R_ARM_THM_PC12 = 54
const R_ARM_THM_PC22 = 10
const R_ARM_THM_PC8 = 11
const R_ARM_THM_PC9 = 103
const R_ARM_THM_RPC22 = 251
const R_ARM_THM_SWI8 = 14
const R_ARM_THM_TLS_CALL = 93
const R_ARM_THM_TLS_DESCSEQ = 129
const R_ARM_THM_TLS_DESCSEQ16 = 129
const R_ARM_THM_TLS_DESCSEQ32 = 130
const R_ARM_THM_XPC22 = 16
const R_ARM_TLS_CALL = 91
const R_ARM_TLS_DESC = 13
const R_ARM_TLS_DESCSEQ = 92
const R_ARM_TLS_DTPMOD32 = 17
const R_ARM_TLS_DTPOFF32 = 18
const R_ARM_TLS_GD32 = 104
const R_ARM_TLS_GOTDESC = 90
const R_ARM_TLS_IE12GP = 111
const R_ARM_TLS_IE32 = 107
const R_ARM_TLS_LDM32 = 105
const R_ARM_TLS_LDO12 = 109
const R_ARM_TLS_LDO32 = 106
const R_ARM_TLS_LE12 = 110
const R_ARM_TLS_LE32 = 108
const R_ARM_TLS_TPOFF32 = 19
const R_ARM_V4BX = 40
const R_ARM_XPC25 = 15
const R_BPF_MAP_FD = 1
const R_BPF_NONE = 0
const R_CKCORE_ADDR32 = 1
const R_CKCORE_ADDRGOT = 17
const R_CKCORE_ADDRGOT_HI16 = 36
const R_CKCORE_ADDRGOT_LO16 = 37
const R_CKCORE_ADDRPLT = 18
const R_CKCORE_ADDRPLT_HI16 = 38
const R_CKCORE_ADDRPLT_LO16 = 39
const R_CKCORE_ADDR_HI16 = 24
const R_CKCORE_ADDR_LO16 = 25
const R_CKCORE_COPY = 10
const R_CKCORE_DOFFSET_IMM18 = 44
const R_CKCORE_DOFFSET_IMM18BY2 = 45
const R_CKCORE_DOFFSET_IMM18BY4 = 46
const R_CKCORE_DOFFSET_LO16 = 42
const R_CKCORE_GLOB_DAT = 11
const R_CKCORE_GOT12 = 30
const R_CKCORE_GOT32 = 15
const R_CKCORE_GOTOFF = 13
const R_CKCORE_GOTOFF_HI16 = 28
const R_CKCORE_GOTOFF_LO16 = 29
const R_CKCORE_GOTPC = 14
const R_CKCORE_GOTPC_HI16 = 26
const R_CKCORE_GOTPC_LO16 = 27
const R_CKCORE_GOT_HI16 = 31
const R_CKCORE_GOT_IMM18BY4 = 48
const R_CKCORE_GOT_LO16 = 32
const R_CKCORE_JUMP_SLOT = 12
const R_CKCORE_NONE = 0
const R_CKCORE_PCREL32 = 5
const R_CKCORE_PCRELIMM11BY2 = 3
const R_CKCORE_PCRELIMM8BY4 = 2
const R_CKCORE_PCRELJSR_IMM11BY2 = 6
const R_CKCORE_PCREL_IMM10BY2 = 22
const R_CKCORE_PCREL_IMM10BY4 = 23
const R_CKCORE_PCREL_IMM16BY2 = 20
const R_CKCORE_PCREL_IMM16BY4 = 21
const R_CKCORE_PCREL_IMM18BY2 = 43
const R_CKCORE_PCREL_IMM26BY2 = 19
const R_CKCORE_PCREL_IMM7BY4 = 50
const R_CKCORE_PCREL_JSR_IMM26BY2 = 40
const R_CKCORE_PLT12 = 33
const R_CKCORE_PLT32 = 16
const R_CKCORE_PLT_HI16 = 34
const R_CKCORE_PLT_IMM18BY4 = 49
const R_CKCORE_PLT_LO16 = 35
const R_CKCORE_RELATIVE = 9
const R_CKCORE_TLS_DTPMOD32 = 56
const R_CKCORE_TLS_DTPOFF32 = 57
const R_CKCORE_TLS_GD32 = 53
const R_CKCORE_TLS_IE32 = 52
const R_CKCORE_TLS_LDM32 = 54
const R_CKCORE_TLS_LDO32 = 55
const R_CKCORE_TLS_LE32 = 51
const R_CKCORE_TLS_TPOFF32 = 58
const R_CKCORE_TOFFSET_LO16 = 41
const R_CRIS_16 = 2
const R_CRIS_16_GOT = 13
const R_CRIS_16_GOTPLT = 15
const R_CRIS_16_PCREL = 5
const R_CRIS_32 = 3
const R_CRIS_32_GOT = 14
const R_CRIS_32_GOTPLT = 16
const R_CRIS_32_GOTREL = 17
const R_CRIS_32_PCREL = 6
const R_CRIS_32_PLT_GOTREL = 18
const R_CRIS_32_PLT_PCREL = 19
const R_CRIS_8 = 1
const R_CRIS_8_PCREL = 4
const R_CRIS_COPY = 9
const R_CRIS_GLOB_DAT = 10
const R_CRIS_GNU_VTENTRY = 8
const R_CRIS_GNU_VTINHERIT = 7
const R_CRIS_JUMP_SLOT = 11
const R_CRIS_NONE = 0
const R_CRIS_NUM = 20
const R_CRIS_RELATIVE = 12
const R_IA64_COPY = 132
const R_IA64_DIR32LSB = 37
const R_IA64_DIR32MSB = 36
const R_IA64_DIR64LSB = 39
const R_IA64_DIR64MSB = 38
const R_IA64_DTPMOD64LSB = 167
const R_IA64_DTPMOD64MSB = 166
const R_IA64_DTPREL14 = 177
const R_IA64_DTPREL22 = 178
const R_IA64_DTPREL32LSB = 181
const R_IA64_DTPREL32MSB = 180
const R_IA64_DTPREL64I = 179
const R_IA64_DTPREL64LSB = 183
const R_IA64_DTPREL64MSB = 182
const R_IA64_FPTR32LSB = 69
const R_IA64_FPTR32MSB = 68
const R_IA64_FPTR64I = 67
const R_IA64_FPTR64LSB = 71
const R_IA64_FPTR64MSB = 70
const R_IA64_GPREL22 = 42
const R_IA64_GPREL32LSB = 45
const R_IA64_GPREL32MSB = 44
const R_IA64_GPREL64I = 43
const R_IA64_GPREL64LSB = 47
const R_IA64_GPREL64MSB = 46
const R_IA64_IMM14 = 33
const R_IA64_IMM22 = 34
const R_IA64_IMM64 = 35
const R_IA64_IPLTLSB = 129
const R_IA64_IPLTMSB = 128
const R_IA64_LDXMOV = 135
const R_IA64_LTOFF22 = 50
const R_IA64_LTOFF22X = 134
const R_IA64_LTOFF64I = 51
const R_IA64_LTOFF_DTPMOD22 = 170
const R_IA64_LTOFF_DTPREL22 = 186
const R_IA64_LTOFF_FPTR22 = 82
const R_IA64_LTOFF_FPTR32LSB = 85
const R_IA64_LTOFF_FPTR32MSB = 84
const R_IA64_LTOFF_FPTR64I = 83
const R_IA64_LTOFF_FPTR64LSB = 87
const R_IA64_LTOFF_FPTR64MSB = 86
const R_IA64_LTOFF_TPREL22 = 154
const R_IA64_LTV32LSB = 117
const R_IA64_LTV32MSB = 116
const R_IA64_LTV64LSB = 119
const R_IA64_LTV64MSB = 118
const R_IA64_NONE = 0
const R_IA64_PCREL21B = 73
const R_IA64_PCREL21BI = 121
const R_IA64_PCREL21F = 75
const R_IA64_PCREL21M = 74
const R_IA64_PCREL22 = 122
const R_IA64_PCREL32LSB = 77
const R_IA64_PCREL32MSB = 76
const R_IA64_PCREL60B = 72
const R_IA64_PCREL64I = 123
const R_IA64_PCREL64LSB = 79
const R_IA64_PCREL64MSB = 78
const R_IA64_PLTOFF22 = 58
const R_IA64_PLTOFF64I = 59
const R_IA64_PLTOFF64LSB = 63
const R_IA64_PLTOFF64MSB = 62
const R_IA64_REL32LSB = 109
const R_IA64_REL32MSB = 108
const R_IA64_REL64LSB = 111
const R_IA64_REL64MSB = 110
const R_IA64_SECREL32LSB = 101
const R_IA64_SECREL32MSB = 100
const R_IA64_SECREL64LSB = 103
const R_IA64_SECREL64MSB = 102
const R_IA64_SEGREL32LSB = 93
const R_IA64_SEGREL32MSB = 92
const R_IA64_SEGREL64LSB = 95
const R_IA64_SEGREL64MSB = 94
const R_IA64_SUB = 133
const R_IA64_TPREL14 = 145
const R_IA64_TPREL22 = 146
const R_IA64_TPREL64I = 147
const R_IA64_TPREL64LSB = 151
const R_IA64_TPREL64MSB = 150
const R_LARCH_32 = 1
const R_LARCH_32_PCREL = 99
const R_LARCH_64 = 2
const R_LARCH_ABS64_HI12 = 70
const R_LARCH_ABS64_LO20 = 69
const R_LARCH_ABS_HI20 = 67
const R_LARCH_ABS_LO12 = 68
const R_LARCH_ADD16 = 48
const R_LARCH_ADD24 = 49
const R_LARCH_ADD32 = 50
const R_LARCH_ADD64 = 51
const R_LARCH_ADD8 = 47
const R_LARCH_B16 = 64
const R_LARCH_B21 = 65
const R_LARCH_B26 = 66
const R_LARCH_COPY = 4
const R_LARCH_GNU_VTENTRY = 58
const R_LARCH_GNU_VTINHERIT = 57
const R_LARCH_GOT64_HI12 = 82
const R_LARCH_GOT64_LO20 = 81
const R_LARCH_GOT64_PC_HI12 = 78
const R_LARCH_GOT64_PC_LO20 = 77
const R_LARCH_GOT_HI20 = 79
const R_LARCH_GOT_LO12 = 80
const R_LARCH_GOT_PC_HI20 = 75
const R_LARCH_GOT_PC_LO12 = 76
const R_LARCH_IRELATIVE = 12
const R_LARCH_JUMP_SLOT = 5
const R_LARCH_MARK_LA = 20
const R_LARCH_MARK_PCREL = 21
const R_LARCH_NONE = 0
const R_LARCH_PCALA64_HI12 = 74
const R_LARCH_PCALA64_LO20 = 73
const R_LARCH_PCALA_HI20 = 71
const R_LARCH_PCALA_LO12 = 72
const R_LARCH_RELATIVE = 3
const R_LARCH_RELAX = 100
const R_LARCH_SOP_ADD = 35
const R_LARCH_SOP_AND = 36
const R_LARCH_SOP_ASSERT = 30
const R_LARCH_SOP_IF_ELSE = 37
const R_LARCH_SOP_NOT = 31
const R_LARCH_SOP_POP_32_S_0_10_10_16_S2 = 45
const R_LARCH_SOP_POP_32_S_0_5_10_16_S2 = 44
const R_LARCH_SOP_POP_32_S_10_12 = 40
const R_LARCH_SOP_POP_32_S_10_16 = 41
const R_LARCH_SOP_POP_32_S_10_16_S2 = 42
const R_LARCH_SOP_POP_32_S_10_5 = 38
const R_LARCH_SOP_POP_32_S_5_20 = 43
const R_LARCH_SOP_POP_32_U = 46
const R_LARCH_SOP_POP_32_U_10_12 = 39
const R_LARCH_SOP_PUSH_ABSOLUTE = 23
const R_LARCH_SOP_PUSH_DUP = 24
const R_LARCH_SOP_PUSH_GPREL = 25
const R_LARCH_SOP_PUSH_PCREL = 22
const R_LARCH_SOP_PUSH_PLT_PCREL = 29
const R_LARCH_SOP_PUSH_TLS_GD = 28
const R_LARCH_SOP_PUSH_TLS_GOT = 27
const R_LARCH_SOP_PUSH_TLS_TPREL = 26
const R_LARCH_SOP_SL = 33
const R_LARCH_SOP_SR = 34
const R_LARCH_SOP_SUB = 32
const R_LARCH_SUB16 = 53
const R_LARCH_SUB24 = 54
const R_LARCH_SUB32 = 55
const R_LARCH_SUB64 = 56
const R_LARCH_SUB8 = 52
const R_LARCH_TLS_DTPMOD32 = 6
const R_LARCH_TLS_DTPMOD64 = 7
const R_LARCH_TLS_DTPREL32 = 8
const R_LARCH_TLS_DTPREL64 = 9
const R_LARCH_TLS_GD_HI20 = 98
const R_LARCH_TLS_GD_PC_HI20 = 97
const R_LARCH_TLS_IE64_HI12 = 94
const R_LARCH_TLS_IE64_LO20 = 93
const R_LARCH_TLS_IE64_PC_HI12 = 90
const R_LARCH_TLS_IE64_PC_LO20 = 89
const R_LARCH_TLS_IE_HI20 = 91
const R_LARCH_TLS_IE_LO12 = 92
const R_LARCH_TLS_IE_PC_HI20 = 87
const R_LARCH_TLS_IE_PC_LO12 = 88
const R_LARCH_TLS_LD_HI20 = 96
const R_LARCH_TLS_LD_PC_HI20 = 95
const R_LARCH_TLS_LE64_HI12 = 86
const R_LARCH_TLS_LE64_LO20 = 85
const R_LARCH_TLS_LE_HI20 = 83
const R_LARCH_TLS_LE_LO12 = 84
const R_LARCH_TLS_TPREL32 = 10
const R_LARCH_TLS_TPREL64 = 11
const R_M32R_10_PCREL = 4
const R_M32R_10_PCREL_RELA = 36
const R_M32R_16 = 1
const R_M32R_16_RELA = 33
const R_M32R_18_PCREL = 5
const R_M32R_18_PCREL_RELA = 37
const R_M32R_24 = 3
const R_M32R_24_RELA = 35
const R_M32R_26_PCREL = 6
const R_M32R_26_PCREL_RELA = 38
const R_M32R_26_PLTREL = 49
const R_M32R_32 = 2
const R_M32R_32_RELA = 34
const R_M32R_COPY = 50
const R_M32R_GLOB_DAT = 51
const R_M32R_GNU_VTENTRY = 12
const R_M32R_GNU_VTINHERIT = 11
const R_M32R_GOT16_HI_SLO = 57
const R_M32R_GOT16_HI_ULO = 56
const R_M32R_GOT16_LO = 58
const R_M32R_GOT24 = 48
const R_M32R_GOTOFF = 54
const R_M32R_GOTOFF_HI_SLO = 63
const R_M32R_GOTOFF_HI_ULO = 62
const R_M32R_GOTOFF_LO = 64
const R_M32R_GOTPC24 = 55
const R_M32R_GOTPC_HI_SLO = 60
const R_M32R_GOTPC_HI_ULO = 59
const R_M32R_GOTPC_LO = 61
const R_M32R_HI16_SLO = 8
const R_M32R_HI16_SLO_RELA = 40
const R_M32R_HI16_ULO = 7
const R_M32R_HI16_ULO_RELA = 39
const R_M32R_JMP_SLOT = 52
const R_M32R_LO16 = 9
const R_M32R_LO16_RELA = 41
const R_M32R_NONE = 0
const R_M32R_NUM = 256
const R_M32R_REL32 = 45
const R_M32R_RELATIVE = 53
const R_M32R_RELA_GNU_VTENTRY = 44
const R_M32R_RELA_GNU_VTINHERIT = 43
const R_M32R_SDA16 = 10
const R_M32R_SDA16_RELA = 42
const R_MICROBLAZE_32 = 1
const R_MICROBLAZE_32_LO = 6
const R_MICROBLAZE_32_PCREL = 2
const R_MICROBLAZE_32_PCREL_LO = 4
const R_MICROBLAZE_32_SYM_OP_SYM = 10
const R_MICROBLAZE_64 = 5
const R_MICROBLAZE_64_NONE = 9
const R_MICROBLAZE_64_PCREL = 3
const R_MICROBLAZE_COPY = 21
const R_MICROBLAZE_GLOB_DAT = 18
const R_MICROBLAZE_GNU_VTENTRY = 12
const R_MICROBLAZE_GNU_VTINHERIT = 11
const R_MICROBLAZE_GOTOFF_32 = 20
const R_MICROBLAZE_GOTOFF_64 = 19
const R_MICROBLAZE_GOTPC_64 = 13
const R_MICROBLAZE_GOT_64 = 14
const R_MICROBLAZE_JUMP_SLOT = 17
const R_MICROBLAZE_NONE = 0
const R_MICROBLAZE_PLT_64 = 15
const R_MICROBLAZE_REL = 16
const R_MICROBLAZE_SRO32 = 7
const R_MICROBLAZE_SRW32 = 8
const R_MICROBLAZE_TLS = 22
const R_MICROBLAZE_TLSDTPMOD32 = 25
const R_MICROBLAZE_TLSDTPREL32 = 26
const R_MICROBLAZE_TLSDTPREL64 = 27
const R_MICROBLAZE_TLSGD = 23
const R_MICROBLAZE_TLSGOTTPREL32 = 28
const R_MICROBLAZE_TLSLD = 24
const R_MICROBLAZE_TLSTPREL32 = 29
const R_MIPS_16 = 1
const R_MIPS_26 = 4
const R_MIPS_32 = 2
const R_MIPS_64 = 18
const R_MIPS_ADD_IMMEDIATE = 34
const R_MIPS_CALL16 = 11
const R_MIPS_CALL_HI16 = 30
const R_MIPS_CALL_LO16 = 31
const R_MIPS_COPY = 126
const R_MIPS_DELETE = 27
const R_MIPS_GLOB_DAT = 51
const R_MIPS_GOT16 = 9
const R_MIPS_GOT_DISP = 19
const R_MIPS_GOT_HI16 = 22
const R_MIPS_GOT_LO16 = 23
const R_MIPS_GOT_OFST = 21
const R_MIPS_GOT_PAGE = 20
const R_MIPS_GPREL16 = 7
const R_MIPS_GPREL32 = 12
const R_MIPS_HI16 = 5
const R_MIPS_HIGHER = 28
const R_MIPS_HIGHEST = 29
const R_MIPS_INSERT_A = 25
const R_MIPS_INSERT_B = 26
const R_MIPS_JALR = 37
const R_MIPS_JUMP_SLOT = 127
const R_MIPS_LITERAL = 8
const R_MIPS_LO16 = 6
const R_MIPS_NONE = 0
const R_MIPS_NUM = 128
const R_MIPS_PC16 = 10
const R_MIPS_PJUMP = 35
const R_MIPS_REL16 = 33
const R_MIPS_REL32 = 3
const R_MIPS_RELGOT = 36
const R_MIPS_SCN_DISP = 32
const R_MIPS_SHIFT5 = 16
const R_MIPS_SHIFT6 = 17
const R_MIPS_SUB = 24
const R_MIPS_TLS_DTPMOD32 = 38
const R_MIPS_TLS_DTPMOD64 = 40
const R_MIPS_TLS_DTPREL32 = 39
const R_MIPS_TLS_DTPREL64 = 41
const R_MIPS_TLS_DTPREL_HI16 = 44
const R_MIPS_TLS_DTPREL_LO16 = 45
const R_MIPS_TLS_GD = 42
const R_MIPS_TLS_GOTTPREL = 46
const R_MIPS_TLS_LDM = 43
const R_MIPS_TLS_TPREL32 = 47
const R_MIPS_TLS_TPREL64 = 48
const R_MIPS_TLS_TPREL_HI16 = 49
const R_MIPS_TLS_TPREL_LO16 = 50
const R_MN10300_16 = 2
const R_MN10300_24 = 9
const R_MN10300_32 = 1
const R_MN10300_8 = 3
const R_MN10300_COPY = 20
const R_MN10300_GLOB_DAT = 21
const R_MN10300_GNU_VTENTRY = 8
const R_MN10300_GNU_VTINHERIT = 7
const R_MN10300_GOT16 = 19
const R_MN10300_GOT24 = 18
const R_MN10300_GOT32 = 17
const R_MN10300_GOTOFF16 = 14
const R_MN10300_GOTOFF24 = 13
const R_MN10300_GOTOFF32 = 12
const R_MN10300_GOTPC16 = 11
const R_MN10300_GOTPC32 = 10
const R_MN10300_JMP_SLOT = 22
const R_MN10300_NONE = 0
const R_MN10300_NUM = 24
const R_MN10300_PCREL16 = 5
const R_MN10300_PCREL32 = 4
const R_MN10300_PCREL8 = 6
const R_MN10300_PLT16 = 16
const R_MN10300_PLT32 = 15
const R_MN10300_RELATIVE = 23
const R_NIOS2_ALIGN = 21
const R_NIOS2_BFD_RELOC_16 = 13
const R_NIOS2_BFD_RELOC_32 = 12
const R_NIOS2_BFD_RELOC_8 = 14
const R_NIOS2_CACHE_OPX = 6
const R_NIOS2_CALL16 = 23
const R_NIOS2_CALL26 = 4
const R_NIOS2_CALL26_NOAT = 41
const R_NIOS2_CALLR = 20
const R_NIOS2_CALL_HA = 45
const R_NIOS2_CALL_LO = 44
const R_NIOS2_CJMP = 19
const R_NIOS2_COPY = 36
const R_NIOS2_GLOB_DAT = 37
const R_NIOS2_GNU_VTENTRY = 17
const R_NIOS2_GNU_VTINHERIT = 16
const R_NIOS2_GOT16 = 22
const R_NIOS2_GOTOFF = 40
const R_NIOS2_GOTOFF_HA = 25
const R_NIOS2_GOTOFF_LO = 24
const R_NIOS2_GOT_HA = 43
const R_NIOS2_GOT_LO = 42
const R_NIOS2_GPREL = 15
const R_NIOS2_HI16 = 9
const R_NIOS2_HIADJ16 = 11
const R_NIOS2_IMM5 = 5
const R_NIOS2_IMM6 = 7
const R_NIOS2_IMM8 = 8
const R_NIOS2_JUMP_SLOT = 38
const R_NIOS2_LO16 = 10
const R_NIOS2_NONE = 0
const R_NIOS2_PCREL16 = 3
const R_NIOS2_PCREL_HA = 27
const R_NIOS2_PCREL_LO = 26
const R_NIOS2_RELATIVE = 39
const R_NIOS2_S16 = 1
const R_NIOS2_TLS_DTPMOD = 33
const R_NIOS2_TLS_DTPREL = 34
const R_NIOS2_TLS_GD16 = 28
const R_NIOS2_TLS_IE16 = 31
const R_NIOS2_TLS_LDM16 = 29
const R_NIOS2_TLS_LDO16 = 30
const R_NIOS2_TLS_LE16 = 32
const R_NIOS2_TLS_TPREL = 35
const R_NIOS2_U16 = 2
const R_NIOS2_UJMP = 18
const R_OK = 4
const R_OR1K_16 = 2
const R_OR1K_16_PCREL = 10
const R_OR1K_32 = 1
const R_OR1K_32_PCREL = 9
const R_OR1K_8 = 3
const R_OR1K_8_PCREL = 11
const R_OR1K_COPY = 18
const R_OR1K_GLOB_DAT = 19
const R_OR1K_GNU_VTENTRY = 7
const R_OR1K_GNU_VTINHERIT = 8
const R_OR1K_GOT16 = 14
const R_OR1K_GOTOFF_HI16 = 16
const R_OR1K_GOTOFF_LO16 = 17
const R_OR1K_GOTPC_HI16 = 12
const R_OR1K_GOTPC_LO16 = 13
const R_OR1K_HI_16_IN_INSN = 5
const R_OR1K_INSN_REL_26 = 6
const R_OR1K_JMP_SLOT = 20
const R_OR1K_LO_16_IN_INSN = 4
const R_OR1K_NONE = 0
const R_OR1K_PLT26 = 15
const R_OR1K_RELATIVE = 21
const R_OR1K_TLS_DTPMOD = 34
const R_OR1K_TLS_DTPOFF = 33
const R_OR1K_TLS_GD_HI16 = 22
const R_OR1K_TLS_GD_LO16 = 23
const R_OR1K_TLS_IE_HI16 = 28
const R_OR1K_TLS_IE_LO16 = 29
const R_OR1K_TLS_LDM_HI16 = 24
const R_OR1K_TLS_LDM_LO16 = 25
const R_OR1K_TLS_LDO_HI16 = 26
const R_OR1K_TLS_LDO_LO16 = 27
const R_OR1K_TLS_LE_HI16 = 30
const R_OR1K_TLS_LE_LO16 = 31
const R_OR1K_TLS_TPOFF = 32
const R_PARISC_COPY = 128
const R_PARISC_DIR14DR = 84
const R_PARISC_DIR14R = 6
const R_PARISC_DIR14WR = 83
const R_PARISC_DIR16DF = 87
const R_PARISC_DIR16F = 85
const R_PARISC_DIR16WF = 86
const R_PARISC_DIR17F = 4
const R_PARISC_DIR17R = 3
const R_PARISC_DIR21L = 2
const R_PARISC_DIR32 = 1
const R_PARISC_DIR64 = 80
const R_PARISC_DPREL14R = 22
const R_PARISC_DPREL21L = 18
const R_PARISC_EPLT = 130
const R_PARISC_FPTR64 = 64
const R_PARISC_GNU_VTENTRY = 232
const R_PARISC_GNU_VTINHERIT = 233
const R_PARISC_GPREL14DR = 92
const R_PARISC_GPREL14R = 30
const R_PARISC_GPREL14WR = 91
const R_PARISC_GPREL16DF = 95
const R_PARISC_GPREL16F = 93
const R_PARISC_GPREL16WF = 94
const R_PARISC_GPREL21L = 26
const R_PARISC_GPREL64 = 88
const R_PARISC_HIRESERVE = 255
const R_PARISC_IPLT = 129
const R_PARISC_LORESERVE = 128
const R_PARISC_LTOFF14DR = 100
const R_PARISC_LTOFF14R = 38
const R_PARISC_LTOFF14WR = 99
const R_PARISC_LTOFF16DF = 103
const R_PARISC_LTOFF16F = 101
const R_PARISC_LTOFF16WF = 102
const R_PARISC_LTOFF21L = 34
const R_PARISC_LTOFF64 = 96
const R_PARISC_LTOFF_FPTR14DR = 124
const R_PARISC_LTOFF_FPTR14R = 62
const R_PARISC_LTOFF_FPTR14WR = 123
const R_PARISC_LTOFF_FPTR16DF = 127
const R_PARISC_LTOFF_FPTR16F = 125
const R_PARISC_LTOFF_FPTR16WF = 126
const R_PARISC_LTOFF_FPTR21L = 58
const R_PARISC_LTOFF_FPTR32 = 57
const R_PARISC_LTOFF_FPTR64 = 120
const R_PARISC_LTOFF_TP14DR = 228
const R_PARISC_LTOFF_TP14F = 167
const R_PARISC_LTOFF_TP14R = 166
const R_PARISC_LTOFF_TP14WR = 227
const R_PARISC_LTOFF_TP16DF = 231
const R_PARISC_LTOFF_TP16F = 229
const R_PARISC_LTOFF_TP16WF = 230
const R_PARISC_LTOFF_TP21L = 162
const R_PARISC_LTOFF_TP64 = 224
const R_PARISC_NONE = 0
const R_PARISC_PCREL14DR = 76
const R_PARISC_PCREL14R = 14
const R_PARISC_PCREL14WR = 75
const R_PARISC_PCREL16DF = 79
const R_PARISC_PCREL16F = 77
const R_PARISC_PCREL16WF = 78
const R_PARISC_PCREL17F = 12
const R_PARISC_PCREL17R = 11
const R_PARISC_PCREL21L = 10
const R_PARISC_PCREL22F = 74
const R_PARISC_PCREL32 = 9
const R_PARISC_PCREL64 = 72
const R_PARISC_PLABEL14R = 70
const R_PARISC_PLABEL21L = 66
const R_PARISC_PLABEL32 = 65
const R_PARISC_PLTOFF14DR = 116
const R_PARISC_PLTOFF14R = 54
const R_PARISC_PLTOFF14WR = 115
const R_PARISC_PLTOFF16DF = 119
const R_PARISC_PLTOFF16F = 117
const R_PARISC_PLTOFF16WF = 118
const R_PARISC_PLTOFF21L = 50
const R_PARISC_SECREL32 = 41
const R_PARISC_SECREL64 = 104
const R_PARISC_SEGBASE = 48
const R_PARISC_SEGREL32 = 49
const R_PARISC_SEGREL64 = 112
const R_PARISC_TLS_DTPMOD32 = 242
const R_PARISC_TLS_DTPMOD64 = 243
const R_PARISC_TLS_DTPOFF32 = 244
const R_PARISC_TLS_DTPOFF64 = 245
const R_PARISC_TLS_GD14R = 235
const R_PARISC_TLS_GD21L = 234
const R_PARISC_TLS_GDCALL = 236
const R_PARISC_TLS_IE14R = 166
const R_PARISC_TLS_IE21L = 162
const R_PARISC_TLS_LDM14R = 238
const R_PARISC_TLS_LDM21L = 237
const R_PARISC_TLS_LDMCALL = 239
const R_PARISC_TLS_LDO14R = 241
const R_PARISC_TLS_LDO21L = 240
const R_PARISC_TLS_LE14R = 158
const R_PARISC_TLS_LE21L = 154
const R_PARISC_TLS_TPREL32 = 153
const R_PARISC_TLS_TPREL64 = 216
const R_PARISC_TPREL14DR = 220
const R_PARISC_TPREL14R = 158
const R_PARISC_TPREL14WR = 219
const R_PARISC_TPREL16DF = 223
const R_PARISC_TPREL16F = 221
const R_PARISC_TPREL16WF = 222
const R_PARISC_TPREL21L = 154
const R_PARISC_TPREL32 = 153
const R_PARISC_TPREL64 = 216
const R_PPC64_ADDR14 = 7
const R_PPC64_ADDR14_BRNTAKEN = 9
const R_PPC64_ADDR14_BRTAKEN = 8
const R_PPC64_ADDR16 = 3
const R_PPC64_ADDR16_DS = 56
const R_PPC64_ADDR16_HA = 6
const R_PPC64_ADDR16_HI = 5
const R_PPC64_ADDR16_HIGH = 110
const R_PPC64_ADDR16_HIGHA = 111
const R_PPC64_ADDR16_HIGHER = 39
const R_PPC64_ADDR16_HIGHERA = 40
const R_PPC64_ADDR16_HIGHEST = 41
const R_PPC64_ADDR16_HIGHESTA = 42
const R_PPC64_ADDR16_LO = 4
const R_PPC64_ADDR16_LO_DS = 57
const R_PPC64_ADDR24 = 2
const R_PPC64_ADDR30 = 37
const R_PPC64_ADDR32 = 1
const R_PPC64_ADDR64 = 38
const R_PPC64_COPY = 19
const R_PPC64_DTPMOD64 = 68
const R_PPC64_DTPREL16 = 74
const R_PPC64_DTPREL16_DS = 101
const R_PPC64_DTPREL16_HA = 77
const R_PPC64_DTPREL16_HI = 76
const R_PPC64_DTPREL16_HIGH = 114
const R_PPC64_DTPREL16_HIGHA = 115
const R_PPC64_DTPREL16_HIGHER = 103
const R_PPC64_DTPREL16_HIGHERA = 104
const R_PPC64_DTPREL16_HIGHEST = 105
const R_PPC64_DTPREL16_HIGHESTA = 106
const R_PPC64_DTPREL16_LO = 75
const R_PPC64_DTPREL16_LO_DS = 102
const R_PPC64_DTPREL64 = 78
const R_PPC64_GLOB_DAT = 20
const R_PPC64_GOT16 = 14
const R_PPC64_GOT16_DS = 58
const R_PPC64_GOT16_HA = 17
const R_PPC64_GOT16_HI = 16
const R_PPC64_GOT16_LO = 15
const R_PPC64_GOT16_LO_DS = 59
const R_PPC64_GOT_DTPREL16_DS = 91
const R_PPC64_GOT_DTPREL16_HA = 94
const R_PPC64_GOT_DTPREL16_HI = 93
const R_PPC64_GOT_DTPREL16_LO_DS = 92
const R_PPC64_GOT_TLSGD16 = 79
const R_PPC64_GOT_TLSGD16_HA = 82
const R_PPC64_GOT_TLSGD16_HI = 81
const R_PPC64_GOT_TLSGD16_LO = 80
const R_PPC64_GOT_TLSLD16 = 83
const R_PPC64_GOT_TLSLD16_HA = 86
const R_PPC64_GOT_TLSLD16_HI = 85
const R_PPC64_GOT_TLSLD16_LO = 84
const R_PPC64_GOT_TPREL16_DS = 87
const R_PPC64_GOT_TPREL16_HA = 90
const R_PPC64_GOT_TPREL16_HI = 89
const R_PPC64_GOT_TPREL16_LO_DS = 88
const R_PPC64_IRELATIVE = 248
const R_PPC64_JMP_IREL = 247
const R_PPC64_JMP_SLOT = 21
const R_PPC64_NONE = 0
const R_PPC64_PLT16_HA = 31
const R_PPC64_PLT16_HI = 30
const R_PPC64_PLT16_LO = 29
const R_PPC64_PLT16_LO_DS = 60
const R_PPC64_PLT32 = 27
const R_PPC64_PLT64 = 45
const R_PPC64_PLTGOT16 = 52
const R_PPC64_PLTGOT16_DS = 65
const R_PPC64_PLTGOT16_HA = 55
const R_PPC64_PLTGOT16_HI = 54
const R_PPC64_PLTGOT16_LO = 53
const R_PPC64_PLTGOT16_LO_DS = 66
const R_PPC64_PLTREL32 = 28
const R_PPC64_PLTREL64 = 46
const R_PPC64_REL14 = 11
const R_PPC64_REL14_BRNTAKEN = 13
const R_PPC64_REL14_BRTAKEN = 12
const R_PPC64_REL16 = 249
const R_PPC64_REL16_HA = 252
const R_PPC64_REL16_HI = 251
const R_PPC64_REL16_LO = 250
const R_PPC64_REL24 = 10
const R_PPC64_REL32 = 26
const R_PPC64_REL64 = 44
const R_PPC64_RELATIVE = 22
const R_PPC64_SECTOFF = 33
const R_PPC64_SECTOFF_DS = 61
const R_PPC64_SECTOFF_HA = 36
const R_PPC64_SECTOFF_HI = 35
const R_PPC64_SECTOFF_LO = 34
const R_PPC64_SECTOFF_LO_DS = 62
const R_PPC64_TLS = 67
const R_PPC64_TLSGD = 107
const R_PPC64_TLSLD = 108
const R_PPC64_TOC = 51
const R_PPC64_TOC16 = 47
const R_PPC64_TOC16_DS = 63
const R_PPC64_TOC16_HA = 50
const R_PPC64_TOC16_HI = 49
const R_PPC64_TOC16_LO = 48
const R_PPC64_TOC16_LO_DS = 64
const R_PPC64_TOCSAVE = 109
const R_PPC64_TPREL16 = 69
const R_PPC64_TPREL16_DS = 95
const R_PPC64_TPREL16_HA = 72
const R_PPC64_TPREL16_HI = 71
const R_PPC64_TPREL16_HIGH = 112
const R_PPC64_TPREL16_HIGHA = 113
const R_PPC64_TPREL16_HIGHER = 97
const R_PPC64_TPREL16_HIGHERA = 98
const R_PPC64_TPREL16_HIGHEST = 99
const R_PPC64_TPREL16_HIGHESTA = 100
const R_PPC64_TPREL16_LO = 70
const R_PPC64_TPREL16_LO_DS = 96
const R_PPC64_TPREL64 = 73
const R_PPC64_UADDR16 = 25
const R_PPC64_UADDR32 = 24
const R_PPC64_UADDR64 = 43
const R_PPC_ADDR14 = 7
const R_PPC_ADDR14_BRNTAKEN = 9
const R_PPC_ADDR14_BRTAKEN = 8
const R_PPC_ADDR16 = 3
const R_PPC_ADDR16_HA = 6
const R_PPC_ADDR16_HI = 5
const R_PPC_ADDR16_LO = 4
const R_PPC_ADDR24 = 2
const R_PPC_ADDR32 = 1
const R_PPC_COPY = 19
const R_PPC_DIAB_RELSDA_HA = 185
const R_PPC_DIAB_RELSDA_HI = 184
const R_PPC_DIAB_RELSDA_LO = 183
const R_PPC_DIAB_SDA21_HA = 182
const R_PPC_DIAB_SDA21_HI = 181
const R_PPC_DIAB_SDA21_LO = 180
const R_PPC_DTPMOD32 = 68
const R_PPC_DTPREL16 = 74
const R_PPC_DTPREL16_HA = 77
const R_PPC_DTPREL16_HI = 76
const R_PPC_DTPREL16_LO = 75
const R_PPC_DTPREL32 = 78
const R_PPC_EMB_BIT_FLD = 115
const R_PPC_EMB_MRKREF = 110
const R_PPC_EMB_NADDR16 = 102
const R_PPC_EMB_NADDR16_HA = 105
const R_PPC_EMB_NADDR16_HI = 104
const R_PPC_EMB_NADDR16_LO = 103
const R_PPC_EMB_NADDR32 = 101
const R_PPC_EMB_RELSDA = 116
const R_PPC_EMB_RELSEC16 = 111
const R_PPC_EMB_RELST_HA = 114
const R_PPC_EMB_RELST_HI = 113
const R_PPC_EMB_RELST_LO = 112
const R_PPC_EMB_SDA21 = 109
const R_PPC_EMB_SDA2I16 = 107
const R_PPC_EMB_SDA2REL = 108
const R_PPC_EMB_SDAI16 = 106
const R_PPC_GLOB_DAT = 20
const R_PPC_GOT16 = 14
const R_PPC_GOT16_HA = 17
const R_PPC_GOT16_HI = 16
const R_PPC_GOT16_LO = 15
const R_PPC_GOT_DTPREL16 = 91
const R_PPC_GOT_DTPREL16_HA = 94
const R_PPC_GOT_DTPREL16_HI = 93
const R_PPC_GOT_DTPREL16_LO = 92
const R_PPC_GOT_TLSGD16 = 79
const R_PPC_GOT_TLSGD16_HA = 82
const R_PPC_GOT_TLSGD16_HI = 81
const R_PPC_GOT_TLSGD16_LO = 80
const R_PPC_GOT_TLSLD16 = 83
const R_PPC_GOT_TLSLD16_HA = 86
const R_PPC_GOT_TLSLD16_HI = 85
const R_PPC_GOT_TLSLD16_LO = 84
const R_PPC_GOT_TPREL16 = 87
const R_PPC_GOT_TPREL16_HA = 90
const R_PPC_GOT_TPREL16_HI = 89
const R_PPC_GOT_TPREL16_LO = 88
const R_PPC_IRELATIVE = 248
const R_PPC_JMP_SLOT = 21
const R_PPC_LOCAL24PC = 23
const R_PPC_NONE = 0
const R_PPC_PLT16_HA = 31
const R_PPC_PLT16_HI = 30
const R_PPC_PLT16_LO = 29
const R_PPC_PLT32 = 27
const R_PPC_PLTREL24 = 18
const R_PPC_PLTREL32 = 28
const R_PPC_REL14 = 11
const R_PPC_REL14_BRNTAKEN = 13
const R_PPC_REL14_BRTAKEN = 12
const R_PPC_REL16 = 249
const R_PPC_REL16_HA = 252
const R_PPC_REL16_HI = 251
const R_PPC_REL16_LO = 250
const R_PPC_REL24 = 10
const R_PPC_REL32 = 26
const R_PPC_RELATIVE = 22
const R_PPC_SDAREL16 = 32
const R_PPC_SECTOFF = 33
const R_PPC_SECTOFF_HA = 36
const R_PPC_SECTOFF_HI = 35
const R_PPC_SECTOFF_LO = 34
const R_PPC_TLS = 67
const R_PPC_TLSGD = 95
const R_PPC_TLSLD = 96
const R_PPC_TOC16 = 255
const R_PPC_TPREL16 = 69
const R_PPC_TPREL16_HA = 72
const R_PPC_TPREL16_HI = 71
const R_PPC_TPREL16_LO = 70
const R_PPC_TPREL32 = 73
const R_PPC_UADDR16 = 25
const R_PPC_UADDR32 = 24
const R_RISCV_32 = 1
const R_RISCV_32_PCREL = 57
const R_RISCV_64 = 2
const R_RISCV_ADD16 = 34
const R_RISCV_ADD32 = 35
const R_RISCV_ADD64 = 36
const R_RISCV_ADD8 = 33
const R_RISCV_ALIGN = 43
const R_RISCV_BRANCH = 16
const R_RISCV_CALL = 18
const R_RISCV_CALL_PLT = 19
const R_RISCV_COPY = 4
const R_RISCV_GOT32_PCREL = 41
const R_RISCV_GOT_HI20 = 20
const R_RISCV_HI20 = 26
const R_RISCV_IRELATIVE = 58
const R_RISCV_JAL = 17
const R_RISCV_JUMP_SLOT = 5
const R_RISCV_LO12_I = 27
const R_RISCV_LO12_S = 28
const R_RISCV_NONE = 0
const R_RISCV_PCREL_HI20 = 23
const R_RISCV_PCREL_LO12_I = 24
const R_RISCV_PCREL_LO12_S = 25
const R_RISCV_PLT32 = 59
const R_RISCV_RELATIVE = 3
const R_RISCV_RELAX = 51
const R_RISCV_RVC_BRANCH = 44
const R_RISCV_RVC_JUMP = 45
const R_RISCV_RVC_LUI = 46
const R_RISCV_SET16 = 55
const R_RISCV_SET32 = 56
const R_RISCV_SET6 = 53
const R_RISCV_SET8 = 54
const R_RISCV_SET_ULEB128 = 60
const R_RISCV_SUB16 = 38
const R_RISCV_SUB32 = 39
const R_RISCV_SUB6 = 52
const R_RISCV_SUB64 = 40
const R_RISCV_SUB8 = 37
const R_RISCV_SUB_ULEB128 = 61
const R_RISCV_TLSDESC = 12
const R_RISCV_TLSDESC_ADD_LO12 = 64
const R_RISCV_TLSDESC_CALL = 65
const R_RISCV_TLSDESC_HI20 = 62
const R_RISCV_TLSDESC_LOAD_LO12 = 63
const R_RISCV_TLS_DTPMOD32 = 6
const R_RISCV_TLS_DTPMOD64 = 7
const R_RISCV_TLS_DTPREL32 = 8
const R_RISCV_TLS_DTPREL64 = 9
const R_RISCV_TLS_GD_HI20 = 22
const R_RISCV_TLS_GOT_HI20 = 21
const R_RISCV_TLS_TPREL32 = 10
const R_RISCV_TLS_TPREL64 = 11
const R_RISCV_TPREL_ADD = 32
const R_RISCV_TPREL_HI20 = 29
const R_RISCV_TPREL_LO12_I = 30
const R_RISCV_TPREL_LO12_S = 31
const R_SH_ALIGN = 29
const R_SH_CODE = 30
const R_SH_COPY = 162
const R_SH_COUNT = 28
const R_SH_DATA = 31
const R_SH_DIR32 = 1
const R_SH_DIR8BP = 7
const R_SH_DIR8L = 9
const R_SH_DIR8W = 8
const R_SH_DIR8WPL = 5
const R_SH_DIR8WPN = 3
const R_SH_DIR8WPZ = 6
const R_SH_FUNCDESC = 207
const R_SH_FUNCDESC_VALUE = 208
const R_SH_GLOB_DAT = 163
const R_SH_GNU_VTENTRY = 35
const R_SH_GNU_VTINHERIT = 34
const R_SH_GOT20 = 201
const R_SH_GOT32 = 160
const R_SH_GOTFUNCDESC = 203
const R_SH_GOTFUNCDEST20 = 204
const R_SH_GOTOFF = 166
const R_SH_GOTOFF20 = 202
const R_SH_GOTOFFFUNCDESC = 205
const R_SH_GOTOFFFUNCDEST20 = 206
const R_SH_GOTPC = 167
const R_SH_IND12W = 4
const R_SH_JMP_SLOT = 164
const R_SH_LABEL = 32
const R_SH_NONE = 0
const R_SH_NUM = 256
const R_SH_PLT32 = 161
const R_SH_REL32 = 2
const R_SH_RELATIVE = 165
const R_SH_SWITCH16 = 25
const R_SH_SWITCH32 = 26
const R_SH_SWITCH8 = 33
const R_SH_TLS_DTPMOD32 = 149
const R_SH_TLS_DTPOFF32 = 150
const R_SH_TLS_GD_32 = 144
const R_SH_TLS_IE_32 = 147
const R_SH_TLS_LDO_32 = 146
const R_SH_TLS_LD_32 = 145
const R_SH_TLS_LE_32 = 148
const R_SH_TLS_TPOFF32 = 151
const R_SH_USES = 27
const R_SPARC_10 = 30
const R_SPARC_11 = 31
const R_SPARC_13 = 11
const R_SPARC_16 = 2
const R_SPARC_22 = 10
const R_SPARC_32 = 3
const R_SPARC_5 = 44
const R_SPARC_6 = 45
const R_SPARC_64 = 32
const R_SPARC_7 = 43
const R_SPARC_8 = 1
const R_SPARC_COPY = 19
const R_SPARC_DISP16 = 5
const R_SPARC_DISP32 = 6
const R_SPARC_DISP64 = 46
const R_SPARC_DISP8 = 4
const R_SPARC_GLOB_DAT = 20
const R_SPARC_GLOB_JMP = 42
const R_SPARC_GNU_VTENTRY = 251
const R_SPARC_GNU_VTINHERIT = 250
const R_SPARC_GOT10 = 13
const R_SPARC_GOT13 = 14
const R_SPARC_GOT22 = 15
const R_SPARC_GOTDATA_HIX22 = 80
const R_SPARC_GOTDATA_LOX10 = 81
const R_SPARC_GOTDATA_OP = 84
const R_SPARC_GOTDATA_OP_HIX22 = 82
const R_SPARC_GOTDATA_OP_LOX10 = 83
const R_SPARC_H34 = 85
const R_SPARC_H44 = 50
const R_SPARC_HH22 = 34
const R_SPARC_HI22 = 9
const R_SPARC_HIPLT22 = 25
const R_SPARC_HIX22 = 48
const R_SPARC_HM10 = 35
const R_SPARC_JMP_SLOT = 21
const R_SPARC_L44 = 52
const R_SPARC_LM22 = 36
const R_SPARC_LO10 = 12
const R_SPARC_LOPLT10 = 26
const R_SPARC_LOX10 = 49
const R_SPARC_M44 = 51
const R_SPARC_NONE = 0
const R_SPARC_NUM = 253
const R_SPARC_OLO10 = 33
const R_SPARC_PC10 = 16
const R_SPARC_PC22 = 17
const R_SPARC_PCPLT10 = 29
const R_SPARC_PCPLT22 = 28
const R_SPARC_PCPLT32 = 27
const R_SPARC_PC_HH22 = 37
const R_SPARC_PC_HM10 = 38
const R_SPARC_PC_LM22 = 39
const R_SPARC_PLT32 = 24
const R_SPARC_PLT64 = 47
const R_SPARC_REGISTER = 53
const R_SPARC_RELATIVE = 22
const R_SPARC_REV32 = 252
const R_SPARC_SIZE32 = 86
const R_SPARC_SIZE64 = 87
const R_SPARC_TLS_DTPMOD32 = 74
const R_SPARC_TLS_DTPMOD64 = 75
const R_SPARC_TLS_DTPOFF32 = 76
const R_SPARC_TLS_DTPOFF64 = 77
const R_SPARC_TLS_GD_ADD = 58
const R_SPARC_TLS_GD_CALL = 59
const R_SPARC_TLS_GD_HI22 = 56
const R_SPARC_TLS_GD_LO10 = 57
const R_SPARC_TLS_IE_ADD = 71
const R_SPARC_TLS_IE_HI22 = 67
const R_SPARC_TLS_IE_LD = 69
const R_SPARC_TLS_IE_LDX = 70
const R_SPARC_TLS_IE_LO10 = 68
const R_SPARC_TLS_LDM_ADD = 62
const R_SPARC_TLS_LDM_CALL = 63
const R_SPARC_TLS_LDM_HI22 = 60
const R_SPARC_TLS_LDM_LO10 = 61
const R_SPARC_TLS_LDO_ADD = 66
const R_SPARC_TLS_LDO_HIX22 = 64
const R_SPARC_TLS_LDO_LOX10 = 65
const R_SPARC_TLS_LE_HIX22 = 72
const R_SPARC_TLS_LE_LOX10 = 73
const R_SPARC_TLS_TPOFF32 = 78
const R_SPARC_TLS_TPOFF64 = 79
const R_SPARC_UA16 = 55
const R_SPARC_UA32 = 23
const R_SPARC_UA64 = 54
const R_SPARC_WDISP16 = 40
const R_SPARC_WDISP19 = 41
const R_SPARC_WDISP22 = 8
const R_SPARC_WDISP30 = 7
const R_SPARC_WPLT30 = 18
const R_X86_64_16 = 12
const R_X86_64_32 = 10
const R_X86_64_32S = 11
const R_X86_64_64 = 1
const R_X86_64_8 = 14
const R_X86_64_COPY = 5
const R_X86_64_DTPMOD64 = 16
const R_X86_64_DTPOFF32 = 21
const R_X86_64_DTPOFF64 = 17
const R_X86_64_GLOB_DAT = 6
const R_X86_64_GOT32 = 3
const R_X86_64_GOT64 = 27
const R_X86_64_GOTOFF64 = 25
const R_X86_64_GOTPC32 = 26
const R_X86_64_GOTPC32_TLSDESC = 34
const R_X86_64_GOTPC64 = 29
const R_X86_64_GOTPCREL = 9
const R_X86_64_GOTPCREL64 = 28
const R_X86_64_GOTPCRELX = 41
const R_X86_64_GOTPLT64 = 30
const R_X86_64_GOTTPOFF = 22
const R_X86_64_IRELATIVE = 37
const R_X86_64_JUMP_SLOT = 7
const R_X86_64_NONE = 0
const R_X86_64_NUM = 43
const R_X86_64_PC16 = 13
const R_X86_64_PC32 = 2
const R_X86_64_PC64 = 24
const R_X86_64_PC8 = 15
const R_X86_64_PLT32 = 4
const R_X86_64_PLTOFF64 = 31
const R_X86_64_RELATIVE = 8
const R_X86_64_RELATIVE64 = 38
const R_X86_64_REX_GOTPCRELX = 42
const R_X86_64_SIZE32 = 32
const R_X86_64_SIZE64 = 33
const R_X86_64_TLSDESC = 36
const R_X86_64_TLSDESC_CALL = 35
const R_X86_64_TLSGD = 19
const R_X86_64_TLSLD = 20
const R_X86_64_TPOFF32 = 23
const R_X86_64_TPOFF64 = 18
const SA = 194
const SALT_MAX = 8
const SALT_MAX1 = 16
const SA_EXPOSE_TAGBITS = 2048
const SA_NOCLDSTOP = 1
const SA_NOCLDWAIT = 2
const SA_NODEFER = 1073741824
const SA_NOMASK = 1073741824
const SA_ONESHOT = 2147483648
const SA_ONSTACK = 134217728
const SA_RESETHAND = 2147483648
const SA_RESTART = 268435456
const SA_RESTORER = 67108864
const SA_SIGINFO = 4
const SA_UNSUPPORTED = 1024
const SB = 244
const SCHAR_MAX = 127
const SCHAR_MIN = -128
const SCHED_BATCH = 3
const SCHED_DEADLINE = 6
const SCHED_FIFO = 1
const SCHED_IDLE = 5
const SCHED_OTHER = 0
const SCHED_RESET_ON_FORK = 1073741824
const SCHED_RR = 2
const SCM_CREDENTIALS = 2
const SCM_RIGHTS = 1
const SCM_TIMESTAMP = 29
const SCM_TIMESTAMPING = 37
const SCM_TIMESTAMPING_OLD = 37
const SCM_TIMESTAMPING_OPT_STATS = 54
const SCM_TIMESTAMPING_PKTINFO = 58
const SCM_TIMESTAMPNS = 35
const SCM_TIMESTAMPNS_OLD = 35
const SCM_TIMESTAMP_OLD = 29
const SCM_TXTIME = 61
const SCM_WIFI_STATUS = 41
const SCNd16 = "hd"
const SCNd32 = "d"
const SCNd8 = "hhd"
const SCNdFAST16 = "d"
const SCNdFAST32 = "d"
const SCNdFAST8 = "hhd"
const SCNdLEAST16 = "hd"
const SCNdLEAST32 = "d"
const SCNdLEAST8 = "hhd"
const SCNi16 = "hi"
const SCNi32 = "i"
const SCNi8 = "hhi"
const SCNiFAST16 = "i"
const SCNiFAST32 = "i"
const SCNiFAST8 = "hhi"
const SCNiLEAST16 = "hi"
const SCNiLEAST32 = "i"
const SCNiLEAST8 = "hhi"
const SCNo16 = "ho"
const SCNo32 = "o"
const SCNo8 = "hho"
const SCNoFAST16 = "o"
const SCNoFAST32 = "o"
const SCNoFAST8 = "hho"
const SCNoLEAST16 = "ho"
const SCNoLEAST32 = "o"
const SCNoLEAST8 = "hho"
const SCNu16 = "hu"
const SCNu32 = "u"
const SCNu8 = "hhu"
const SCNuFAST16 = "u"
const SCNuFAST32 = "u"
const SCNuFAST8 = "hhu"
const SCNuLEAST16 = "hu"
const SCNuLEAST32 = "u"
const SCNuLEAST8 = "hhu"
const SCNx16 = "hx"
const SCNx32 = "x"
const SCNx8 = "hhx"
const SCNxFAST16 = "x"
const SCNxFAST32 = "x"
const SCNxFAST8 = "hhx"
const SCNxLEAST16 = "hx"
const SCNxLEAST32 = "x"
const SCNxLEAST8 = "hhx"
const SEEK_CUR = 1
const SEEK_DATA = 3
const SEEK_END = 2
const SEEK_HOLE = 4
const SEEK_SET = 0
const SEGV_ACCERR = 2
const SEGV_BNDERR = 3
const SEGV_MAPERR = 1
const SEGV_MTEAERR = 8
const SEGV_MTESERR = 9
const SEGV_PKUERR = 4
const SELFMAG = 4
const SEM_INFO = 19
const SEM_NSEMS_MAX = 256
const SEM_STAT = 18
const SEM_STAT_ANY = 20
const SEM_UNDO = 4096
const SEM_VALUE_MAX = 2147483647
const SENTINEL = 0
const SERVFAIL = 0
const SETALL = 17
const SETVAL = 16
const SFD_CLOEXEC = 524288
const SFD_NONBLOCK = 2048
const SHADOW = "/etc/shadow"
const SHF_ALLOC = 2
const SHF_ALPHA_GPREL = 268435456
const SHF_ARM_COMDEF = 2147483648
const SHF_ARM_ENTRYSECT = 268435456
const SHF_COMPRESSED = 2048
const SHF_EXCLUDE = 2147483648
const SHF_EXECINSTR = 4
const SHF_GROUP = 512
const SHF_IA_64_NORECOV = 536870912
const SHF_IA_64_SHORT = 268435456
const SHF_INFO_LINK = 64
const SHF_LINK_ORDER = 128
const SHF_MASKOS = 267386880
const SHF_MASKPROC = 4026531840
const SHF_MERGE = 16
const SHF_MIPS_ADDR = 1073741824
const SHF_MIPS_GPREL = 268435456
const SHF_MIPS_LOCAL = 67108864
const SHF_MIPS_MERGE = 536870912
const SHF_MIPS_NAMES = 33554432
const SHF_MIPS_NODUPE = 16777216
const SHF_MIPS_NOSTRIP = 134217728
const SHF_MIPS_STRINGS = 2147483648
const SHF_ORDERED = 1073741824
const SHF_OS_NONCONFORMING = 256
const SHF_PARISC_HUGE = 1073741824
const SHF_PARISC_SBP = 2147483648
const SHF_PARISC_SHORT = 536870912
const SHF_STRINGS = 32
const SHF_TLS = 1024
const SHF_WRITE = 1
const SHIFT_JIS = 209
const SHMLBA = 4096
const SHM_DEST = 512
const SHM_EXEC = 32768
const SHM_HUGETLB = 2048
const SHM_HUGE_16GB = 2281701376
const SHM_HUGE_16MB = 1610612736
const SHM_HUGE_1GB = 2013265920
const SHM_HUGE_1MB = 1342177280
const SHM_HUGE_256MB = 1879048192
const SHM_HUGE_2GB = 2080374784
const SHM_HUGE_2MB = 1409286144
const SHM_HUGE_32MB = 1677721600
const SHM_HUGE_512KB = 1275068416
const SHM_HUGE_512MB = 1946157056
const SHM_HUGE_64KB = 1073741824
const SHM_HUGE_8MB = 1543503872
const SHM_HUGE_MASK = 63
const SHM_HUGE_SHIFT = 26
const SHM_INFO = 14
const SHM_LOCK = 11
const SHM_LOCKED = 1024
const SHM_NORESERVE = 4096
const SHM_R = 256
const SHM_RDONLY = 4096
const SHM_REMAP = 16384
const SHM_RND = 8192
const SHM_STAT = 13
const SHM_STAT_ANY = 15
const SHM_UNLOCK = 12
const SHM_W = 128
const SHN_ABS = 65521
const SHN_AFTER = 65281
const SHN_BEFORE = 65280
const SHN_COMMON = 65522
const SHN_HIOS = 65343
const SHN_HIPROC = 65311
const SHN_HIRESERVE = 65535
const SHN_LOOS = 65312
const SHN_LOPROC = 65280
const SHN_LORESERVE = 65280
const SHN_MIPS_ACOMMON = 65280
const SHN_MIPS_DATA = 65282
const SHN_MIPS_SCOMMON = 65283
const SHN_MIPS_SUNDEFINED = 65284
const SHN_MIPS_TEXT = 65281
const SHN_PARISC_ANSI_COMMON = 65280
const SHN_PARISC_HUGE_COMMON = 65281
const SHN_UNDEF = 0
const SHN_XINDEX = 65535
const SHORT_INODE = 16777216
const SHRT_MAX = 32767
const SHRT_MIN = -32768
const SHT_ALPHA_DEBUG = 1879048193
const SHT_ALPHA_REGINFO = 1879048194
const SHT_ARM_ATTRIBUTES = 1879048195
const SHT_ARM_EXIDX = 1879048193
const SHT_ARM_PREEMPTMAP = 1879048194
const SHT_CHECKSUM = 1879048184
const SHT_DYNAMIC = 6
const SHT_DYNSYM = 11
const SHT_FINI_ARRAY = 15
const SHT_GNU_ATTRIBUTES = 1879048181
const SHT_GNU_HASH = 1879048182
const SHT_GNU_LIBLIST = 1879048183
const SHT_GNU_verdef = 1879048189
const SHT_GNU_verneed = 1879048190
const SHT_GNU_versym = 1879048191
const SHT_GROUP = 17
const SHT_HASH = 5
const SHT_HIOS = 1879048191
const SHT_HIPROC = 2147483647
const SHT_HISUNW = 1879048191
const SHT_HIUSER = 2415919103
const SHT_IA_64_EXT = 1879048192
const SHT_IA_64_UNWIND = 1879048193
const SHT_INIT_ARRAY = 14
const SHT_LOOS = 1610612736
const SHT_LOPROC = 1879048192
const SHT_LOSUNW = 1879048186
const SHT_LOUSER = 2147483648
const SHT_MIPS_AUXSYM = 1879048214
const SHT_MIPS_CONFLICT = 1879048194
const SHT_MIPS_CONTENT = 1879048204
const SHT_MIPS_DEBUG = 1879048197
const SHT_MIPS_DELTACLASS = 1879048221
const SHT_MIPS_DELTADECL = 1879048223
const SHT_MIPS_DELTAINST = 1879048220
const SHT_MIPS_DELTASYM = 1879048219
const SHT_MIPS_DENSE = 1879048211
const SHT_MIPS_DWARF = 1879048222
const SHT_MIPS_EH_REGION = 1879048231
const SHT_MIPS_EVENTS = 1879048225
const SHT_MIPS_EXTSYM = 1879048210
const SHT_MIPS_FDESC = 1879048209
const SHT_MIPS_GPTAB = 1879048195
const SHT_MIPS_IFACE = 1879048203
const SHT_MIPS_LIBLIST = 1879048192
const SHT_MIPS_LINE = 1879048217
const SHT_MIPS_LOCSTR = 1879048216
const SHT_MIPS_LOCSYM = 1879048213
const SHT_MIPS_MSYM = 1879048193
const SHT_MIPS_OPTIONS = 1879048205
const SHT_MIPS_OPTSYM = 1879048215
const SHT_MIPS_PACKAGE = 1879048199
const SHT_MIPS_PACKSYM = 1879048200
const SHT_MIPS_PDESC = 1879048212
const SHT_MIPS_PDR_EXCEPTION = 1879048233
const SHT_MIPS_PIXIE = 1879048227
const SHT_MIPS_REGINFO = 1879048198
const SHT_MIPS_RELD = 1879048201
const SHT_MIPS_RFDESC = 1879048218
const SHT_MIPS_SHDR = 1879048208
const SHT_MIPS_SYMBOL_LIB = 1879048224
const SHT_MIPS_TRANSLATE = 1879048226
const SHT_MIPS_UCODE = 1879048196
const SHT_MIPS_WHIRL = 1879048230
const SHT_MIPS_XLATE = 1879048228
const SHT_MIPS_XLATE_DEBUG = 1879048229
const SHT_MIPS_XLATE_OLD = 1879048232
const SHT_NOBITS = 8
const SHT_NOTE = 7
const SHT_NULL = 0
const SHT_NUM = 20
const SHT_PARISC_DOC = 1879048194
const SHT_PARISC_EXT = 1879048192
const SHT_PARISC_UNWIND = 1879048193
const SHT_PREINIT_ARRAY = 16
const SHT_PROGBITS = 1
const SHT_REL = 9
const SHT_RELA = 4
const SHT_RELR = 19
const SHT_SHLIB = 10
const SHT_STRTAB = 3
const SHT_SUNW_COMDAT = 1879048187
const SHT_SUNW_move = 1879048186
const SHT_SUNW_syminfo = 1879048188
const SHT_SYMTAB = 2
const SHT_SYMTAB_SHNDX = 18
const SHUT_RD = 0
const SHUT_RDWR = 2
const SHUT_WR = 1
const SIGABRT = 6
const SIGALRM = 14
const SIGBUS = 7
const SIGCANCEL = 33
const SIGCHLD = 17
const SIGCONT = 18
const SIGEV_NONE = 1
const SIGEV_SIGNAL = 0
const SIGEV_THREAD = 2
const SIGEV_THREAD_ID = 4
const SIGFPE = 8
const SIGHUP = 1
const SIGILL = 4
const SIGINT = 2
const SIGIO = 29
const SIGIOT = 6
const SIGKILL = 9
const SIGN_BIAS = 262144
const SIGN_BIAS1 = 65536
const SIGPIPE = 13
const SIGPOLL = 29
const SIGPROF = 27
const SIGPWR = 30
const SIGQUIT = 3
const SIGRTMAX = 0
const SIGRTMIN = 0
const SIGSEGV = 11
const SIGSTKFLT = 16
const SIGSTKSZ = 8192
const SIGSTOP = 19
const SIGSYNCCALL = 34
const SIGSYS = 31
const SIGTERM = 15
const SIGTIMER = 32
const SIGTRAP = 5
const SIGTSTP = 20
const SIGTTIN = 21
const SIGTTOU = 22
const SIGUNUSED = 31
const SIGURG = 23
const SIGUSR1 = 10
const SIGUSR2 = 12
const SIGVTALRM = 26
const SIGWINCH = 28
const SIGXCPU = 24
const SIGXFSZ = 25
const SIG_ATOMIC_MAX = 2147483647
const SIG_ATOMIC_MIN = -2147483648
const SIG_BLOCK = 0
const SIG_DFL = 0
const SIG_IGN = 1
const SIG_SETMASK = 2
const SIG_UNBLOCK = 1
const SIOCADDDLCI = 35200
const SIOCADDMULTI = 35121
const SIOCADDRT = 35083
const SIOCATMARK = 35077
const SIOCDARP = 35155
const SIOCDELDLCI = 35201
const SIOCDELMULTI = 35122
const SIOCDELRT = 35084
const SIOCDEVPRIVATE = 35312
const SIOCDIFADDR = 35126
const SIOCDRARP = 35168
const SIOCGARP = 35156
const SIOCGIFADDR = 35093
const SIOCGIFBR = 35136
const SIOCGIFBRDADDR = 35097
const SIOCGIFCONF = 35090
const SIOCGIFCOUNT = 35128
const SIOCGIFDSTADDR = 35095
const SIOCGIFENCAP = 35109
const SIOCGIFFLAGS = 35091
const SIOCGIFHWADDR = 35111
const SIOCGIFINDEX = 35123
const SIOCGIFMAP = 35184
const SIOCGIFMEM = 35103
const SIOCGIFMETRIC = 35101
const SIOCGIFMTU = 35105
const SIOCGIFNAME = 35088
const SIOCGIFNETMASK = 35099
const SIOCGIFPFLAGS = 35125
const SIOCGIFSLAVE = 35113
const SIOCGIFTXQLEN = 35138
const SIOCGPGRP = 35076
const SIOCGRARP = 35169
const SIOCGSTAMP = 35078
const SIOCGSTAMPNS = 35079
const SIOCGSTAMPNS_OLD = 35079
const SIOCGSTAMP_OLD = 35078
const SIOCPROTOPRIVATE = 35296
const SIOCRTMSG = 35085
const SIOCSARP = 35157
const SIOCSIFADDR = 35094
const SIOCSIFBR = 35137
const SIOCSIFBRDADDR = 35098
const SIOCSIFDSTADDR = 35096
const SIOCSIFENCAP = 35110
const SIOCSIFFLAGS = 35092
const SIOCSIFHWADDR = 35108
const SIOCSIFHWBROADCAST = 35127
const SIOCSIFLINK = 35089
const SIOCSIFMAP = 35185
const SIOCSIFMEM = 35104
const SIOCSIFMETRIC = 35102
const SIOCSIFMTU = 35106
const SIOCSIFNAME = 35107
const SIOCSIFNETMASK = 35100
const SIOCSIFPFLAGS = 35124
const SIOCSIFSLAVE = 35120
const SIOCSIFTXQLEN = 35139
const SIOCSPGRP = 35074
const SIOCSRARP = 35170
const SIOGIFINDEX = 35123
const SIZE_L = 2
const SIZE_MAX = 18446744073709551615
const SIZE_def = 0
const SIZE_h = -1
const SIZE_hh = -2
const SIZE_l = 1
const SIZE_ll = 3
const SI_ASYNCIO = -4
const SI_ASYNCNL = -60
const SI_KERNEL = 128
const SI_LOAD_SHIFT = 16
const SI_MESGQ = -3
const SI_QUEUE = -1
const SI_SIGIO = -5
const SI_TIMER = -2
const SI_TKILL = -6
const SI_USER = 0
const SNDPIPE = 2
const SNDZERO = 1
const SOCK_CLOEXEC = 524288
const SOCK_DCCP = 6
const SOCK_DGRAM = 2
const SOCK_NONBLOCK = 2048
const SOCK_PACKET = 10
const SOCK_RAW = 3
const SOCK_RDM = 4
const SOCK_SEQPACKET = 5
const SOCK_STREAM = 1
const SOL_AAL = 265
const SOL_ALG = 279
const SOL_ATM = 264
const SOL_BLUETOOTH = 274
const SOL_CAIF = 278
const SOL_DCCP = 269
const SOL_DECNET = 261
const SOL_ICMPV6 = 58
const SOL_IP = 0
const SOL_IPV6 = 41
const SOL_IRDA = 266
const SOL_IUCV = 277
const SOL_KCM = 281
const SOL_LLC = 268
const SOL_NETBEUI = 267
const SOL_NETLINK = 270
const SOL_NFC = 280
const SOL_PACKET = 263
const SOL_PNPIPE = 275
const SOL_PPPOL2TP = 273
const SOL_RAW = 255
const SOL_RDS = 276
const SOL_RXRPC = 272
const SOL_SOCKET = 1
const SOL_TIPC = 271
const SOL_TLS = 282
const SOL_X25 = 262
const SOL_XDP = 283
const SOMAXCONN = 128
const SO_ACCEPTCONN = 30
const SO_ATTACH_BPF = 50
const SO_ATTACH_FILTER = 26
const SO_ATTACH_REUSEPORT_CBPF = 51
const SO_ATTACH_REUSEPORT_EBPF = 52
const SO_BINDTODEVICE = 25
const SO_BINDTOIFINDEX = 62
const SO_BPF_EXTENSIONS = 48
const SO_BROADCAST = 6
const SO_BSDCOMPAT = 14
const SO_BUSY_POLL = 46
const SO_BUSY_POLL_BUDGET = 70
const SO_CNX_ADVICE = 53
const SO_COOKIE = 57
const SO_DEBUG = 1
const SO_DETACH_BPF = 27
const SO_DETACH_FILTER = 27
const SO_DETACH_REUSEPORT_BPF = 68
const SO_DOMAIN = 39
const SO_DONTROUTE = 5
const SO_ERROR = 4
const SO_GET_FILTER = 26
const SO_INCOMING_CPU = 49
const SO_INCOMING_NAPI_ID = 56
const SO_KEEPALIVE = 9
const SO_LINGER = 13
const SO_LOCK_FILTER = 44
const SO_MARK = 36
const SO_MAX_PACING_RATE = 47
const SO_MEMINFO = 55
const SO_NOFCS = 43
const SO_NO_CHECK = 11
const SO_OOBINLINE = 10
const SO_PASSCRED = 16
const SO_PASSSEC = 34
const SO_PEEK_OFF = 42
const SO_PEERCRED = 17
const SO_PEERGROUPS = 59
const SO_PEERNAME = 28
const SO_PEERSEC = 31
const SO_PREFER_BUSY_POLL = 69
const SO_PRIORITY = 12
const SO_PROTOCOL = 38
const SO_RCVBUF = 8
const SO_RCVBUFFORCE = 33
const SO_RCVLOWAT = 18
const SO_RCVTIMEO = 20
const SO_RCVTIMEO_OLD = 20
const SO_REUSEADDR = 2
const SO_REUSEPORT = 15
const SO_RXQ_OVFL = 40
const SO_SECURITY_AUTHENTICATION = 22
const SO_SECURITY_ENCRYPTION_NETWORK = 24
const SO_SECURITY_ENCRYPTION_TRANSPORT = 23
const SO_SELECT_ERR_QUEUE = 45
const SO_SNDBUF = 7
const SO_SNDBUFFORCE = 32
const SO_SNDLOWAT = 19
const SO_SNDTIMEO = 21
const SO_SNDTIMEO_OLD = 21
const SO_TIMESTAMP = 29
const SO_TIMESTAMPING = 37
const SO_TIMESTAMPING_OLD = 37
const SO_TIMESTAMPNS = 35
const SO_TIMESTAMPNS_OLD = 35
const SO_TIMESTAMP_OLD = 29
const SO_TXTIME = 61
const SO_TYPE = 3
const SO_WIFI_STATUS = 41
const SO_ZEROCOPY = 60
const SPLICE_F_GIFT = 8
const SPLICE_F_MORE = 4
const SPLICE_F_MOVE = 1
const SPLICE_F_NONBLOCK = 2
const SPLIT = 1
const SS = 0
const SSIZE_MAX = 9223372036854775807
const SST_SIZE = 8
const SS_AUTODISARM = 2147483648
const SS_DISABLE = 2
const SS_FLAG_BITS = 2147483648
const SS_ONSTACK = 1
const STAR = -5
const STATUS = 0
const STATX_ALL = 4095
const STATX_ATIME = 32
const STATX_BASIC_STATS = 2047
const STATX_BLOCKS = 1024
const STATX_BTIME = 2048
const STATX_CTIME = 128
const STATX_GID = 16
const STATX_INO = 256
const STATX_MODE = 2
const STATX_MTIME = 64
const STATX_NLINK = 4
const STATX_SIZE = 512
const STATX_TYPE = 1
const STATX_UID = 8
const STA_CLK = 32768
const STA_CLOCKERR = 4096
const STA_DEL = 32
const STA_FLL = 8
const STA_FREQHOLD = 128
const STA_INS = 16
const STA_MODE = 16384
const STA_NANO = 8192
const STA_PLL = 1
const STA_PPSERROR = 2048
const STA_PPSFREQ = 2
const STA_PPSJITTER = 512
const STA_PPSSIGNAL = 256
const STA_PPSTIME = 4
const STA_PPSWANDER = 1024
const STA_RONLY = 65280
const STA_UNSYNC = 64
const STB_GLOBAL = 1
const STB_GNU_UNIQUE = 10
const STB_HIOS = 12
const STB_HIPROC = 15
const STB_LOCAL = 0
const STB_LOOS = 10
const STB_LOPROC = 13
const STB_MIPS_SPLIT_COMMON = 13
const STB_NUM = 3
const STB_WEAK = 2
const STDERR_FILENO = 2
const STDIN_FILENO = 0
const STDOUT_FILENO = 1
const STICKY_TIMEOUTS = 67108864
const STN_UNDEF = 0
const STO_ALPHA_NOPV = 128
const STO_ALPHA_STD_GPLOAD = 136
const STO_MIPS_DEFAULT = 0
const STO_MIPS_HIDDEN = 2
const STO_MIPS_INTERNAL = 1
const STO_MIPS_PLT = 8
const STO_MIPS_PROTECTED = 3
const STO_MIPS_SC_ALIGN_UNUSED = 255
const STO_PPC64_LOCAL_BIT = 5
const STO_PPC64_LOCAL_MASK = 224
const STT_ARM_16BIT = 15
const STT_ARM_TFUNC = 13
const STT_COMMON = 5
const STT_FILE = 4
const STT_FUNC = 2
const STT_GNU_IFUNC = 10
const STT_HIOS = 12
const STT_HIPROC = 15
const STT_HP_OPAQUE = 11
const STT_HP_STUB = 12
const STT_LOOS = 10
const STT_LOPROC = 13
const STT_NOTYPE = 0
const STT_NUM = 7
const STT_OBJECT = 1
const STT_PARISC_MILLICODE = 13
const STT_SECTION = 3
const STT_SPARC_REGISTER = 13
const STT_TLS = 6
const STV_DEFAULT = 0
const STV_HIDDEN = 2
const STV_INTERNAL = 1
const STV_PROTECTED = 3
const ST_APPEND = 256
const ST_IMMUTABLE = 512
const ST_MANDLOCK = 64
const ST_NOATIME = 1024
const ST_NODEV = 4
const ST_NODIRATIME = 2048
const ST_NOEXEC = 8
const ST_NOSUID = 2
const ST_RDONLY = 1
const ST_RELATIME = 4096
const ST_SYNCHRONOUS = 16
const ST_WRITE = 128
const SUBCMDMASK = 255
const SUBCMDSHIFT = 8
const SWAP_FLAG_DISCARD = 65536
const SWAP_FLAG_PREFER = 32768
const SWAP_FLAG_PRIO_MASK = 32767
const SWAP_FLAG_PRIO_SHIFT = 0
const SYMINFO_BT_LOWRESERVE = 65280
const SYMINFO_BT_PARENT = 65534
const SYMINFO_BT_SELF = 65535
const SYMINFO_CURRENT = 1
const SYMINFO_FLG_COPY = 4
const SYMINFO_FLG_DIRECT = 1
const SYMINFO_FLG_LAZYLOAD = 8
const SYMINFO_FLG_PASSTHRU = 2
const SYMINFO_NONE = 0
const SYMINFO_NUM = 2
const SYMLOOP_MAX = 40
const SYNC_FILE_RANGE_WAIT_AFTER = 4
const SYNC_FILE_RANGE_WAIT_BEFORE = 1
const SYNC_FILE_RANGE_WRITE = 2
const SYSCALL_DISPATCH_FILTER_ALLOW = 0
const SYSCALL_DISPATCH_FILTER_BLOCK = 1
const SYSCALL_MMAP2_UNIT = 4096
const SYSCALL_RLIM_INFINITY = 18446744073709551615
const SYS_SECCOMP = 1
const SYS_USER_DISPATCH = 2
const SYS__sysctl = 156
const SYS_accept = 43
const SYS_accept4 = 288
const SYS_access = 21
const SYS_acct = 163
const SYS_add_key = 248
const SYS_adjtimex = 159
const SYS_afs_syscall = 183
const SYS_alarm = 37
const SYS_arch_prctl = 158
const SYS_bind = 49
const SYS_bpf = 321
const SYS_brk = 12
const SYS_cachestat = 451
const SYS_capget = 125
const SYS_capset = 126
const SYS_chdir = 80
const SYS_chmod = 90
const SYS_chown = 92
const SYS_chroot = 161
const SYS_clock_adjtime = 305
const SYS_clock_getres = 229
const SYS_clock_gettime = 228
const SYS_clock_nanosleep = 230
const SYS_clock_settime = 227
const SYS_clone = 56
const SYS_clone3 = 435
const SYS_close = 3
const SYS_close_range = 436
const SYS_connect = 42
const SYS_copy_file_range = 326
const SYS_creat = 85
const SYS_create_module = 174
const SYS_delete_module = 176
const SYS_dup = 32
const SYS_dup2 = 33
const SYS_dup3 = 292
const SYS_epoll_create = 213
const SYS_epoll_create1 = 291
const SYS_epoll_ctl = 233
const SYS_epoll_ctl_old = 214
const SYS_epoll_pwait = 281
const SYS_epoll_pwait2 = 441
const SYS_epoll_wait = 232
const SYS_epoll_wait_old = 215
const SYS_eventfd = 284
const SYS_eventfd2 = 290
const SYS_execve = 59
const SYS_execveat = 322
const SYS_exit = 60
const SYS_exit_group = 231
const SYS_faccessat = 269
const SYS_faccessat2 = 439
const SYS_fadvise64 = 221
const SYS_fallocate = 285
const SYS_fanotify_init = 300
const SYS_fanotify_mark = 301
const SYS_fchdir = 81
const SYS_fchmod = 91
const SYS_fchmodat = 268
const SYS_fchmodat2 = 452
const SYS_fchown = 93
const SYS_fchownat = 260
const SYS_fcntl = 72
const SYS_fdatasync = 75
const SYS_fgetxattr = 193
const SYS_finit_module = 313
const SYS_flistxattr = 196
const SYS_flock = 73
const SYS_fork = 57
const SYS_fremovexattr = 199
const SYS_fsconfig = 431
const SYS_fsetxattr = 190
const SYS_fsmount = 432
const SYS_fsopen = 430
const SYS_fspick = 433
const SYS_fstat = 5
const SYS_fstatfs = 138
const SYS_fsync = 74
const SYS_ftruncate = 77
const SYS_futex = 202
const SYS_futex_waitv = 449
const SYS_futimesat = 261
const SYS_get_kernel_syms = 177
const SYS_get_mempolicy = 239
const SYS_get_robust_list = 274
const SYS_get_thread_area = 211
const SYS_getcpu = 309
const SYS_getcwd = 79
const SYS_getdents64 = 217
const SYS_getegid = 108
const SYS_geteuid = 107
const SYS_getgid = 104
const SYS_getgroups = 115
const SYS_getitimer = 36
const SYS_getpeername = 52
const SYS_getpgid = 121
const SYS_getpgrp = 111
const SYS_getpid = 39
const SYS_getpmsg = 181
const SYS_getppid = 110
const SYS_getpriority = 140
const SYS_getrandom = 318
const SYS_getresgid = 120
const SYS_getresuid = 118
const SYS_getrlimit = 97
const SYS_getrusage = 98
const SYS_getsid = 124
const SYS_getsockname = 51
const SYS_getsockopt = 55
const SYS_gettid = 186
const SYS_gettimeofday = 96
const SYS_getuid = 102
const SYS_getxattr = 191
const SYS_init_module = 175
const SYS_inotify_add_watch = 254
const SYS_inotify_init = 253
const SYS_inotify_init1 = 294
const SYS_inotify_rm_watch = 255
const SYS_io_cancel = 210
const SYS_io_destroy = 207
const SYS_io_getevents = 208
const SYS_io_pgetevents = 333
const SYS_io_setup = 206
const SYS_io_submit = 209
const SYS_io_uring_enter = 426
const SYS_io_uring_register = 427
const SYS_io_uring_setup = 425
const SYS_ioctl = 16
const SYS_ioperm = 173
const SYS_iopl = 172
const SYS_ioprio_get = 252
const SYS_ioprio_set = 251
const SYS_kcmp = 312
const SYS_kexec_file_load = 320
const SYS_kexec_load = 246
const SYS_keyctl = 250
const SYS_kill = 62
const SYS_landlock_add_rule = 445
const SYS_landlock_create_ruleset = 444
const SYS_landlock_restrict_self = 446
const SYS_lchown = 94
const SYS_lgetxattr = 192
const SYS_link = 86
const SYS_linkat = 265
const SYS_listen = 50
const SYS_listxattr = 194
const SYS_llistxattr = 195
const SYS_lremovexattr = 198
const SYS_lseek = 8
const SYS_lsetxattr = 189
const SYS_lstat = 6
const SYS_madvise = 28
const SYS_mbind = 237
const SYS_membarrier = 324
const SYS_memfd_create = 319
const SYS_memfd_secret = 447
const SYS_migrate_pages = 256
const SYS_mincore = 27
const SYS_mkdir = 83
const SYS_mkdirat = 258
const SYS_mknod = 133
const SYS_mknodat = 259
const SYS_mlock = 149
const SYS_mlock2 = 325
const SYS_mlockall = 151
const SYS_mmap = 9
const SYS_modify_ldt = 154
const SYS_mount = 165
const SYS_mount_setattr = 442
const SYS_move_mount = 429
const SYS_move_pages = 279
const SYS_mprotect = 10
const SYS_mq_getsetattr = 245
const SYS_mq_notify = 244
const SYS_mq_open = 240
const SYS_mq_timedreceive = 243
const SYS_mq_timedsend = 242
const SYS_mq_unlink = 241
const SYS_mremap = 25
const SYS_msgctl = 71
const SYS_msgget = 68
const SYS_msgrcv = 70
const SYS_msgsnd = 69
const SYS_msync = 26
const SYS_munlock = 150
const SYS_munlockall = 152
const SYS_munmap = 11
const SYS_name_to_handle_at = 303
const SYS_nanosleep = 35
const SYS_newfstatat = 262
const SYS_nfsservctl = 180
const SYS_open = 2
const SYS_open_by_handle_at = 304
const SYS_open_tree = 428
const SYS_openat = 257
const SYS_openat2 = 437
const SYS_pause = 34
const SYS_perf_event_open = 298
const SYS_personality = 135
const SYS_pidfd_getfd = 438
const SYS_pidfd_open = 434
const SYS_pidfd_send_signal = 424
const SYS_pipe = 22
const SYS_pipe2 = 293
const SYS_pivot_root = 155
const SYS_pkey_alloc = 330
const SYS_pkey_free = 331
const SYS_pkey_mprotect = 329
const SYS_poll = 7
const SYS_ppoll = 271
const SYS_prctl = 157
const SYS_pread64 = 17
const SYS_preadv = 295
const SYS_preadv2 = 327
const SYS_prlimit64 = 302
const SYS_process_madvise = 440
const SYS_process_mrelease = 448
const SYS_process_vm_readv = 310
const SYS_process_vm_writev = 311
const SYS_pselect6 = 270
const SYS_ptrace = 101
const SYS_putpmsg = 182
const SYS_pwrite64 = 18
const SYS_pwritev = 296
const SYS_pwritev2 = 328
const SYS_query_module = 178
const SYS_quotactl = 179
const SYS_read = 0
const SYS_readahead = 187
const SYS_readlink = 89
const SYS_readlinkat = 267
const SYS_readv = 19
const SYS_reboot = 169
const SYS_recvfrom = 45
const SYS_recvmmsg = 299
const SYS_recvmsg = 47
const SYS_remap_file_pages = 216
const SYS_removexattr = 197
const SYS_rename = 82
const SYS_renameat = 264
const SYS_renameat2 = 316
const SYS_request_key = 249
const SYS_restart_syscall = 219
const SYS_rmdir = 84
const SYS_rseq = 334
const SYS_rt_sigaction = 13
const SYS_rt_sigpending = 127
const SYS_rt_sigprocmask = 14
const SYS_rt_sigqueueinfo = 129
const SYS_rt_sigreturn = 15
const SYS_rt_sigsuspend = 130
const SYS_rt_sigtimedwait = 128
const SYS_rt_tgsigqueueinfo = 297
const SYS_sched_get_priority_max = 146
const SYS_sched_get_priority_min = 147
const SYS_sched_getaffinity = 204
const SYS_sched_getattr = 315
const SYS_sched_getparam = 143
const SYS_sched_getscheduler = 145
const SYS_sched_rr_get_interval = 148
const SYS_sched_setaffinity = 203
const SYS_sched_setattr = 314
const SYS_sched_setparam = 142
const SYS_sched_setscheduler = 144
const SYS_sched_yield = 24
const SYS_seccomp = 317
const SYS_security = 185
const SYS_select = 23
const SYS_semctl = 66
const SYS_semget = 64
const SYS_semop = 65
const SYS_semtimedop = 220
const SYS_sendfile = 40
const SYS_sendmmsg = 307
const SYS_sendmsg = 46
const SYS_sendto = 44
const SYS_set_mempolicy = 238
const SYS_set_mempolicy_home_node = 450
const SYS_set_robust_list = 273
const SYS_set_thread_area = 205
const SYS_set_tid_address = 218
const SYS_setdomainname = 171
const SYS_setfsgid = 123
const SYS_setfsuid = 122
const SYS_setgid = 106
const SYS_setgroups = 116
const SYS_sethostname = 170
const SYS_setitimer = 38
const SYS_setns = 308
const SYS_setpgid = 109
const SYS_setpriority = 141
const SYS_setregid = 114
const SYS_setresgid = 119
const SYS_setresuid = 117
const SYS_setreuid = 113
const SYS_setrlimit = 160
const SYS_setsid = 112
const SYS_setsockopt = 54
const SYS_settimeofday = 164
const SYS_setuid = 105
const SYS_setxattr = 188
const SYS_shmat = 30
const SYS_shmctl = 31
const SYS_shmdt = 67
const SYS_shmget = 29
const SYS_shutdown = 48
const SYS_sigaltstack = 131
const SYS_signalfd = 282
const SYS_signalfd4 = 289
const SYS_socket = 41
const SYS_socketpair = 53
const SYS_splice = 275
const SYS_stat = 4
const SYS_statfs = 137
const SYS_statx = 332
const SYS_swapoff = 168
const SYS_swapon = 167
const SYS_symlink = 88
const SYS_symlinkat = 266
const SYS_sync = 162
const SYS_sync_file_range = 277
const SYS_syncfs = 306
const SYS_sysfs = 139
const SYS_sysinfo = 99
const SYS_syslog = 103
const SYS_tee = 276
const SYS_tgkill = 234
const SYS_time = 201
const SYS_timer_create = 222
const SYS_timer_delete = 226
const SYS_timer_getoverrun = 225
const SYS_timer_gettime = 224
const SYS_timer_settime = 223
const SYS_timerfd_create = 283
const SYS_timerfd_gettime = 287
const SYS_timerfd_settime = 286
const SYS_times = 100
const SYS_tkill = 200
const SYS_truncate = 76
const SYS_tuxcall = 184
const SYS_umask = 95
const SYS_umount2 = 166
const SYS_uname = 63
const SYS_unlink = 87
const SYS_unlinkat = 263
const SYS_uselib = 134
const SYS_userfaultfd = 323
const SYS_ustat = 136
const SYS_utime = 132
const SYS_utimensat = 280
const SYS_utimes = 235
const SYS_vfork = 58
const SYS_vhangup = 153
const SYS_vmsplice = 278
const SYS_vserver = 236
const SYS_wait4 = 61
const SYS_waitid = 247
const SYS_write = 1
const SYS_writev = 20
const S_ADDT = 0
const S_BANDURG = 512
const S_ERROR = 16
const S_HANGUP = 32
const S_HIPRI = 2
const S_IEXEC = 64
const S_IFBLK = 24576
const S_IFCHR = 8192
const S_IFDIR = 16384
const S_IFIFO = 4096
const S_IFLNK = 40960
const S_IFMT = 61440
const S_IFREG = 32768
const S_IFSOCK = 49152
const S_INPUT = 1
const S_IREAD = 256
const S_IRGRP = 32
const S_IROTH = 4
const S_IRUSR = 256
const S_IRWXG = 56
const S_IRWXO = 7
const S_IRWXU = 448
const S_ISGID = 1024
const S_ISUID = 2048
const S_ISVTX = 512
const S_IWGRP = 16
const S_IWOTH = 2
const S_IWRITE = 128
const S_IWUSR = 128
const S_IXGRP = 8
const S_IXOTH = 1
const S_IXUSR = 64
const S_MSG = 8
const S_OUTPUT = 4
const S_PREREQ = 0
const S_RDBAND = 128
const S_RDNORM = 64
const S_UPDATE = 0
const S_WRBAND = 256
const S_WRNORM = 4
const S_ZONE = 0
const TAB0 = 0
const TAB1 = 2048
const TAB2 = 4096
const TAB3 = 6144
const TABDLY = 6144
const TAG = -3
const TCFLSH = 21515
const TCGETA = 21509
const TCGETS = 21505
const TCGETX = 21554
const TCIFLUSH = 0
const TCIOFF = 2
const TCIOFLUSH = 2
const TCION = 3
const TCOFLUSH = 1
const TCOOFF = 0
const TCOON = 1
const TCP_CC_INFO = 26
const TCP_CLOSE = 7
const TCP_CLOSE_WAIT = 8
const TCP_CLOSING = 11
const TCP_CM_INQ = 36
const TCP_CONGESTION = 13
const TCP_CORK = 3
const TCP_DEFER_ACCEPT = 9
const TCP_ESTABLISHED = 1
const TCP_FASTOPEN = 23
const TCP_FASTOPEN_CONNECT = 30
const TCP_FASTOPEN_KEY = 33
const TCP_FASTOPEN_NO_COOKIE = 34
const TCP_FIN_WAIT1 = 4
const TCP_FIN_WAIT2 = 5
const TCP_INFO = 11
const TCP_INQ = 36
const TCP_KEEPCNT = 6
const TCP_KEEPIDLE = 4
const TCP_KEEPINTVL = 5
const TCP_LAST_ACK = 9
const TCP_LINGER2 = 8
const TCP_LISTEN = 10
const TCP_MAXSEG = 2
const TCP_MD5SIG = 14
const TCP_MD5SIG_EXT = 32
const TCP_NODELAY = 1
const TCP_NOTSENT_LOWAT = 25
const TCP_QUEUE_SEQ = 21
const TCP_QUICKACK = 12
const TCP_REPAIR = 19
const TCP_REPAIR_OPTIONS = 22
const TCP_REPAIR_QUEUE = 20
const TCP_REPAIR_WINDOW = 29
const TCP_SAVED_SYN = 28
const TCP_SAVE_SYN = 27
const TCP_SYNCNT = 7
const TCP_SYN_RECV = 3
const TCP_SYN_SENT = 2
const TCP_THIN_DUPACK = 17
const TCP_THIN_LINEAR_TIMEOUTS = 16
const TCP_TIMESTAMP = 24
const TCP_TIME_WAIT = 6
const TCP_TX_DELAY = 37
const TCP_ULP = 31
const TCP_USER_TIMEOUT = 18
const TCP_WINDOW_CLAMP = 10
const TCP_ZEROCOPY_RECEIVE = 35
const TCSADRAIN = 1
const TCSAFLUSH = 2
const TCSANOW = 0
const TCSBRK = 21513
const TCSBRKP = 21541
const TCSETA = 21510
const TCSETAF = 21512
const TCSETAW = 21511
const TCSETS = 21506
const TCSETSF = 21508
const TCSETSW = 21507
const TCSETX = 21555
const TCSETXF = 21556
const TCSETXW = 21557
const TCXONC = 21514
const TFD_CLOEXEC = 524288
const TFD_NONBLOCK = 2048
const TFD_TIMER_ABSTIME = 1
const TFD_TIMER_CANCEL_ON_SET = 2
const THOUSEP = 65537
const THRESH = 7.446288774449766e+307
const TIMER_ABSTIME = 1
const TIME_BAD = 5
const TIME_DEL = 2
const TIME_ERROR = 5
const TIME_INS = 1
const TIME_OK = 0
const TIME_OOP = 3
const TIME_UTC = 1
const TIME_WAIT = 4
const TIOCCBRK = 21544
const TIOCCONS = 21533
const TIOCEXCL = 21516
const TIOCGDEV = 2147767346
const TIOCGETD = 21540
const TIOCGEXCL = 2147767360
const TIOCGICOUNT = 21597
const TIOCGISO7816 = 2150126658
const TIOCGLCKTRMIOS = 21590
const TIOCGPGRP = 21519
const TIOCGPKT = 2147767352
const TIOCGPTLCK = 2147767353
const TIOCGPTN = 2147767344
const TIOCGPTPEER = 21569
const TIOCGRS485 = 21550
const TIOCGSERIAL = 21534
const TIOCGSID = 21545
const TIOCGSOFTCAR = 21529
const TIOCGWINSZ = 21523
const TIOCINQ = 21531
const TIOCLINUX = 21532
const TIOCMBIC = 21527
const TIOCMBIS = 21526
const TIOCMGET = 21525
const TIOCMIWAIT = 21596
const TIOCMSET = 21528
const TIOCM_CAR = 64
const TIOCM_CD = 64
const TIOCM_CTS = 32
const TIOCM_DSR = 256
const TIOCM_DTR = 2
const TIOCM_LE = 1
const TIOCM_LOOP = 32768
const TIOCM_OUT1 = 8192
const TIOCM_OUT2 = 16384
const TIOCM_RI = 128
const TIOCM_RNG = 128
const TIOCM_RTS = 4
const TIOCM_SR = 16
const TIOCM_ST = 8
const TIOCNOTTY = 21538
const TIOCNXCL = 21517
const TIOCOUTQ = 21521
const TIOCPKT = 21536
const TIOCPKT_DATA = 0
const TIOCPKT_DOSTOP = 32
const TIOCPKT_FLUSHREAD = 1
const TIOCPKT_FLUSHWRITE = 2
const TIOCPKT_IOCTL = 64
const TIOCPKT_NOSTOP = 16
const TIOCPKT_START = 8
const TIOCPKT_STOP = 4
const TIOCSBRK = 21543
const TIOCSCTTY = 21518
const TIOCSERCONFIG = 21587
const TIOCSERGETLSR = 21593
const TIOCSERGETMULTI = 21594
const TIOCSERGSTRUCT = 21592
const TIOCSERGWILD = 21588
const TIOCSERSETMULTI = 21595
const TIOCSERSWILD = 21589
const TIOCSER_TEMT = 1
const TIOCSETD = 21539
const TIOCSIG = 1074025526
const TIOCSISO7816 = 3223868483
const TIOCSLCKTRMIOS = 21591
const TIOCSPGRP = 21520
const TIOCSPTLCK = 1074025521
const TIOCSRS485 = 21551
const TIOCSSERIAL = 21535
const TIOCSSOFTCAR = 21530
const TIOCSTI = 21522
const TIOCSWINSZ = 21524
const TIOCVHANGUP = 21559
const TMP_MAX = 10000
const TOINT_INTRINSICS = 0
const TOSTOP = 256
const TP_OFFSET = 0
const TRAP_BRANCH = 3
const TRAP_BRKPT = 1
const TRAP_HWBKPT = 4
const TRAP_TRACE = 2
const TRAP_UNK = 5
const TRE_CHAR_MAX = 1114111
const TRE_MEM_BLOCK_SIZE = 1024
const TRE_REGEX_T_FIELD = 0
const TRY_AGAIN = 2
const TTY_NAME_MAX = 32
const TZNAME_MAX = 6
const T_A = 0
const T_A6 = 0
const T_AAAA = 0
const T_AFSDB = 0
const T_ANY = 0
const T_ATMA = 0
const T_AVC = 0
const T_AXFR = 0
const T_CAA = 0
const T_CDNSKEY = 0
const T_CDS = 0
const T_CNAME = 0
const T_CSYNC = 0
const T_DHCID = 0
const T_DLV = 0
const T_DNAME = 0
const T_DNSKEY = 0
const T_DS = 0
const T_EID = 0
const T_EUI48 = 0
const T_EUI64 = 0
const T_FMT = 131114
const T_FMT_AMPM = 131115
const T_GID = 0
const T_GPOS = 0
const T_HINFO = 0
const T_HIP = 0
const T_IPSECKEY = 0
const T_ISDN = 0
const T_IXFR = 0
const T_KEY = 0
const T_L32 = 0
const T_L64 = 0
const T_LOC = 0
const T_LP = 0
const T_MAILA = 0
const T_MAILB = 0
const T_MB = 0
const T_MD = 0
const T_MF = 0
const T_MG = 0
const T_MINFO = 0
const T_MR = 0
const T_MX = 0
const T_NAPTR = 0
const T_NID = 0
const T_NIMLOC = 0
const T_NINFO = 0
const T_NS = 0
const T_NSAP = 0
const T_NSAP_PTR = 0
const T_NSEC = 0
const T_NSEC3 = 0
const T_NSEC3PARAM = 0
const T_NULL = 0
const T_NXT = 0
const T_OPENPGPKEY = 0
const T_PTR = 0
const T_PX = 0
const T_RKEY = 0
const T_RP = 0
const T_RRSIG = 0
const T_RT = 0
const T_SIG = 0
const T_SMIMEA = 0
const T_SOA = 0
const T_SPF = 0
const T_SRV = 0
const T_SSHFP = 0
const T_TA = 0
const T_TALINK = 0
const T_TKEY = 0
const T_TLSA = 0
const T_TSIG = 0
const T_TXT = 0
const T_UID = 0
const T_UINFO = 0
const T_UNSPEC = 0
const T_URI = 0
const T_WKS = 0
const T_X25 = 0
const UCHAR_MAX = 255
const UCS2 = 204
const UCS2BE = 196
const UCS2LE = 197
const UINT16_MAX = 65535
const UINT32_MAX = 4294967295
const UINT64_MAX = 18446744073709551615
const UINT8_MAX = 255
const UINTMAX_MAX = 18446744073709551615
const UINTPTR_MAX = 18446744073709551615
const UINT_FAST16_MAX = 4294967295
const UINT_FAST32_MAX = 4294967295
const UINT_FAST64_MAX = 18446744073709551615
const UINT_FAST8_MAX = 255
const UINT_LEAST16_MAX = 65535
const UINT_LEAST32_MAX = 4294967295
const UINT_LEAST64_MAX = 18446744073709551615
const UINT_LEAST8_MAX = 255
const UINT_MAX = 4294967295
const UIO_MAXIOV = 1024
const ULLONG_MAX = 18446744073709551615
const ULONG_MAX = 18446744073709551615
const UL_GETFSIZE = 1
const UL_SETFSIZE = 2
const UMOUNT_NOFOLLOW = 8
const UNAME26 = 131072
const UNGET = 8
const UNIT = 4096
const UNMATCHABLE = -2
const USER_PROCESS = 7
const USHRT_MAX = 65535
const USRQUOTA = 0
const US_ASCII = 199
const UTF8_LOCALE = 0
const UTF_16 = 202
const UTF_16BE = 194
const UTF_16LE = 193
const UTF_32 = 203
const UTF_32BE = 192
const UTF_32LE = 195
const UTF_8 = 200
const UTIME_NOW = 1073741823
const UTIME_OMIT = 1073741822
const UTMP_FILE = "_PATH_UTMP"
const UTMP_FILENAME = "_PATH_UTMP"
const UT_HOSTSIZE = 256
const UT_LINESIZE = 32
const UT_NAMESIZE = 32
const VDISCARD = 13
const VEOF = 4
const VEOL = 11
const VEOL2 = 16
const VER = -255
const VERASE = 2
const VERSION = "1.2.5"
const VER_DEF_CURRENT = 1
const VER_DEF_NONE = 0
const VER_DEF_NUM = 2
const VER_FLG_BASE = 1
const VER_FLG_WEAK = 2
const VER_NDX_ELIMINATE = 65281
const VER_NDX_GLOBAL = 1
const VER_NDX_LOCAL = 0
const VER_NDX_LORESERVE = 65280
const VER_NEED_CURRENT = 1
const VER_NEED_NONE = 0
const VER_NEED_NUM = 2
const VINTR = 0
const VKILL = 3
const VLNEXT = 15
const VMIN = 6
const VQUIT = 1
const VREPRINT = 12
const VSTART = 8
const VSTOP = 9
const VSUSP = 10
const VSWTC = 7
const VT0 = 0
const VT1 = 16384
const VTDLY = 16384
const VTIME = 5
const VWERASE = 14
const W = 1
const WANT_ROUNDING = 1
const WANT_SNAN = 0
const WCHAR_MAX = 2147483647
const WCHAR_MIN = -2147483648
const WCHAR_T = 198
const WCONTINUED = 8
const WCTYPE_ALNUM = 1
const WCTYPE_ALPHA = 2
const WCTYPE_BLANK = 3
const WCTYPE_CNTRL = 4
const WCTYPE_DIGIT = 5
const WCTYPE_GRAPH = 6
const WCTYPE_LOWER = 7
const WCTYPE_PRINT = 8
const WCTYPE_PUNCT = 9
const WCTYPE_SPACE = 10
const WCTYPE_UPPER = 11
const WCTYPE_XDIGIT = 12
const WEXITED = 4
const WHOLE_SECONDS = 33554432
const WINT_MAX = 4294967295
const WINT_MIN = 0
const WNOHANG = 1
const WNOWAIT = 16777216
const WORD_BIT = 32
const WR = 3
const WS = 0
const WSTOPPED = 2
const WTMP_FILE = "_PATH_WTMP"
const WTMP_FILENAME = "_PATH_WTMP"
const WUNTRACED = 2
const W_OK = 2
const XATTR_CREATE = 1
const XATTR_REPLACE = 2
const XCASE = 4
const XTABS = 6144
const X_OK = 1
const YESEXPR = 327680
const YESSTR = 327682
const YXDOMAIN = 0
const YXRRSET = 0
const ZEROINFNAN = 971
const ZERO_PAD = 65536
Variables ¶
var ( Covered = map[uintptr]struct{}{} CoveredC = map[string]struct{}{} )
var CAPI = map[string]struct{}{}/* 522 elements not displayed */
var X__abort_lock [1]int32
var X__at_quick_exit_lockptr = uintptr(unsafe.Pointer(&_lock))
var X__atexit_lockptr int32
static volatile int *const dummy_lockptr = 0;
weak_alias(dummy_lockptr, __atexit_lockptr); weak_alias(dummy_lockptr, __bump_lockptr); weak_alias(dummy_lockptr, __sem_open_lockptr);
var X__bump_lockptr int32
var X__c_dot_utf8 = t__locale_map{ Fmap1: uintptr(unsafe.Pointer(&_empty_mo)), Fmap_size: uint64(20), Fname: [24]int8{'C', '.', 'U', 'T', 'F', '-', '8'}, }
var X__c_dot_utf8_locale = t__locale_struct{ Fcat: [6]uintptr{ 0: uintptr(unsafe.Pointer(&X__c_dot_utf8)), }, }
var X__c_locale = t__locale_struct{}
var X__eintr_valid_flag int32
var X__exp2f_data = Texp2f_data{ Ftab: [32]Tuint64_t{ 0: uint64(0x3ff0000000000000), 1: uint64(0x3fefd9b0d3158574), 2: uint64(0x3fefb5586cf9890f), 3: uint64(0x3fef9301d0125b51), 4: uint64(0x3fef72b83c7d517b), 5: uint64(0x3fef54873168b9aa), 6: uint64(0x3fef387a6e756238), 7: uint64(0x3fef1e9df51fdee1), 8: uint64(0x3fef06fe0a31b715), 9: uint64(0x3feef1a7373aa9cb), 10: uint64(0x3feedea64c123422), 11: uint64(0x3feece086061892d), 12: uint64(0x3feebfdad5362a27), 13: uint64(0x3feeb42b569d4f82), 14: uint64(0x3feeab07dd485429), 15: uint64(0x3feea47eb03a5585), 16: uint64(0x3feea09e667f3bcd), 17: uint64(0x3fee9f75e8ec5f74), 18: uint64(0x3feea11473eb0187), 19: uint64(0x3feea589994cce13), 20: uint64(0x3feeace5422aa0db), 21: uint64(0x3feeb737b0cdc5e5), 22: uint64(0x3feec49182a3f090), 23: uint64(0x3feed503b23e255d), 24: uint64(0x3feee89f995ad3ad), 25: uint64(0x3feeff76f2fb5e47), 26: uint64(0x3fef199bdd85529c), 27: uint64(0x3fef3720dcef9069), 28: uint64(0x3fef5818dcfba487), 29: uint64(0x3fef7c97337b9b5f), 30: uint64(0x3fefa4afa2a490da), 31: uint64(0x3fefd0765b6e4540), }, Fshift_scaled: Float64FromFloat64(6.755399441055744e+15) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)), Fpoly: [3]float64{ 0: float64(0.05550361559341535), 1: float64(0.2402284522445722), 2: float64(0.6931471806916203), }, Fshift: float64(6.755399441055744e+15), Finvln2_scaled: float64(Float64FromFloat64(1.4426950408889634) * float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS))), Fpoly_scaled: [3]float64{ 0: Float64FromFloat64(0.05550361559341535) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)), 1: Float64FromFloat64(0.2402284522445722) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)), 2: Float64FromFloat64(0.6931471806916203) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP2F_TABLE_BITS)), }, }
var X__exp_data = Texp_data{ Finvln2N: float64(Float64FromFloat64(1.4426950408889634) * float64(Int32FromInt32(1)<<Int32FromInt32(EXP_TABLE_BITS))), Fshift: float64(6.755399441055744e+15), Fnegln2hiN: -Float64FromFloat64(0.005415212348111709), Fnegln2loN: -Float64FromFloat64(1.2864023111638346e-14), Fpoly: [4]float64{ 0: float64(0.49999999999996786), 1: float64(0.16666666666665886), 2: float64(0.0416666808410674), 3: float64(0.008333335853059549), }, Fexp2_shift: Float64FromFloat64(6.755399441055744e+15) / float64(Int32FromInt32(1)<<Int32FromInt32(EXP_TABLE_BITS)), Fexp2_poly: [5]float64{ 0: float64(0.6931471805599453), 1: float64(0.24022650695909065), 2: float64(0.0555041086686087), 3: float64(0.009618131975721055), 4: float64(0.0013332074570119598), }, Ftab: [256]Tuint64_t{ 1: uint64(0x3ff0000000000000), 2: uint64(0x3c9b3b4f1a88bf6e), 3: uint64(0x3feff63da9fb3335), 4: uint64(0xbc7160139cd8dc5d), 5: uint64(0x3fefec9a3e778061), 6: uint64(0xbc905e7a108766d1), 7: uint64(0x3fefe315e86e7f85), 8: uint64(0x3c8cd2523567f613), 9: uint64(0x3fefd9b0d3158574), 10: uint64(0xbc8bce8023f98efa), 11: uint64(0x3fefd06b29ddf6de), 12: uint64(0x3c60f74e61e6c861), 13: uint64(0x3fefc74518759bc8), 14: uint64(0x3c90a3e45b33d399), 15: uint64(0x3fefbe3ecac6f383), 16: uint64(0x3c979aa65d837b6d), 17: uint64(0x3fefb5586cf9890f), 18: uint64(0x3c8eb51a92fdeffc), 19: uint64(0x3fefac922b7247f7), 20: uint64(0x3c3ebe3d702f9cd1), 21: uint64(0x3fefa3ec32d3d1a2), 22: uint64(0xbc6a033489906e0b), 23: uint64(0x3fef9b66affed31b), 24: uint64(0xbc9556522a2fbd0e), 25: uint64(0x3fef9301d0125b51), 26: uint64(0xbc5080ef8c4eea55), 27: uint64(0x3fef8abdc06c31cc), 28: uint64(0xbc91c923b9d5f416), 29: uint64(0x3fef829aaea92de0), 30: uint64(0x3c80d3e3e95c55af), 31: uint64(0x3fef7a98c8a58e51), 32: uint64(0xbc801b15eaa59348), 33: uint64(0x3fef72b83c7d517b), 34: uint64(0xbc8f1ff055de323d), 35: uint64(0x3fef6af9388c8dea), 36: uint64(0x3c8b898c3f1353bf), 37: uint64(0x3fef635beb6fcb75), 38: uint64(0xbc96d99c7611eb26), 39: uint64(0x3fef5be084045cd4), 40: uint64(0x3c9aecf73e3a2f60), 41: uint64(0x3fef54873168b9aa), 42: uint64(0xbc8fe782cb86389d), 43: uint64(0x3fef4d5022fcd91d), 44: uint64(0x3c8a6f4144a6c38d), 45: uint64(0x3fef463b88628cd6), 46: uint64(0x3c807a05b0e4047d), 47: uint64(0x3fef3f49917ddc96), 48: uint64(0x3c968efde3a8a894), 49: uint64(0x3fef387a6e756238), 50: uint64(0x3c875e18f274487d), 51: uint64(0x3fef31ce4fb2a63f), 52: uint64(0x3c80472b981fe7f2), 53: uint64(0x3fef2b4565e27cdd), 54: uint64(0xbc96b87b3f71085e), 55: uint64(0x3fef24dfe1f56381), 56: uint64(0x3c82f7e16d09ab31), 57: uint64(0x3fef1e9df51fdee1), 58: uint64(0xbc3d219b1a6fbffa), 59: uint64(0x3fef187fd0dad990), 60: uint64(0x3c8b3782720c0ab4), 61: uint64(0x3fef1285a6e4030b), 62: uint64(0x3c6e149289cecb8f), 63: uint64(0x3fef0cafa93e2f56), 64: uint64(0x3c834d754db0abb6), 65: uint64(0x3fef06fe0a31b715), 66: uint64(0x3c864201e2ac744c), 67: uint64(0x3fef0170fc4cd831), 68: uint64(0x3c8fdd395dd3f84a), 69: uint64(0x3feefc08b26416ff), 70: uint64(0xbc86a3803b8e5b04), 71: uint64(0x3feef6c55f929ff1), 72: uint64(0xbc924aedcc4b5068), 73: uint64(0x3feef1a7373aa9cb), 74: uint64(0xbc9907f81b512d8e), 75: uint64(0x3feeecae6d05d866), 76: uint64(0xbc71d1e83e9436d2), 77: uint64(0x3feee7db34e59ff7), 78: uint64(0xbc991919b3ce1b15), 79: uint64(0x3feee32dc313a8e5), 80: uint64(0x3c859f48a72a4c6d), 81: uint64(0x3feedea64c123422), 82: uint64(0xbc9312607a28698a), 83: uint64(0x3feeda4504ac801c), 84: uint64(0xbc58a78f4817895b), 85: uint64(0x3feed60a21f72e2a), 86: uint64(0xbc7c2c9b67499a1b), 87: uint64(0x3feed1f5d950a897), 88: uint64(0x3c4363ed60c2ac11), 89: uint64(0x3feece086061892d), 90: uint64(0x3c9666093b0664ef), 91: uint64(0x3feeca41ed1d0057), 92: uint64(0x3c6ecce1daa10379), 93: uint64(0x3feec6a2b5c13cd0), 94: uint64(0x3c93ff8e3f0f1230), 95: uint64(0x3feec32af0d7d3de), 96: uint64(0x3c7690cebb7aafb0), 97: uint64(0x3feebfdad5362a27), 98: uint64(0x3c931dbdeb54e077), 99: uint64(0x3feebcb299fddd0d), 100: uint64(0xbc8f94340071a38e), 101: uint64(0x3feeb9b2769d2ca7), 102: uint64(0xbc87deccdc93a349), 103: uint64(0x3feeb6daa2cf6642), 104: uint64(0xbc78dec6bd0f385f), 105: uint64(0x3feeb42b569d4f82), 106: uint64(0xbc861246ec7b5cf6), 107: uint64(0x3feeb1a4ca5d920f), 108: uint64(0x3c93350518fdd78e), 109: uint64(0x3feeaf4736b527da), 110: uint64(0x3c7b98b72f8a9b05), 111: uint64(0x3feead12d497c7fd), 112: uint64(0x3c9063e1e21c5409), 113: uint64(0x3feeab07dd485429), 114: uint64(0x3c34c7855019c6ea), 115: uint64(0x3feea9268a5946b7), 116: uint64(0x3c9432e62b64c035), 117: uint64(0x3feea76f15ad2148), 118: uint64(0xbc8ce44a6199769f), 119: uint64(0x3feea5e1b976dc09), 120: uint64(0xbc8c33c53bef4da8), 121: uint64(0x3feea47eb03a5585), 122: uint64(0xbc845378892be9ae), 123: uint64(0x3feea34634ccc320), 124: uint64(0xbc93cedd78565858), 125: uint64(0x3feea23882552225), 126: uint64(0x3c5710aa807e1964), 127: uint64(0x3feea155d44ca973), 128: uint64(0xbc93b3efbf5e2228), 129: uint64(0x3feea09e667f3bcd), 130: uint64(0xbc6a12ad8734b982), 131: uint64(0x3feea012750bdabf), 132: uint64(0xbc6367efb86da9ee), 133: uint64(0x3fee9fb23c651a2f), 134: uint64(0xbc80dc3d54e08851), 135: uint64(0x3fee9f7df9519484), 136: uint64(0xbc781f647e5a3ecf), 137: uint64(0x3fee9f75e8ec5f74), 138: uint64(0xbc86ee4ac08b7db0), 139: uint64(0x3fee9f9a48a58174), 140: uint64(0xbc8619321e55e68a), 141: uint64(0x3fee9feb564267c9), 142: uint64(0x3c909ccb5e09d4d3), 143: uint64(0x3feea0694fde5d3f), 144: uint64(0xbc7b32dcb94da51d), 145: uint64(0x3feea11473eb0187), 146: uint64(0x3c94ecfd5467c06b), 147: uint64(0x3feea1ed0130c132), 148: uint64(0x3c65ebe1abd66c55), 149: uint64(0x3feea2f336cf4e62), 150: uint64(0xbc88a1c52fb3cf42), 151: uint64(0x3feea427543e1a12), 152: uint64(0xbc9369b6f13b3734), 153: uint64(0x3feea589994cce13), 154: uint64(0xbc805e843a19ff1e), 155: uint64(0x3feea71a4623c7ad), 156: uint64(0xbc94d450d872576e), 157: uint64(0x3feea8d99b4492ed), 158: uint64(0x3c90ad675b0e8a00), 159: uint64(0x3feeaac7d98a6699), 160: uint64(0x3c8db72fc1f0eab4), 161: uint64(0x3feeace5422aa0db), 162: uint64(0xbc65b6609cc5e7ff), 163: uint64(0x3feeaf3216b5448c), 164: uint64(0x3c7bf68359f35f44), 165: uint64(0x3feeb1ae99157736), 166: uint64(0xbc93091fa71e3d83), 167: uint64(0x3feeb45b0b91ffc6), 168: uint64(0xbc5da9b88b6c1e29), 169: uint64(0x3feeb737b0cdc5e5), 170: uint64(0xbc6c23f97c90b959), 171: uint64(0x3feeba44cbc8520f), 172: uint64(0xbc92434322f4f9aa), 173: uint64(0x3feebd829fde4e50), 174: uint64(0xbc85ca6cd7668e4b), 175: uint64(0x3feec0f170ca07ba), 176: uint64(0x3c71affc2b91ce27), 177: uint64(0x3feec49182a3f090), 178: uint64(0x3c6dd235e10a73bb), 179: uint64(0x3feec86319e32323), 180: uint64(0xbc87c50422622263), 181: uint64(0x3feecc667b5de565), 182: uint64(0x3c8b1c86e3e231d5), 183: uint64(0x3feed09bec4a2d33), 184: uint64(0xbc91bbd1d3bcbb15), 185: uint64(0x3feed503b23e255d), 186: uint64(0x3c90cc319cee31d2), 187: uint64(0x3feed99e1330b358), 188: uint64(0x3c8469846e735ab3), 189: uint64(0x3feede6b5579fdbf), 190: uint64(0xbc82dfcd978e9db4), 191: uint64(0x3feee36bbfd3f37a), 192: uint64(0x3c8c1a7792cb3387), 193: uint64(0x3feee89f995ad3ad), 194: uint64(0xbc907b8f4ad1d9fa), 195: uint64(0x3feeee07298db666), 196: uint64(0xbc55c3d956dcaeba), 197: uint64(0x3feef3a2b84f15fb), 198: uint64(0xbc90a40e3da6f640), 199: uint64(0x3feef9728de5593a), 200: uint64(0xbc68d6f438ad9334), 201: uint64(0x3feeff76f2fb5e47), 202: uint64(0xbc91eee26b588a35), 203: uint64(0x3fef05b030a1064a), 204: uint64(0x3c74ffd70a5fddcd), 205: uint64(0x3fef0c1e904bc1d2), 206: uint64(0xbc91bdfbfa9298ac), 207: uint64(0x3fef12c25bd71e09), 208: uint64(0x3c736eae30af0cb3), 209: uint64(0x3fef199bdd85529c), 210: uint64(0x3c8ee3325c9ffd94), 211: uint64(0x3fef20ab5fffd07a), 212: uint64(0x3c84e08fd10959ac), 213: uint64(0x3fef27f12e57d14b), 214: uint64(0x3c63cdaf384e1a67), 215: uint64(0x3fef2f6d9406e7b5), 216: uint64(0x3c676b2c6c921968), 217: uint64(0x3fef3720dcef9069), 218: uint64(0xbc808a1883ccb5d2), 219: uint64(0x3fef3f0b555dc3fa), 220: uint64(0xbc8fad5d3ffffa6f), 221: uint64(0x3fef472d4a07897c), 222: uint64(0xbc900dae3875a949), 223: uint64(0x3fef4f87080d89f2), 224: uint64(0x3c74a385a63d07a7), 225: uint64(0x3fef5818dcfba487), 226: uint64(0xbc82919e2040220f), 227: uint64(0x3fef60e316c98398), 228: uint64(0x3c8e5a50d5c192ac), 229: uint64(0x3fef69e603db3285), 230: uint64(0x3c843a59ac016b4b), 231: uint64(0x3fef7321f301b460), 232: uint64(0xbc82d52107b43e1f), 233: uint64(0x3fef7c97337b9b5f), 234: uint64(0xbc892ab93b470dc9), 235: uint64(0x3fef864614f5a129), 236: uint64(0x3c74b604603a88d3), 237: uint64(0x3fef902ee78b3ff6), 238: uint64(0x3c83c5ec519d7271), 239: uint64(0x3fef9a51fbc74c83), 240: uint64(0xbc8ff7128fd391f0), 241: uint64(0x3fefa4afa2a490da), 242: uint64(0xbc8dae98e223747d), 243: uint64(0x3fefaf482d8e67f1), 244: uint64(0x3c8ec3bc41aa2008), 245: uint64(0x3fefba1bee615a27), 246: uint64(0x3c842b94c3a9eb32), 247: uint64(0x3fefc52b376bba97), 248: uint64(0x3c8a64a931d185ee), 249: uint64(0x3fefd0765b6e4540), 250: uint64(0xbc8e37bae43be3ed), 251: uint64(0x3fefdbfdad9cbe14), 252: uint64(0x3c77893b4d91cd9d), 253: uint64(0x3fefe7c1819e90d8), 254: uint64(0x3c5305c14160cc89), 255: uint64(0x3feff3c22b8f71f1), }, }
var X__fsmu8 = [51]Tuint32_t{ 0: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x2), 1: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x3), 2: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x4), 3: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x5), 4: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x6), 5: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x7), 6: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x8), 7: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0x9), 8: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xa), 9: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xb), 10: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xc), 11: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xd), 12: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xe), 13: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(0xf), 14: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x0)+Int32FromInt32(16)), 15: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x1)+Int32FromInt32(16)), 16: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x2)+Int32FromInt32(16)), 17: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x3)+Int32FromInt32(16)), 18: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x4)+Int32FromInt32(16)), 19: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x5)+Int32FromInt32(16)), 20: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x6)+Int32FromInt32(16)), 21: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x7)+Int32FromInt32(16)), 22: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x8)+Int32FromInt32(16)), 23: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0x9)+Int32FromInt32(16)), 24: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xa)+Int32FromInt32(16)), 25: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xb)+Int32FromInt32(16)), 26: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xc)+Int32FromInt32(16)), 27: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xd)+Int32FromInt32(16)), 28: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xe)+Int32FromInt32(16)), 29: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | Uint32FromInt32(Int32FromInt32(0xf)+Int32FromInt32(16)), 30: (Uint32FromUint32(0)-Uint32FromInt32(0xa0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x0), 31: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x1), 32: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x2), 33: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x3), 34: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x4), 35: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x5), 36: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x6), 37: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x7), 38: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x8), 39: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0x9), 40: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xa), 41: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xb), 42: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xc), 43: (Uint32FromUint32(0x40)-Uint32FromInt32(0xa0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xd), 44: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xe), 45: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | Uint32FromInt32(0xf), 46: (Uint32FromUint32(0)-Uint32FromInt32(0x90))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(12) | Uint32FromInt32(0x0), 47: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(12) | Uint32FromInt32(0x1), 48: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(12) | Uint32FromInt32(0x2), 49: (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(12) | Uint32FromInt32(0x3), 50: (Uint32FromUint32(0x40)-Uint32FromInt32(0x90))<<Int32FromInt32(23) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(6) | (Uint32FromUint32(0x40)-Uint32FromInt32(0xc0))<<Int32FromInt32(23)>>Int32FromInt32(12) | Uint32FromInt32(0x4), }
var X__gettext_lockptr = uintptr(unsafe.Pointer(&_lock1))
var X__libc t__libc
var X__libc_version = [6]int8{'1', '.', '2', '.', '5'}
var X__locale_lock [1]int32
var X__locale_lockptr = uintptr(unsafe.Pointer(&X__locale_lock))
var X__log2_data = Tlog2_data{ Finvln2hi: float64(1.4426950407214463), Finvln2lo: float64(1.6751713164886512e-10), Fpoly: [6]float64{ 0: -Float64FromFloat64(0.7213475204444882), 1: float64(0.4808983469629985), 2: -Float64FromFloat64(0.36067375954075914), 3: float64(0.2885390073180969), 4: -Float64FromFloat64(0.2404693555628422), 5: float64(0.2061202382173603), }, Fpoly1: [10]float64{ 0: -Float64FromFloat64(0.7213475204444817), 1: float64(0.48089834696298744), 2: -Float64FromFloat64(0.360673760222145), 3: float64(0.2885390081805197), 4: -Float64FromFloat64(0.24044917405728863), 5: float64(0.2060992861022954), 6: -Float64FromFloat64(0.18033596705327856), 7: float64(0.1603032746063156), 8: -Float64FromFloat64(0.14483316576701266), 9: float64(0.13046826811283835), }, Ftab: [64]struct { Finvc float64 Flogc float64 }{ 0: { Finvc: float64(1.4463276106642393), Flogc: -Float64FromFloat64(0.5323943771486483), }, 1: { Finvc: float64(1.4301675812282968), Flogc: -Float64FromFloat64(0.516184206053822), }, 2: { Finvc: float64(1.4143648676229383), Flogc: -Float64FromFloat64(0.5001543441974263), }, 3: { Finvc: float64(1.3989068970611538), Flogc: -Float64FromFloat64(0.4842999484799293), }, 4: { Finvc: float64(1.3837838957784339), Flogc: -Float64FromFloat64(0.46861865624623533), }, 5: { Finvc: float64(1.368983882697786), Flogc: -Float64FromFloat64(0.4531054615783887), }, 6: { Finvc: float64(1.3544972916324536), Flogc: -Float64FromFloat64(0.43775750882059583), }, 7: { Finvc: float64(1.3403139676437443), Flogc: -Float64FromFloat64(0.4225709906127122), }, 8: { Finvc: float64(1.3264249304188642), Flogc: -Float64FromFloat64(0.40754302793970965), }, 9: { Finvc: float64(1.3128203652112156), Flogc: -Float64FromFloat64(0.3926695240384106), }, 10: { Finvc: float64(1.299492412370217), Flogc: -Float64FromFloat64(0.3779482100565019), }, 11: { Finvc: float64(1.28643198385998), Flogc: -Float64FromFloat64(0.36337518101890964), }, 12: { Finvc: float64(1.2736319291846832), Flogc: -Float64FromFloat64(0.3489484089425332), }, 13: { Finvc: float64(1.2610838968062879), Flogc: -Float64FromFloat64(0.33466425780738973), }, 14: { Finvc: float64(1.248780314313572), Flogc: -Float64FromFloat64(0.3205197000629596), }, 15: { Finvc: float64(1.2367150450059063), Flogc: -Float64FromFloat64(0.3065131231801388), }, 16: { Finvc: float64(1.2248804968401878), Flogc: -Float64FromFloat64(0.2926410022678283), }, 17: { Finvc: float64(1.2132702353497795), Flogc: -Float64FromFloat64(0.2789009220805383), }, 18: { Finvc: float64(1.2018780785715362), Flogc: -Float64FromFloat64(0.2652905529862437), }, 19: { Finvc: float64(1.190697765061355), Flogc: -Float64FromFloat64(0.2518072602367738), }, 20: { Finvc: float64(1.1797235410550593), Flogc: -Float64FromFloat64(0.23844881494437686), }, 21: { Finvc: float64(1.1689498986205256), Flogc: -Float64FromFloat64(0.22521309705462045), }, 22: { Finvc: float64(1.158371137408455), Flogc: -Float64FromFloat64(0.21209756102439314), }, 23: { Finvc: float64(1.1479820146386086), Flogc: -Float64FromFloat64(0.1991000395789797), }, 24: { Finvc: float64(1.1377775576851088), Flogc: -Float64FromFloat64(0.18621852970682085), }, 25: { Finvc: float64(1.127753150630225), Flogc: -Float64FromFloat64(0.17345131655361), }, 26: { Finvc: float64(1.1179037012282074), Flogc: -Float64FromFloat64(0.16079591649577196), }, 27: { Finvc: float64(1.1082251967632821), Flogc: -Float64FromFloat64(0.14825107384353942), }, 28: { Finvc: float64(1.098712461056607), Flogc: -Float64FromFloat64(0.13581387465410444), }, 29: { Finvc: float64(1.0893619091634283), Flogc: -Float64FromFloat64(0.12348332762257996), }, 30: { Finvc: float64(1.0801689912316736), Flogc: -Float64FromFloat64(0.11125703807351783), }, 31: { Finvc: float64(1.071129489697672), Flogc: -Float64FromFloat64(0.09913289918449664), }, 32: { Finvc: float64(1.0622406576750423), Flogc: -Float64FromFloat64(0.08711065531497297), }, 33: { Finvc: float64(1.0534977607927976), Flogc: -Float64FromFloat64(0.07518724771330199), }, 34: { Finvc: float64(1.044897877982342), Flogc: -Float64FromFloat64(0.06336194888240243), }, 35: { Finvc: float64(1.0364370289499079), Flogc: -Float64FromFloat64(0.0516324649456692), }, 36: { Finvc: float64(1.0281122132034575), Flogc: -Float64FromFloat64(0.039997735929773626), }, 37: { Finvc: float64(1.0199202450036955), Flogc: -Float64FromFloat64(0.028456341769015125), }, 38: { Finvc: float64(1.0118577522306755), Flogc: -Float64FromFloat64(0.017006489068080555), }, 39: { Finvc: float64(1.003921649236766), Flogc: -Float64FromFloat64(0.005646678981520381), }, 40: { Finvc: float64(0.9922480467550775), Flogc: float64(0.011227277611396858), }, 41: { Finvc: float64(0.9770993366178549), Flogc: float64(0.033422853921138085), }, 42: { Finvc: float64(0.9624059787315814), Flogc: float64(0.05528248992573026), }, 43: { Finvc: float64(0.9481480598286369), Flogc: float64(0.07681573143713649), }, 44: { Finvc: float64(0.9343065931261065), Flogc: float64(0.09803204623631245), }, 45: { Finvc: float64(0.9208633936884979), Flogc: float64(0.11894094059630334), }, 46: { Finvc: float64(0.9078013641840602), Flogc: float64(0.13955143862290242), }, 47: { Finvc: float64(0.8951048181512927), Flogc: float64(0.15987146080919956), }, 48: { Finvc: float64(0.882758574260473), Flogc: float64(0.17990916589428707), }, 49: { Finvc: float64(0.8707481902241709), Flogc: float64(0.19967252559081317), }, 50: { Finvc: float64(0.8590602881746972), Flogc: float64(0.2191687127685782), }, 51: { Finvc: float64(0.8476822044336688), Flogc: float64(0.23840459427242422), }, 52: { Finvc: float64(0.8366013284053287), Flogc: float64(0.25738780610663525), }, 53: { Finvc: float64(0.8258064913621258), Flogc: float64(0.27612433583180973), }, 54: { Finvc: float64(0.8152865101579193), Flogc: float64(0.2946209507022104), }, 55: { Finvc: float64(0.8050314363208223), Flogc: float64(0.31288297359969874), }, 56: { Finvc: float64(0.7950310492640542), Flogc: float64(0.33091689015759584), }, 57: { Finvc: float64(0.7852760432487271), Flogc: float64(0.3487282100279572), }, 58: { Finvc: float64(0.7757575660314712), Flogc: float64(0.36632223233368677), }, 59: { Finvc: float64(0.7664670566588946), Flogc: float64(0.383704309808536), }, 60: { Finvc: float64(0.7573965608078645), Flogc: float64(0.4008792246509074), }, 61: { Finvc: float64(0.7485380168514022), Flogc: float64(0.41785250494945103), }, 62: { Finvc: float64(0.7398844213755009), Flogc: float64(0.4346281724315304), }, 63: { Finvc: float64(0.7314286113178112), Flogc: float64(0.45121103315341315), }, }, Ftab2: [64]struct { Fchi float64 Fclo float64 }{ 0: { Fchi: float64(0.6914062848739648), Fclo: float64(4.339971893418182e-17), }, 1: { Fchi: float64(0.6992187580850853), Fclo: float64(7.805593338712074e-18), }, 2: { Fchi: float64(0.7070311366547563), Fclo: float64(3.20843320369626e-17), }, 3: { Fchi: float64(0.7148438556567389), Fclo: float64(4.336491946473985e-17), }, 4: { Fchi: float64(0.7226561915128084), Fclo: float64(4.681890319761607e-17), }, 5: { Fchi: float64(0.730468789763508), Fclo: -Float64FromFloat64(1.647126642147294e-17), }, 6: { Fchi: float64(0.7382812842650944), Fclo: float64(2.0846837208642192e-17), }, 7: { Fchi: float64(0.7460938437864584), Fclo: -Float64FromFloat64(7.82131795361932e-18), }, 8: { Fchi: float64(0.7539062159244969), Fclo: -Float64FromFloat64(3.470987810015201e-17), }, 9: { Fchi: float64(0.761718835645205), Fclo: float64(1.2996798345429576e-17), }, 10: { Fchi: float64(0.7695312342578777), Fclo: -Float64FromFloat64(5.2071007285622585e-17), }, 11: { Fchi: float64(0.7773438569208053), Fclo: -Float64FromFloat64(4.513636731226183e-17), }, 12: { Fchi: float64(0.7851561955110148), Fclo: -Float64FromFloat64(2.0797044446832382e-17), }, 13: { Fchi: float64(0.7929686538163826), Fclo: -Float64FromFloat64(1.9947626198727574e-17), }, 14: { Fchi: float64(0.8007813612514213), Fclo: float64(1.472064871061342e-17), }, 15: { Fchi: float64(0.8085937047812207), Fclo: float64(5.290804109377209e-17), }, 16: { Fchi: float64(0.816406173973453), Fclo: -Float64FromFloat64(1.129659587857177e-17), }, 17: { Fchi: float64(0.8242186867064328), Fclo: float64(3.901543738154691e-17), }, 18: { Fchi: float64(0.8320311501051142), Fclo: -Float64FromFloat64(3.212482853127187e-17), }, 19: { Fchi: float64(0.8398436860662717), Fclo: float64(5.220081794706035e-18), }, 20: { Fchi: float64(0.8476562221566525), Fclo: -Float64FromFloat64(5.37416378988278e-17), }, 21: { Fchi: float64(0.8554686571084844), Fclo: float64(4.291992377471359e-18), }, 22: { Fchi: float64(0.8632811779454657), Fclo: float64(1.7319616935225806e-17), }, 23: { Fchi: float64(0.8710937865301015), Fclo: float64(1.8251073579011692e-17), }, 24: { Fchi: float64(0.8789064200163806), Fclo: float64(1.2113671810693101e-17), }, 25: { Fchi: float64(0.8867188705623812), Fclo: -Float64FromFloat64(2.431195196496269e-17), }, 26: { Fchi: float64(0.894531433164887), Fclo: -Float64FromFloat64(2.258952781769403e-17), }, 27: { Fchi: float64(0.9023436779100781), Fclo: float64(4.3322028821617186e-17), }, 28: { Fchi: float64(0.9101562378188762), Fclo: -Float64FromFloat64(5.2414676705491076e-18), }, 29: { Fchi: float64(0.9179685755379005), Fclo: -Float64FromFloat64(2.3432856904274634e-17), }, 30: { Fchi: float64(0.9257810658494647), Fclo: float64(3.9914341909758727e-17), }, 31: { Fchi: float64(0.9335939394986237), Fclo: -Float64FromFloat64(1.8218382846902827e-17), }, 32: { Fchi: float64(0.9414062555172099), Fclo: float64(4.423669374431538e-17), }, 33: { Fchi: float64(0.9492189136192009), Fclo: -Float64FromFloat64(2.6059674623550364e-17), }, 34: { Fchi: float64(0.9570313243730211), Fclo: -Float64FromFloat64(4.947019261946595e-17), }, 35: { Fchi: float64(0.9648439529540691), Fclo: -Float64FromFloat64(5.4644837229582306e-17), }, 36: { Fchi: float64(0.9726564738338594), Fclo: -Float64FromFloat64(5.4656321533328614e-17), }, 37: { Fchi: float64(0.9804688208697894), Fclo: -Float64FromFloat64(1.782581090537996e-18), }, 38: { Fchi: float64(0.98828120632121), Fclo: -Float64FromFloat64(5.2277711573086786e-18), }, 39: { Fchi: float64(0.9960936700192217), Fclo: float64(4.1586638841164565e-17), }, 40: { Fchi: float64(1.007812515499802), Fclo: float64(9.540912389137736e-17), }, 41: { Fchi: float64(1.0234373952820537), Fclo: float64(3.985821704561347e-17), }, 42: { Fchi: float64(1.0390625391978199), Fclo: -Float64FromFloat64(5.179495640960355e-18), }, 43: { Fchi: float64(1.0546875982436061), Fclo: -Float64FromFloat64(6.074512782488841e-17), }, 44: { Fchi: float64(1.07031247275489), Fclo: -Float64FromFloat64(4.853656019321416e-17), }, 45: { Fchi: float64(1.0859374005459401), Fclo: -Float64FromFloat64(1.0233609026899023e-16), }, 46: { Fchi: float64(1.101562565835984), Fclo: float64(9.714504510281668e-17), }, 47: { Fchi: float64(1.1171875960464082), Fclo: -Float64FromFloat64(5.728631491659617e-17), }, 48: { Fchi: float64(1.1328125595809087), Fclo: -Float64FromFloat64(4.3353271744463366e-17), }, 49: { Fchi: float64(1.1484376438870962), Fclo: float64(5.029455257812864e-17), }, 50: { Fchi: float64(1.1640626551656426), Fclo: -Float64FromFloat64(1.3886091944776072e-17), }, 51: { Fchi: float64(1.179687381390876), Fclo: float64(9.535864385063222e-17), }, 52: { Fchi: float64(1.19531246968748), Fclo: float64(2.5970710873556995e-17), }, 53: { Fchi: float64(1.2109374417129501), Fclo: -Float64FromFloat64(1.0412863482435496e-16), }, 54: { Fchi: float64(1.2265626715770166), Fclo: float64(1.903080930681457e-17), }, 55: { Fchi: float64(1.2421875157698543), Fclo: float64(9.884933154288451e-17), }, 56: { Fchi: float64(1.2578125104996614), Fclo: float64(2.605028401046449e-17), }, 57: { Fchi: float64(1.273437549250769), Fclo: float64(3.128070230699857e-17), }, 58: { Fchi: float64(1.2890625161616944), Fclo: -Float64FromFloat64(4.506460293510891e-17), }, 59: { Fchi: float64(1.3046875156762752), Fclo: -Float64FromFloat64(2.0874781900380847e-17), }, 60: { Fchi: float64(1.3203123063212308), Fclo: float64(8.50535702424751e-17), }, 61: { Fchi: float64(1.3359374907988373), Fclo: -Float64FromFloat64(3.99657459893118e-17), }, 62: { Fchi: float64(1.351562448282023), Fclo: float64(4.1576596545784e-17), }, 63: { Fchi: float64(1.3671874254389709), Fclo: -Float64FromFloat64(6.072295450780066e-17), }, }, }
var X__log2f_data = Tlog2f_data{ Ftab: [16]struct { Finvc float64 Flogc float64 }{ 0: { Finvc: float64(1.398907162146528), Flogc: -Float64FromFloat64(0.48430022186289673), }, 1: { Finvc: float64(1.3403141896637998), Flogc: -Float64FromFloat64(0.42257122959194704), }, 2: { Finvc: float64(1.286432210124115), Flogc: -Float64FromFloat64(0.3633754347673556), }, 3: { Finvc: float64(1.2367150214269895), Flogc: -Float64FromFloat64(0.30651309567405577), }, 4: { Finvc: float64(1.1906977166711752), Flogc: -Float64FromFloat64(0.25180720160537634), }, 5: { Finvc: float64(1.1479821020556429), Flogc: -Float64FromFloat64(0.19910014943794563), }, 6: { Finvc: float64(1.1082251448272158), Flogc: -Float64FromFloat64(0.14825100623281615), }, 7: { Finvc: float64(1.0711297413057381), Flogc: -Float64FromFloat64(0.09913323807318392), }, 8: { Finvc: float64(1.036437278977283), Flogc: -Float64FromFloat64(0.051632812977629436), }, 9: { Finvc: float64(1), }, 10: { Finvc: float64(0.9492859795739057), Flogc: float64(0.07508531937943004), }, 11: { Finvc: float64(0.8951049428609004), Flogc: float64(0.15987125980713107), }, 12: { Finvc: float64(0.8476821620351103), Flogc: float64(0.2384046664317681), }, 13: { Finvc: float64(0.8050314851692001), Flogc: float64(0.31288288605863257), }, 14: { Finvc: float64(0.7664671008843108), Flogc: float64(0.38370422656453185), }, 15: { Finvc: float64(0.731428603316328), Flogc: float64(0.451211048935815), }, }, Fpoly: [4]float64{ 0: -Float64FromFloat64(0.36051725506874704), 1: float64(0.4811247078767291), 2: -Float64FromFloat64(0.7213476299867769), 3: float64(1.4426950186867042), }, }
var X__log_data = Tlog_data{ Fln2hi: float64(0.6931471805598903), Fln2lo: float64(5.497923018708371e-14), Fpoly: [5]float64{ 0: -Float64FromFloat64(0.5000000000000001), 1: float64(0.33333333331825593), 2: -Float64FromFloat64(0.2499999999622955), 3: float64(0.20000304511814496), 4: -Float64FromFloat64(0.16667054827627667), }, Fpoly1: [11]float64{ 0: -Float64FromFloat64(0.5), 1: float64(0.3333333333333352), 2: -Float64FromFloat64(0.24999999999998432), 3: float64(0.19999999999320328), 4: -Float64FromFloat64(0.16666666669929706), 5: float64(0.14285715076560868), 6: -Float64FromFloat64(0.12499997863982555), 7: float64(0.11110712032936046), 8: -Float64FromFloat64(0.10000486757818193), 9: float64(0.09181994006195467), 10: -Float64FromFloat64(0.08328363062289341), }, Ftab: [128]struct { Finvc float64 Flogc float64 }{ 0: { Finvc: float64(1.4504249240398293), Flogc: -Float64FromFloat64(0.3718565645633589), }, 1: { Finvc: float64(1.442253508327276), Flogc: -Float64FromFloat64(0.36620682668944937), }, 2: { Finvc: float64(1.4341736174350004), Flogc: -Float64FromFloat64(0.3605888069791945), }, 3: { Finvc: float64(1.426183816329995), Flogc: -Float64FromFloat64(0.3550022171419869), }, 4: { Finvc: float64(1.4182825527052965), Flogc: -Float64FromFloat64(0.34944666968829097), }, 5: { Finvc: float64(1.4104682921759335), Flogc: -Float64FromFloat64(0.3439217713603284), }, 6: { Finvc: float64(1.4027396147468003), Flogc: -Float64FromFloat64(0.3384271921261188), }, 7: { Finvc: float64(1.3950954438932313), Flogc: -Float64FromFloat64(0.332962831494342), }, 8: { Finvc: float64(1.3875338232485754), Flogc: -Float64FromFloat64(0.32752794345742586), }, 9: { Finvc: float64(1.3800539211058593), Flogc: -Float64FromFloat64(0.32212257167088865), }, 10: { Finvc: float64(1.3726542695419708), Flogc: -Float64FromFloat64(0.3167462884799761), }, 11: { Finvc: float64(1.3653332798446802), Flogc: -Float64FromFloat64(0.3113985598928366), }, 12: { Finvc: float64(1.358090204587874), Flogc: -Float64FromFloat64(0.3060794515165526), }, 13: { Finvc: float64(1.3509234892132138), Flogc: -Float64FromFloat64(0.300788424667644), }, 14: { Finvc: float64(1.3438320840699889), Flogc: -Float64FromFloat64(0.2955252968476998), }, 15: { Finvc: float64(1.3368146974742003), Flogc: -Float64FromFloat64(0.29028969275850613), }, 16: { Finvc: float64(1.329870114677736), Flogc: -Float64FromFloat64(0.2850812793277555), }, 17: { Finvc: float64(1.322997339161106), Flogc: -Float64FromFloat64(0.27989987391470095), }, 18: { Finvc: float64(1.316195352741367), Flogc: -Float64FromFloat64(0.27474526621870154), }, 19: { Finvc: float64(1.3094628125672239), Flogc: -Float64FromFloat64(0.2696169863701243), }, 20: { Finvc: float64(1.3027990455471041), Flogc: -Float64FromFloat64(0.26451506180308115), }, 21: { Finvc: float64(1.2962024229438942), Flogc: -Float64FromFloat64(0.2594387762767383), }, 22: { Finvc: float64(1.2896726275815547), Flogc: -Float64FromFloat64(0.2543884090981692), }, 23: { Finvc: float64(1.2832080305745537), Flogc: -Float64FromFloat64(0.24936321635129843), }, 24: { Finvc: float64(1.276807885983376), Flogc: -Float64FromFloat64(0.24436312405975968), }, 25: { Finvc: float64(1.2704714060687552), Flogc: -Float64FromFloat64(0.23938801747897287), }, 26: { Finvc: float64(1.2641976054949482), Flogc: -Float64FromFloat64(0.23443761696705678), }, 27: { Finvc: float64(1.257985357514882), Flogc: -Float64FromFloat64(0.22951151871518505), }, 28: { Finvc: float64(1.2518337750655457), Flogc: -Float64FromFloat64(0.2246094963439873), }, 29: { Finvc: float64(1.2457421919097305), Flogc: -Float64FromFloat64(0.21973149037705753), }, 30: { Finvc: float64(1.2397094966625508), Flogc: -Float64FromFloat64(0.2148770752847895), }, 31: { Finvc: float64(1.2337348463589233), Flogc: -Float64FromFloat64(0.210046029103637), }, 32: { Finvc: float64(1.2278176973028803), Flogc: -Float64FromFloat64(0.20523836373934046), }, 33: { Finvc: float64(1.2219570190618474), Flogc: -Float64FromFloat64(0.20045368751368642), }, 34: { Finvc: float64(1.2161519732977757), Flogc: -Float64FromFloat64(0.1956917537758045), }, 35: { Finvc: float64(1.2104018095009725), Flogc: -Float64FromFloat64(0.19095237845203883), }, 36: { Finvc: float64(1.204705805718973), Flogc: -Float64FromFloat64(0.18623539250290833), }, 37: { Finvc: float64(1.1990631185441964), Flogc: -Float64FromFloat64(0.18154051731551135), }, 38: { Finvc: float64(1.1934733004462308), Flogc: -Float64FromFloat64(0.1768677957431919), }, 39: { Finvc: float64(1.1879350812847385), Flogc: -Float64FromFloat64(0.17221657406412305), }, 40: { Finvc: float64(1.1824481322833125), Flogc: -Float64FromFloat64(0.16758697765942543), }, 41: { Finvc: float64(1.1770114976921955), Flogc: -Float64FromFloat64(0.16297859687290384), }, 42: { Finvc: float64(1.1716248121809465), Flogc: -Float64FromFloat64(0.15839151377804228), }, 43: { Finvc: float64(1.1662869231674715), Flogc: -Float64FromFloat64(0.15382513241456763), }, 44: { Finvc: float64(1.1609977486762766), Flogc: -Float64FromFloat64(0.14927976358922024), }, 45: { Finvc: float64(1.1557563220795803), Flogc: -Float64FromFloat64(0.14475495398119165), }, 46: { Finvc: float64(1.1505619105480347), Flogc: -Float64FromFloat64(0.14025044090817573), }, 47: { Finvc: float64(1.1454138888505974), Flogc: -Float64FromFloat64(0.1357660466685502), }, 48: { Finvc: float64(1.140311877374656), Flogc: -Float64FromFloat64(0.1313018016355727), }, 49: { Finvc: float64(1.1352550225747513), Flogc: -Float64FromFloat64(0.12685731518763532), }, 50: { Finvc: float64(1.1302429094831266), Flogc: -Float64FromFloat64(0.1224325737671279), }, 51: { Finvc: float64(1.1252747693068048), Flogc: -Float64FromFloat64(0.11802724521862729), }, 52: { Finvc: float64(1.1203501571039876), Flogc: -Float64FromFloat64(0.11364127671663482), }, 53: { Finvc: float64(1.1154683327680124), Flogc: -Float64FromFloat64(0.10927434611278386), }, 54: { Finvc: float64(1.1106291463292157), Flogc: -Float64FromFloat64(0.10492665324943573), }, 55: { Finvc: float64(1.1058315813301596), Flogc: -Float64FromFloat64(0.10059761422644442), }, 56: { Finvc: float64(1.1010752177696026), Flogc: -Float64FromFloat64(0.09628717309055901), }, 57: { Finvc: float64(1.0963597137952512), Flogc: -Float64FromFloat64(0.09199534069557558), }, 58: { Finvc: float64(1.0916844827550398), Flogc: -Float64FromFloat64(0.08772190036688698), }, 59: { Finvc: float64(1.0870487291277784), Flogc: -Float64FromFloat64(0.08346643613867855), }, 60: { Finvc: float64(1.082452357388312), Flogc: -Float64FromFloat64(0.07922916827544668), }, 61: { Finvc: float64(1.0778948225025884), Flogc: -Float64FromFloat64(0.0750099004750382), }, 62: { Finvc: float64(1.0733751731601076), Flogc: -Float64FromFloat64(0.07080805133352897), }, 63: { Finvc: float64(1.068893585073351), Flogc: -Float64FromFloat64(0.06662408085151128), }, 64: { Finvc: float64(1.0644491706655506), Flogc: -Float64FromFloat64(0.06245745471915143), }, 65: { Finvc: float64(1.0600414846328305), Flogc: -Float64FromFloat64(0.0583080438042316), }, 66: { Finvc: float64(1.0556701316181605), Flogc: -Float64FromFloat64(0.05417576112313327), }, 67: { Finvc: float64(1.051334750556926), Flogc: -Float64FromFloat64(0.050060547896805474), }, 68: { Finvc: float64(1.0470347288442157), Flogc: -Float64FromFloat64(0.045962101199052086), }, 69: { Finvc: float64(1.0427699229652954), Flogc: -Float64FromFloat64(0.04188056008865715), }, 70: { Finvc: float64(1.0385395013738175), Flogc: -Float64FromFloat64(0.03781540056183985), }, 71: { Finvc: float64(1.034343418940345), Flogc: -Float64FromFloat64(0.03376684757915882), }, 72: { Finvc: float64(1.0301811073173315), Flogc: -Float64FromFloat64(0.029734619131772888), }, 73: { Finvc: float64(1.026052043621297), Flogc: -Float64FromFloat64(0.025718470239212365), }, 74: { Finvc: float64(1.0219561082336197), Flogc: -Float64FromFloat64(0.021718543925430822), }, 75: { Finvc: float64(1.0178926505784922), Flogc: -Float64FromFloat64(0.01773446126981071), }, 76: { Finvc: float64(1.0138614436244586), Flogc: -Float64FromFloat64(0.013766252464051831), }, 77: { Finvc: float64(1.0098620186501341), Flogc: -Float64FromFloat64(0.009813706322574944), }, 78: { Finvc: float64(1.0058938559734134), Flogc: -Float64FromFloat64(0.005876555150052809), }, 79: { Finvc: float64(1.00195696235014), Flogc: -Float64FromFloat64(0.0019550499938532084), }, 80: { Finvc: float64(0.9961089923088509), Flogc: float64(0.0038985973556009412), }, 81: { Finvc: float64(0.9884170338185201), Flogc: float64(0.011650571286395461), }, 82: { Finvc: float64(0.9808429191005297), Flogc: float64(0.019342955478919066), }, 83: { Finvc: float64(0.9733840169987446), Flogc: float64(0.0269766014846482), }, 84: { Finvc: float64(0.9660377568876556), Flogc: float64(0.034552359728422744), }, 85: { Finvc: float64(0.9588014945307369), Flogc: float64(0.04207121767183253), }, 86: { Finvc: float64(0.9516728569073111), Flogc: float64(0.049533940950141186), }, 87: { Finvc: float64(0.9446494635965822), Flogc: float64(0.056941358295944156), }, 88: { Finvc: float64(0.9377288993026223), Flogc: float64(0.06429439168346107), }, 89: { Finvc: float64(0.9309091073790681), Flogc: float64(0.0715936354946507), }, 90: { Finvc: float64(0.924187681612722), Flogc: float64(0.07884010933776153), }, 91: { Finvc: float64(0.9175626765599192), Flogc: float64(0.08603438905970506), }, 92: { Finvc: float64(0.9110320403624034), Flogc: float64(0.09317721180013905), }, 93: { Finvc: float64(0.9045935839762024), Flogc: float64(0.10026951462748457), }, 94: { Finvc: float64(0.8982456375922825), Flogc: float64(0.10731170956330516), }, 95: { Finvc: float64(0.8919860966782501), Flogc: float64(0.11430473320717738), }, 96: { Finvc: float64(0.8858131121185129), Flogc: float64(0.12124928503033061), }, 97: { Finvc: float64(0.879725075760676), Flogc: float64(0.12814583422959913), }, 98: { Finvc: float64(0.8737201372634685), Flogc: float64(0.1349951636851756), }, 99: { Finvc: float64(0.8677966405782273), Flogc: float64(0.1417978768189414), }, 100: { Finvc: float64(0.8619528050060739), Flogc: float64(0.14855476039031146), }, 101: { Finvc: float64(0.8561872354420692), Flogc: float64(0.1552661937658968), }, 102: { Finvc: float64(0.8504983927816893), Flogc: float64(0.16193275688146969), }, 103: { Finvc: float64(0.8448844572790304), Flogc: float64(0.16855539792220497), }, 104: { Finvc: float64(0.8393442741575965), Flogc: float64(0.1751343179947753), }, 105: { Finvc: float64(0.8338762249349438), Flogc: float64(0.1816702989864325), }, 106: { Finvc: float64(0.8284789320557778), Flogc: float64(0.18816387146023317), }, 107: { Finvc: float64(0.8231510800065832), Flogc: float64(0.1946155228479256), }, 108: { Finvc: float64(0.8178913903778707), Flogc: float64(0.20102572579389744), }, 109: { Finvc: float64(0.8126984007245374), Flogc: float64(0.2073952090795501), }, 110: { Finvc: float64(0.8075710029460227), Flogc: float64(0.21372429840596396), }, 111: { Finvc: float64(0.8025078881160415), Flogc: float64(0.2200135945981856), }, 112: { Finvc: float64(0.7975077379364331), Flogc: float64(0.22626374162859975), }, 113: { Finvc: float64(0.792569604966373), Flogc: float64(0.23247494747693054), }, 114: { Finvc: float64(0.7876923641254114), Flogc: float64(0.23864766620658884), }, 115: { Finvc: float64(0.7828746724940998), Flogc: float64(0.24478265647405806), }, 116: { Finvc: float64(0.7781155388790811), Flogc: float64(0.25088025827324145), }, 117: { Finvc: float64(0.7734139557869777), Flogc: float64(0.2569408552510595), }, 118: { Finvc: float64(0.7687687179914933), Flogc: float64(0.26296511155101143), }, 119: { Finvc: float64(0.7641790698041854), Flogc: float64(0.2689531327189343), }, 120: { Finvc: float64(0.7596438763692399), Flogc: float64(0.27490553924610595), }, 121: { Finvc: float64(0.7551621951078668), Flogc: float64(0.2808227248478943), }, 122: { Finvc: float64(0.7507331780216866), Flogc: float64(0.286704979267256), }, 123: { Finvc: float64(0.7463557196361751), Flogc: float64(0.29255295645509705), }, 124: { Finvc: float64(0.7420289364869653), Flogc: float64(0.2983670386142876), }, 125: { Finvc: float64(0.7377521537065876), Flogc: float64(0.30414734587282055), }, 126: { Finvc: float64(0.7335242966002608), Flogc: float64(0.30989455774829366), }, 127: { Finvc: float64(0.729344777457841), Flogc: float64(0.31560871301871884), }, }, Ftab2: [128]struct { Fchi float64 Fclo float64 }{ 0: { Fchi: float64(0.6894531274426304), Fclo: float64(2.60290652810535e-17), }, 1: { Fchi: float64(0.6933593811533166), Fclo: float64(5.1607448519931415e-17), }, 2: { Fchi: float64(0.6972656502972674), Fclo: float64(5.290672414887869e-17), }, 3: { Fchi: float64(0.7011718886092148), Fclo: float64(7.801030634806013e-18), }, 4: { Fchi: float64(0.7050781228976939), Fclo: -Float64FromFloat64(2.471355337688684e-17), }, 5: { Fchi: float64(0.7089843887644558), Fclo: -Float64FromFloat64(4.6413389636862956e-17), }, 6: { Fchi: float64(0.7128906815542553), Fclo: float64(3.3387408065940366e-17), }, 7: { Fchi: float64(0.7167968359278303), Fclo: -Float64FromFloat64(2.6454587338050098e-17), }, 8: { Fchi: float64(0.7207031520563163), Fclo: float64(2.4284096334522285e-17), }, 9: { Fchi: float64(0.7246093683054673), Fclo: float64(4.85782435031982e-17), }, 10: { Fchi: float64(0.7285155644718035), Fclo: -Float64FromFloat64(1.3014776598894487e-17), }, 11: { Fchi: float64(0.7324219036935506), Fclo: -Float64FromFloat64(1.0402317671225898e-17), }, 12: { Fchi: float64(0.73632811474659), Fclo: float64(3.078291427467431e-17), }, 13: { Fchi: float64(0.7402343715130797), Fclo: -Float64FromFloat64(1.4304998976623033e-17), }, 14: { Fchi: float64(0.7441405900738403), Fclo: -Float64FromFloat64(2.8625955785571303e-17), }, 15: { Fchi: float64(0.7480468324364), Fclo: float64(5.1609093535635645e-17), }, 16: { Fchi: float64(0.7519531335902885), Fclo: float64(4.423423949536319e-17), }, 17: { Fchi: float64(0.7558594189116706), Fclo: -Float64FromFloat64(4.683016762099508e-17), }, 18: { Fchi: float64(0.7597656365502305), Fclo: float64(4.466742007514772e-17), }, 19: { Fchi: float64(0.7636719350887737), Fclo: -Float64FromFloat64(4.8134498775190266e-17), }, 20: { Fchi: float64(0.767578087670501), Fclo: -Float64FromFloat64(4.3371015350542286e-17), }, 21: { Fchi: float64(0.7714844396979536), Fclo: -Float64FromFloat64(2.515644472251707e-17), }, 22: { Fchi: float64(0.7753905747966752), Fclo: -Float64FromFloat64(4.163636184961329e-17), }, 23: { Fchi: float64(0.7792968686084766), Fclo: float64(3.3837161384165165e-17), }, 24: { Fchi: float64(0.783203182701066), Fclo: float64(4.379206565056758e-17), }, 25: { Fchi: float64(0.7871094109030913), Fclo: float64(2.7322930976146396e-17), }, 26: { Fchi: float64(0.7910155783031153), Fclo: -Float64FromFloat64(5.463661225364046e-17), }, 27: { Fchi: float64(0.7949218121071572), Fclo: -Float64FromFloat64(1.4320502634189868e-17), }, 28: { Fchi: float64(0.7988281031542229), Fclo: -Float64FromFloat64(4.0766731402809024e-17), }, 29: { Fchi: float64(0.8027343109146796), Fclo: -Float64FromFloat64(4.0338264352540086e-17), }, 30: { Fchi: float64(0.8066405901480322), Fclo: float64(1.7241428071650815e-18), }, 31: { Fchi: float64(0.8105469363625933), Fclo: -Float64FromFloat64(4.5534218930924523e-17), }, 32: { Fchi: float64(0.8144531571720115), Fclo: float64(1.821216920589142e-17), }, 33: { Fchi: float64(0.8183593894061396), Fclo: float64(4.9864288025894273e-17), }, 34: { Fchi: float64(0.8222656559018297), Fclo: float64(4.335990416726689e-17), }, 35: { Fchi: float64(0.8261719308006343), Fclo: -Float64FromFloat64(5.422001471661127e-17), }, 36: { Fchi: float64(0.830078177803083), Fclo: -Float64FromFloat64(5.333603728929035e-17), }, 37: { Fchi: float64(0.8339844538076674), Fclo: -Float64FromFloat64(1.1270648442682386e-17), }, 38: { Fchi: float64(0.8378905498984414), Fclo: -Float64FromFloat64(3.165126734800398e-17), }, 39: { Fchi: float64(0.8417968420618669), Fclo: float64(1.1286283062565865e-17), }, 40: { Fchi: float64(0.8457030568173808), Fclo: float64(5.643595964448442e-18), }, 41: { Fchi: float64(0.8496093725173733), Fclo: -Float64FromFloat64(2.1687834632368187e-17), }, 42: { Fchi: float64(0.8535155534462677), Fclo: -Float64FromFloat64(2.2548234217914977e-17), }, 43: { Fchi: float64(0.8574219432077146), Fclo: float64(4.683260556353139e-17), }, 44: { Fchi: float64(0.8613281129443706), Fclo: float64(2.5148296884122795e-17), }, 45: { Fchi: float64(0.8652342893532053), Fclo: -Float64FromFloat64(8.672187570949467e-18), }, 46: { Fchi: float64(0.8691405397938828), Fclo: -Float64FromFloat64(1.2576268285559751e-17), }, 47: { Fchi: float64(0.8730468608194392), Fclo: -Float64FromFloat64(2.9930851265148e-17), }, 48: { Fchi: float64(0.8769530685783117), Fclo: float64(4.814801507681644e-17), }, 49: { Fchi: float64(0.8808593488818101), Fclo: -Float64FromFloat64(9.10549533611022e-18), }, 50: { Fchi: float64(0.8847655593409667), Fclo: -Float64FromFloat64(3.512414651620766e-17), }, 51: { Fchi: float64(0.888671840226208), Fclo: float64(3.555261815374023e-17), }, 52: { Fchi: float64(0.8925780870017613), Fclo: float64(1.692380503540994e-17), }, 53: { Fchi: float64(0.8964844367374554), Fclo: -Float64FromFloat64(1.0837881791715702e-17), }, 54: { Fchi: float64(0.9003905608862683), Fclo: float64(5.2900545724138363e-17), }, 55: { Fchi: float64(0.9042968358682077), Fclo: float64(5.3330721088784517e-17), }, 56: { Fchi: float64(0.9082031671057441), Fclo: float64(1.8640040753232978e-17), }, 57: { Fchi: float64(0.9121093993305497), Fclo: float64(4.467972832054075e-17), }, 58: { Fchi: float64(0.9160155849026457), Fclo: -Float64FromFloat64(5.216213419585033e-18), }, 59: { Fchi: float64(0.9199219622862499), Fclo: -Float64FromFloat64(2.7324731032846873e-17), }, 60: { Fchi: float64(0.9238281880717143), Fclo: -Float64FromFloat64(1.7769263393434193e-17), }, 61: { Fchi: float64(0.9277343012727929), Fclo: float64(4.943363080817441e-17), }, 62: { Fchi: float64(0.9316407021562788), Fclo: float64(4.164434042024055e-17), }, 63: { Fchi: float64(0.935546825207466), Fclo: float64(1.3011820859795741e-17), }, 64: { Fchi: float64(0.9394530312562943), Fclo: -Float64FromFloat64(2.7332907838481398e-17), }, 65: { Fchi: float64(0.9433593066844669), Fclo: float64(2.342133170803292e-17), }, 66: { Fchi: float64(0.9472655994038329), Fclo: float64(1.6478717480487438e-17), }, 67: { Fchi: float64(0.9511718313032721), Fclo: -Float64FromFloat64(5.19608290131499e-18), }, 68: { Fchi: float64(0.9550781578218178), Fclo: -Float64FromFloat64(3.5565573220579e-17), }, 69: { Fchi: float64(0.9589843147339043), Fclo: float64(2.0816772146458738e-17), }, 70: { Fchi: float64(0.9628906735633685), Fclo: -Float64FromFloat64(3.471962826146841e-18), }, 71: { Fchi: float64(0.9667968893972092), Fclo: -Float64FromFloat64(3.68646834472642e-17), }, 72: { Fchi: float64(0.9707031054025779), Fclo: -Float64FromFloat64(3.4674108076868834e-18), }, 73: { Fchi: float64(0.9746094325494931), Fclo: float64(4.598152624774392e-17), }, 74: { Fchi: float64(0.9785156054582722), Fclo: float64(4.553145752392568e-17), }, 75: { Fchi: float64(0.9824218687812282), Fclo: -Float64FromFloat64(7.811259169418978e-18), }, 76: { Fchi: float64(0.9863280690752917), Fclo: float64(2.0375615178047467e-17), }, 77: { Fchi: float64(0.9902342909546034), Fclo: -Float64FromFloat64(1.344597043422914e-17), }, 78: { Fchi: float64(0.9941406780264008), Fclo: float64(1.51853723695054e-17), }, 79: { Fchi: float64(0.9980468598715558), Fclo: -Float64FromFloat64(1.301926039598001e-17), }, 80: { Fchi: float64(1.0039062067717412), Fclo: -Float64FromFloat64(4.596120641744973e-17), }, 81: { Fchi: float64(1.0117187035281372), Fclo: -Float64FromFloat64(8.152405002665349e-17), }, 82: { Fchi: float64(1.0195312424919558), Fclo: float64(8.239927014757811e-17), }, 83: { Fchi: float64(1.0273437641634193), Fclo: float64(3.122851005327045e-17), }, 84: { Fchi: float64(1.0351562274561221), Fclo: -Float64FromFloat64(1.3010212611128995e-17), }, 85: { Fchi: float64(1.0429687539123276), Fclo: -Float64FromFloat64(5.984116688633458e-17), }, 86: { Fchi: float64(1.0507812561238108), Fclo: float64(2.860923854822335e-17), }, 87: { Fchi: float64(1.0585937308350133), Fclo: -Float64FromFloat64(1.9962944508904598e-17), }, 88: { Fchi: float64(1.0664062936992642), Fclo: float64(5.291469130309099e-17), }, 89: { Fchi: float64(1.0742187309945372), Fclo: float64(1.0321575006732523e-16), }, 90: { Fchi: float64(1.082031301537134), Fclo: float64(9.021194373419119e-17), }, 91: { Fchi: float64(1.0898438063644336), Fclo: float64(5.202798992357953e-17), }, 92: { Fchi: float64(1.0976562356711468), Fclo: float64(5.898318482500785e-17), }, 93: { Fchi: float64(1.1054688179463226), Fclo: float64(8.846377690653252e-17), }, 94: { Fchi: float64(1.113281220803328), Fclo: -Float64FromFloat64(9.529455965212574e-18), }, 95: { Fchi: float64(1.1210937073167315), Fclo: float64(6.765080709377787e-17), }, 96: { Fchi: float64(1.1289062967338532), Fclo: float64(1.0929327370933015e-16), }, 97: { Fchi: float64(1.1367187631150848), Fclo: float64(6.938570551230516e-17), }, 98: { Fchi: float64(1.1445312490244826), Fclo: float64(1.908841015045148e-17), }, 99: { Fchi: float64(1.1523437096203593), Fclo: float64(2.7744504138979832e-17), }, 100: { Fchi: float64(1.1601563266482477), Fclo: -Float64FromFloat64(1.5621964097491672e-17), }, 101: { Fchi: float64(1.1679688257483505), Fclo: -Float64FromFloat64(6.4191661495975e-17), }, 102: { Fchi: float64(1.1757811754697645), Fclo: -Float64FromFloat64(4.336465165059268e-17), }, 103: { Fchi: float64(1.183593793665613), Fclo: -Float64FromFloat64(3.8159292551356396e-17), }, 104: { Fchi: float64(1.1914062331617676), Fclo: -Float64FromFloat64(2.94933042768015e-17), }, 105: { Fchi: float64(1.1992187450577771), Fclo: -Float64FromFloat64(6.244142916351348e-17), }, 106: { Fchi: float64(1.2070312971249755), Fclo: float64(7.458644622627413e-17), }, 107: { Fchi: float64(1.2148438169965134), Fclo: float64(2.7760519266147807e-17), }, 108: { Fchi: float64(1.222656225220801), Fclo: -Float64FromFloat64(7.025106921079665e-17), }, 109: { Fchi: float64(1.2304687681290862), Fclo: float64(3.7292622364618835e-17), }, 110: { Fchi: float64(1.2382812116234925), Fclo: float64(2.2558949940652082e-17), }, 111: { Fchi: float64(1.2460936706149877), Fclo: float64(8.499368944400665e-17), }, 112: { Fchi: float64(1.2539063289686938), Fclo: float64(1.039515474644361e-17), }, 113: { Fchi: float64(1.2617188367227732), Fclo: float64(3.297262223275499e-17), }, 114: { Fchi: float64(1.2695311590462317), Fclo: float64(4.509883253594155e-17), }, 115: { Fchi: float64(1.277343660657941), Fclo: -Float64FromFloat64(7.546987371769545e-17), }, 116: { Fchi: float64(1.2851561882963496), Fclo: float64(9.454295598818184e-17), }, 117: { Fchi: float64(1.2929686521915196), Fclo: -Float64FromFloat64(7.28545609119749e-17), }, 118: { Fchi: float64(1.3007813359167737), Fclo: -Float64FromFloat64(8.934357651462802e-17), }, 119: { Fchi: float64(1.3085938093753886), Fclo: float64(8.15257059458102e-17), }, 120: { Fchi: float64(1.3164063202609564), Fclo: float64(6.946341460765881e-18), }, 121: { Fchi: float64(1.3242188320313901), Fclo: -Float64FromFloat64(7.892731380721676e-17), }, 122: { Fchi: float64(1.3320311786874468), Fclo: -Float64FromFloat64(4.3384657500713545e-17), }, 123: { Fchi: float64(1.3398436880573092), Fclo: float64(9.627577954598792e-17), }, 124: { Fchi: float64(1.3476563390295309), Fclo: float64(4.2492400590204517e-17), }, 125: { Fchi: float64(1.3554687641043626), Fclo: -Float64FromFloat64(1.0843419551446047e-16), }, 126: { Fchi: float64(1.3632813590971713), Fclo: -Float64FromFloat64(8.50172782472025e-17), }, 127: { Fchi: float64(1.3710936595522603), Fclo: -Float64FromFloat64(7.110627206162922e-17), }, }, }
var X__logf_data = Tlogf_data{ Ftab: [16]struct { Finvc float64 Flogc float64 }{ 0: { Finvc: float64(1.398907162146528), Flogc: -Float64FromFloat64(0.33569133332882284), }, 1: { Finvc: float64(1.3403141896637998), Flogc: -Float64FromFloat64(0.2929040563774074), }, 2: { Finvc: float64(1.286432210124115), Flogc: -Float64FromFloat64(0.2518726580937369), }, 3: { Finvc: float64(1.2367150214269895), Flogc: -Float64FromFloat64(0.21245868807117255), }, 4: { Finvc: float64(1.1906977166711752), Flogc: -Float64FromFloat64(0.17453945183745634), }, 5: { Finvc: float64(1.1479821020556429), Flogc: -Float64FromFloat64(0.1380057072319758), }, 6: { Finvc: float64(1.1082251448272158), Flogc: -Float64FromFloat64(0.10275976698545139), }, 7: { Finvc: float64(1.0711297413057381), Flogc: -Float64FromFloat64(0.06871392447020525), }, 8: { Finvc: float64(1.036437278977283), Flogc: -Float64FromFloat64(0.0357891387398228), }, 9: { Finvc: float64(1), }, 10: { Finvc: float64(0.9492859795739057), Flogc: float64(0.05204517742929496), }, 11: { Finvc: float64(0.8951049428609004), Flogc: float64(0.11081431298787942), }, 12: { Finvc: float64(0.8476821620351103), Flogc: float64(0.1652495223695143), }, 13: { Finvc: float64(0.8050314851692001), Flogc: float64(0.21687389031699977), }, 14: { Finvc: float64(0.7664671008843108), Flogc: float64(0.2659635028121397), }, 15: { Finvc: float64(0.731428603316328), Flogc: float64(0.3127556664073557), }, }, Fln2: float64(0.6931471805599453), Fpoly: [3]float64{ 0: -Float64FromFloat64(0.25089342214237154), 1: float64(0.333456765744066), 2: -Float64FromFloat64(0.4999997485802103), }, }
var X__optpos int32
var X__pow_log_data = Tpow_log_data{ Fln2hi: float64(0.6931471805598903), Fln2lo: float64(5.497923018708371e-14), Fpoly: [7]float64{ 0: -Float64FromFloat64(0.5), 1: float64(Float64FromFloat64(0.3333333333333339) * float64(-Int32FromInt32(2))), 2: float64(-Float64FromFloat64(0.25000000000000033) * float64(-Int32FromInt32(2))), 3: float64(Float64FromFloat64(0.1999999998830994) * Float64FromInt32(4)), 4: float64(-Float64FromFloat64(0.16666666658719348) * Float64FromInt32(4)), 5: float64(Float64FromFloat64(0.14286370355743763) * float64(-Int32FromInt32(8))), 6: float64(-Float64FromFloat64(0.12500519079594427) * float64(-Int32FromInt32(8))), }, Ftab: [128]struct { Finvc float64 Fpad float64 Flogc float64 Flogctail float64 }{ 0: { Finvc: float64(1.4140625), Flogc: -Float64FromFloat64(0.3464667673462145), Flogctail: float64(5.929407345889625e-15), }, 1: { Finvc: float64(1.40625), Flogc: -Float64FromFloat64(0.34092658697056777), Flogctail: -Float64FromFloat64(2.544157440035963e-14), }, 2: { Finvc: float64(1.3984375), Flogc: -Float64FromFloat64(0.3353555419211034), Flogctail: -Float64FromFloat64(3.443525940775045e-14), }, 3: { Finvc: float64(1.390625), Flogc: -Float64FromFloat64(0.3297532863724655), Flogctail: -Float64FromFloat64(2.500123826022799e-15), }, 4: { Finvc: float64(1.3828125), Flogc: -Float64FromFloat64(0.32411946865420305), Flogctail: -Float64FromFloat64(8.929337133850617e-15), }, 5: { Finvc: float64(1.375), Flogc: -Float64FromFloat64(0.31845373111855224), Flogctail: float64(1.7625431312172662e-14), }, 6: { Finvc: float64(1.3671875), Flogc: -Float64FromFloat64(0.31275571000389846), Flogctail: float64(1.5688303180062087e-15), }, 7: { Finvc: float64(1.359375), Flogc: -Float64FromFloat64(0.3070250352949415), Flogctail: float64(2.9655274673691784e-14), }, 8: { Finvc: float64(1.3515625), Flogc: -Float64FromFloat64(0.3012613305781997), Flogctail: float64(3.7923164802093147e-14), }, 9: { Finvc: float64(1.34375), Flogc: -Float64FromFloat64(0.2954642128938758), Flogctail: float64(3.993416384387844e-14), }, 10: { Finvc: float64(1.3359375), Flogc: -Float64FromFloat64(0.28963329258306203), Flogctail: float64(1.9352855826489123e-14), }, 11: { Finvc: float64(1.3359375), Flogc: -Float64FromFloat64(0.28963329258306203), Flogctail: float64(1.9352855826489123e-14), }, 12: { Finvc: float64(1.328125), Flogc: -Float64FromFloat64(0.28376817313062475), Flogctail: -Float64FromFloat64(1.9852665484979036e-14), }, 13: { Finvc: float64(1.3203125), Flogc: -Float64FromFloat64(0.27786845100342816), Flogctail: -Float64FromFloat64(2.814323765595281e-14), }, 14: { Finvc: float64(1.3125), Flogc: -Float64FromFloat64(0.2719337154836694), Flogctail: float64(2.7643769993528702e-14), }, 15: { Finvc: float64(1.3046875), Flogc: -Float64FromFloat64(0.2659635484970977), Flogctail: -Float64FromFloat64(4.025092402293806e-14), }, 16: { Finvc: float64(1.296875), Flogc: -Float64FromFloat64(0.25995752443691345), Flogctail: -Float64FromFloat64(1.2621729398885316e-14), }, 17: { Finvc: float64(1.2890625), Flogc: -Float64FromFloat64(0.25391520998095984), Flogctail: -Float64FromFloat64(3.600176732637335e-15), }, 18: { Finvc: float64(1.2890625), Flogc: -Float64FromFloat64(0.25391520998095984), Flogctail: -Float64FromFloat64(3.600176732637335e-15), }, 19: { Finvc: float64(1.28125), Flogc: -Float64FromFloat64(0.2478361639045943), Flogctail: float64(1.3029797173308663e-14), }, 20: { Finvc: float64(1.2734375), Flogc: -Float64FromFloat64(0.2417199368871934), Flogctail: float64(4.8230289429940886e-14), }, 21: { Finvc: float64(1.265625), Flogc: -Float64FromFloat64(0.23556607131274632), Flogctail: -Float64FromFloat64(2.0592242769647135e-14), }, 22: { Finvc: float64(1.2578125), Flogc: -Float64FromFloat64(0.22937410106487732), Flogctail: float64(3.149265065191484e-14), }, 23: { Finvc: float64(1.25), Flogc: -Float64FromFloat64(0.22314355131425145), Flogctail: float64(4.169796584527195e-14), }, 24: { Finvc: float64(1.25), Flogc: -Float64FromFloat64(0.22314355131425145), Flogctail: float64(4.169796584527195e-14), }, 25: { Finvc: float64(1.2421875), Flogc: -Float64FromFloat64(0.21687393830063684), Flogctail: float64(2.2477465222466186e-14), }, 26: { Finvc: float64(1.234375), Flogc: -Float64FromFloat64(0.21056476910735), Flogctail: float64(3.6507188831790577e-16), }, 27: { Finvc: float64(1.2265625), Flogc: -Float64FromFloat64(0.2042155414286526), Flogctail: -Float64FromFloat64(3.827767260205414e-14), }, 28: { Finvc: float64(1.2265625), Flogc: -Float64FromFloat64(0.2042155414286526), Flogctail: -Float64FromFloat64(3.827767260205414e-14), }, 29: { Finvc: float64(1.21875), Flogc: -Float64FromFloat64(0.19782574332987224), Flogctail: -Float64FromFloat64(4.7641388950792196e-14), }, 30: { Finvc: float64(1.2109375), Flogc: -Float64FromFloat64(0.19139485299967873), Flogctail: float64(4.9278276214647115e-14), }, 31: { Finvc: float64(1.203125), Flogc: -Float64FromFloat64(0.18492233849406148), Flogctail: float64(4.9485167661250996e-14), }, 32: { Finvc: float64(1.203125), Flogc: -Float64FromFloat64(0.18492233849406148), Flogctail: float64(4.9485167661250996e-14), }, 33: { Finvc: float64(1.1953125), Flogc: -Float64FromFloat64(0.1784076574728033), Flogctail: -Float64FromFloat64(1.5003333854266542e-14), }, 34: { Finvc: float64(1.1875), Flogc: -Float64FromFloat64(0.17185025692663203), Flogctail: -Float64FromFloat64(2.7194441649495324e-14), }, 35: { Finvc: float64(1.1875), Flogc: -Float64FromFloat64(0.17185025692663203), Flogctail: -Float64FromFloat64(2.7194441649495324e-14), }, 36: { Finvc: float64(1.1796875), Flogc: -Float64FromFloat64(0.1652495728952772), Flogctail: -Float64FromFloat64(2.99659267292569e-14), }, 37: { Finvc: float64(1.171875), Flogc: -Float64FromFloat64(0.15860503017665906), Flogctail: float64(2.0472357800461955e-14), }, 38: { Finvc: float64(1.171875), Flogc: -Float64FromFloat64(0.15860503017665906), Flogctail: float64(2.0472357800461955e-14), }, 39: { Finvc: float64(1.1640625), Flogc: -Float64FromFloat64(0.15191604202584585), Flogctail: float64(3.879296723063646e-15), }, 40: { Finvc: float64(1.15625), Flogc: -Float64FromFloat64(0.1451820098444614), Flogctail: -Float64FromFloat64(3.6506824353335045e-14), }, 41: { Finvc: float64(1.1484375), Flogc: -Float64FromFloat64(0.13840232285906495), Flogctail: -Float64FromFloat64(5.4183331379008994e-14), }, 42: { Finvc: float64(1.1484375), Flogc: -Float64FromFloat64(0.13840232285906495), Flogctail: -Float64FromFloat64(5.4183331379008994e-14), }, 43: { Finvc: float64(1.140625), Flogc: -Float64FromFloat64(0.131576357788731), Flogctail: float64(1.1729485484531301e-14), }, 44: { Finvc: float64(1.140625), Flogc: -Float64FromFloat64(0.131576357788731), Flogctail: float64(1.1729485484531301e-14), }, 45: { Finvc: float64(1.1328125), Flogc: -Float64FromFloat64(0.12470347850091912), Flogctail: -Float64FromFloat64(3.811763084710266e-14), }, 46: { Finvc: float64(1.125), Flogc: -Float64FromFloat64(0.11778303565643), Flogctail: float64(4.654729747598445e-14), }, 47: { Finvc: float64(1.125), Flogc: -Float64FromFloat64(0.11778303565643), Flogctail: float64(4.654729747598445e-14), }, 48: { Finvc: float64(1.1171875), Flogc: -Float64FromFloat64(0.11081436634026431), Flogctail: -Float64FromFloat64(2.5799991283069902e-14), }, 49: { Finvc: float64(1.109375), Flogc: -Float64FromFloat64(0.10379679368168127), Flogctail: float64(3.7700471749674615e-14), }, 50: { Finvc: float64(1.109375), Flogc: -Float64FromFloat64(0.10379679368168127), Flogctail: float64(3.7700471749674615e-14), }, 51: { Finvc: float64(1.1015625), Flogc: -Float64FromFloat64(0.09672962645856842), Flogctail: float64(1.7306161136093256e-14), }, 52: { Finvc: float64(1.1015625), Flogc: -Float64FromFloat64(0.09672962645856842), Flogctail: float64(1.7306161136093256e-14), }, 53: { Finvc: float64(1.09375), Flogc: -Float64FromFloat64(0.089612158689647), Flogctail: -Float64FromFloat64(4.012913552726574e-14), }, 54: { Finvc: float64(1.0859375), Flogc: -Float64FromFloat64(0.08244366921110213), Flogctail: float64(2.7541708360737882e-14), }, 55: { Finvc: float64(1.0859375), Flogc: -Float64FromFloat64(0.08244366921110213), Flogctail: float64(2.7541708360737882e-14), }, 56: { Finvc: float64(1.078125), Flogc: -Float64FromFloat64(0.07522342123763792), Flogctail: float64(5.0396178134370583e-14), }, 57: { Finvc: float64(1.078125), Flogc: -Float64FromFloat64(0.07522342123763792), Flogctail: float64(5.0396178134370583e-14), }, 58: { Finvc: float64(1.0703125), Flogc: -Float64FromFloat64(0.06795066190852594), Flogctail: float64(1.8195060030168815e-14), }, 59: { Finvc: float64(1.0625), Flogc: -Float64FromFloat64(0.06062462181648698), Flogctail: float64(5.213620639136504e-14), }, 60: { Finvc: float64(1.0625), Flogc: -Float64FromFloat64(0.06062462181648698), Flogctail: float64(5.213620639136504e-14), }, 61: { Finvc: float64(1.0546875), Flogc: -Float64FromFloat64(0.053244514518837605), Flogctail: float64(2.532168943117445e-14), }, 62: { Finvc: float64(1.0546875), Flogc: -Float64FromFloat64(0.053244514518837605), Flogctail: float64(2.532168943117445e-14), }, 63: { Finvc: float64(1.046875), Flogc: -Float64FromFloat64(0.045809536031242715), Flogctail: -Float64FromFloat64(5.148849572685811e-14), }, 64: { Finvc: float64(1.046875), Flogc: -Float64FromFloat64(0.045809536031242715), Flogctail: -Float64FromFloat64(5.148849572685811e-14), }, 65: { Finvc: float64(1.0390625), Flogc: -Float64FromFloat64(0.038318864302141264), Flogctail: float64(4.6652946995830086e-15), }, 66: { Finvc: float64(1.0390625), Flogc: -Float64FromFloat64(0.038318864302141264), Flogctail: float64(4.6652946995830086e-15), }, 67: { Finvc: float64(1.03125), Flogc: -Float64FromFloat64(0.03077165866670839), Flogctail: -Float64FromFloat64(4.529814257790929e-14), }, 68: { Finvc: float64(1.03125), Flogc: -Float64FromFloat64(0.03077165866670839), Flogctail: -Float64FromFloat64(4.529814257790929e-14), }, 69: { Finvc: float64(1.0234375), Flogc: -Float64FromFloat64(0.023167059281490765), Flogctail: -Float64FromFloat64(4.361324067851568e-14), }, 70: { Finvc: float64(1.015625), Flogc: -Float64FromFloat64(0.015504186535963527), Flogctail: -Float64FromFloat64(1.7274567499706107e-15), }, 71: { Finvc: float64(1.015625), Flogc: -Float64FromFloat64(0.015504186535963527), Flogctail: -Float64FromFloat64(1.7274567499706107e-15), }, 72: { Finvc: float64(1.0078125), Flogc: -Float64FromFloat64(0.0077821404420319595), Flogctail: -Float64FromFloat64(2.298941004620351e-14), }, 73: { Finvc: float64(1.0078125), Flogc: -Float64FromFloat64(0.0077821404420319595), Flogctail: -Float64FromFloat64(2.298941004620351e-14), }, 74: { Finvc: float64(1), }, 75: { Finvc: float64(1), }, 76: { Finvc: float64(0.9921875), Flogc: float64(0.007843177461040796), Flogctail: -Float64FromFloat64(1.4902732911301337e-14), }, 77: { Finvc: float64(0.984375), Flogc: float64(0.01574835696817445), Flogctail: -Float64FromFloat64(3.527980389655325e-14), }, 78: { Finvc: float64(0.9765625), Flogc: float64(0.023716526617363343), Flogctail: -Float64FromFloat64(4.730054772033249e-14), }, 79: { Finvc: float64(0.96875), Flogc: float64(0.03174869831457272), Flogctail: float64(7.580310369375161e-15), }, 80: { Finvc: float64(0.9609375), Flogc: float64(0.039845908547249564), Flogctail: -Float64FromFloat64(4.9893776716773285e-14), }, 81: { Finvc: float64(0.953125), Flogc: float64(0.048009219186383234), Flogctail: -Float64FromFloat64(2.262629393030674e-14), }, 82: { Finvc: float64(0.9453125), Flogc: float64(0.056239718322899535), Flogctail: -Float64FromFloat64(2.345674491018699e-14), }, 83: { Finvc: float64(0.94140625), Flogc: float64(0.06038051098892083), Flogctail: -Float64FromFloat64(1.3352588834854848e-14), }, 84: { Finvc: float64(0.93359375), Flogc: float64(0.06871389254808946), Flogctail: -Float64FromFloat64(3.765296820388875e-14), }, 85: { Finvc: float64(0.92578125), Flogc: float64(0.07711730334438016), Flogctail: float64(5.1128335719851986e-14), }, 86: { Finvc: float64(0.91796875), Flogc: float64(0.08559193033545398), Flogctail: -Float64FromFloat64(5.046674438470119e-14), }, 87: { Finvc: float64(0.9140625), Flogc: float64(0.08985632912185793), Flogctail: float64(3.1218748807418837e-15), }, 88: { Finvc: float64(0.90625), Flogc: float64(0.09844007281321865), Flogctail: float64(3.3871241029241416e-14), }, 89: { Finvc: float64(0.8984375), Flogc: float64(0.10709813555638448), Flogctail: -Float64FromFloat64(1.7376727386423858e-14), }, 90: { Finvc: float64(0.89453125), Flogc: float64(0.11145544092528326), Flogctail: float64(3.957125899799804e-14), }, 91: { Finvc: float64(0.88671875), Flogc: float64(0.12022742699821265), Flogctail: -Float64FromFloat64(5.2849453521890294e-14), }, 92: { Finvc: float64(0.8828125), Flogc: float64(0.12464244520731427), Flogctail: -Float64FromFloat64(3.767012502308738e-14), }, 93: { Finvc: float64(0.875), Flogc: float64(0.13353139262449076), Flogctail: float64(3.1859736349078334e-14), }, 94: { Finvc: float64(0.87109375), Flogc: float64(0.13800567301939282), Flogctail: float64(5.0900642926060466e-14), }, 95: { Finvc: float64(0.86328125), Flogc: float64(0.14701474296180095), Flogctail: float64(8.710783796122478e-15), }, 96: { Finvc: float64(0.859375), Flogc: float64(0.15154989812720032), Flogctail: float64(6.157896229122976e-16), }, 97: { Finvc: float64(0.8515625), Flogc: float64(0.16068238169043525), Flogctail: float64(3.821577743916796e-14), }, 98: { Finvc: float64(0.84765625), Flogc: float64(0.16528009093906348), Flogctail: float64(3.9440046718453496e-14), }, 99: { Finvc: float64(0.83984375), Flogc: float64(0.17453941635187675), Flogctail: float64(2.2924522154618074e-14), }, 100: { Finvc: float64(0.8359375), Flogc: float64(0.17920142945774842), Flogctail: -Float64FromFloat64(3.742530094732263e-14), }, 101: { Finvc: float64(0.83203125), Flogc: float64(0.18388527877016259), Flogctail: -Float64FromFloat64(2.5223102140407338e-14), }, 102: { Finvc: float64(0.82421875), Flogc: float64(0.1933193110035063), Flogctail: -Float64FromFloat64(1.0320443688698849e-14), }, 103: { Finvc: float64(0.8203125), Flogc: float64(0.19806991376208316), Flogctail: float64(1.0634128304268335e-14), }, 104: { Finvc: float64(0.8125), Flogc: float64(0.20763936477828793), Flogctail: -Float64FromFloat64(4.3425422595242564e-14), }, 105: { Finvc: float64(0.80859375), Flogc: float64(0.21245865121420593), Flogctail: -Float64FromFloat64(1.2527395755711364e-14), }, 106: { Finvc: float64(0.8046875), Flogc: float64(0.21730127569003344), Flogctail: -Float64FromFloat64(5.204008743405884e-14), }, 107: { Finvc: float64(0.80078125), Flogc: float64(0.22216746534115828), Flogctail: -Float64FromFloat64(3.979844515951702e-15), }, 108: { Finvc: float64(0.79296875), Flogc: float64(0.2319714654378231), Flogctail: -Float64FromFloat64(4.7955860343296286e-14), }, 109: { Finvc: float64(0.7890625), Flogc: float64(0.2369097470783572), Flogctail: float64(5.015686013791602e-16), }, 110: { Finvc: float64(0.78515625), Flogc: float64(0.24187253642048745), Flogctail: -Float64FromFloat64(7.252318953240293e-16), }, 111: { Finvc: float64(0.78125), Flogc: float64(0.2468600779315011), Flogctail: float64(2.4688324156011588e-14), }, 112: { Finvc: float64(0.7734375), Flogc: float64(0.2569104137850218), Flogctail: float64(5.465121253624792e-15), }, 113: { Finvc: float64(0.76953125), Flogc: float64(0.26197371574153294), Flogctail: float64(4.102651071698446e-14), }, 114: { Finvc: float64(0.765625), Flogc: float64(0.2670627852490952), Flogctail: -Float64FromFloat64(4.996736502345936e-14), }, 115: { Finvc: float64(0.76171875), Flogc: float64(0.27217788591576664), Flogctail: float64(4.903580708156347e-14), }, 116: { Finvc: float64(0.7578125), Flogc: float64(0.27731928541618345), Flogctail: float64(5.089628039500759e-14), }, 117: { Finvc: float64(0.75390625), Flogc: float64(0.28248725557466514), Flogctail: float64(1.1782016386565151e-14), }, 118: { Finvc: float64(0.74609375), Flogc: float64(0.29290401643288533), Flogctail: float64(4.727452940514406e-14), }, 119: { Finvc: float64(0.7421875), Flogc: float64(0.29815337231912054), Flogctail: -Float64FromFloat64(4.4204083338755686e-14), }, 120: { Finvc: float64(0.73828125), Flogc: float64(0.3034304294199046), Flogctail: float64(1.548345993498083e-14), }, 121: { Finvc: float64(0.734375), Flogc: float64(0.30873548164959175), Flogctail: float64(2.1522127491642888e-14), }, 122: { Finvc: float64(0.73046875), Flogc: float64(0.3140688276249648), Flogctail: float64(1.1054030169005386e-14), }, 123: { Finvc: float64(0.7265625), Flogc: float64(0.31943077076641657), Flogctail: -Float64FromFloat64(5.534326352070679e-14), }, 124: { Finvc: float64(0.72265625), Flogc: float64(0.3248216194012912), Flogctail: -Float64FromFloat64(5.351646604259541e-14), }, 125: { Finvc: float64(0.71875), Flogc: float64(0.33024168687052224), Flogctail: float64(5.4612144489920215e-14), }, 126: { Finvc: float64(0.71484375), Flogc: float64(0.3356912916381134), Flogctail: float64(2.8136969901227338e-14), }, 127: { Finvc: float64(0.7109375), Flogc: float64(0.3411707574027787), Flogctail: -Float64FromFloat64(1.156568624616423e-14), }, }, }
var X__powf_log2_data = Tpowf_log2_data{ Ftab: [16]struct { Finvc float64 Flogc float64 }{ 0: { Finvc: float64(1.398907162146528), Flogc: float64(-Float64FromFloat64(0.48430022186289673) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 1: { Finvc: float64(1.3403141896637998), Flogc: float64(-Float64FromFloat64(0.42257122959194704) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 2: { Finvc: float64(1.286432210124115), Flogc: float64(-Float64FromFloat64(0.3633754347673556) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 3: { Finvc: float64(1.2367150214269895), Flogc: float64(-Float64FromFloat64(0.30651309567405577) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 4: { Finvc: float64(1.1906977166711752), Flogc: float64(-Float64FromFloat64(0.25180720160537634) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 5: { Finvc: float64(1.1479821020556429), Flogc: float64(-Float64FromFloat64(0.19910014943794563) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 6: { Finvc: float64(1.1082251448272158), Flogc: float64(-Float64FromFloat64(0.14825100623281615) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 7: { Finvc: float64(1.0711297413057381), Flogc: float64(-Float64FromFloat64(0.09913323807318392) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 8: { Finvc: float64(1.036437278977283), Flogc: float64(-Float64FromFloat64(0.051632812977629436) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 9: { Finvc: float64(1), Flogc: float64(float64(0) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 10: { Finvc: float64(0.9492859795739057), Flogc: float64(float64(0.07508531937943004) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 11: { Finvc: float64(0.8951049428609004), Flogc: float64(float64(0.15987125980713107) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 12: { Finvc: float64(0.8476821620351103), Flogc: float64(float64(0.2384046664317681) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 13: { Finvc: float64(0.8050314851692001), Flogc: float64(float64(0.31288288605863257) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 14: { Finvc: float64(0.7664671008843108), Flogc: float64(float64(0.38370422656453185) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, 15: { Finvc: float64(0.731428603316328), Flogc: float64(float64(0.451211048935815) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, }, Fpoly: [5]float64{ 0: float64(float64(0.288457581109214) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), 1: float64(-Float64FromFloat64(0.36092606229713164) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), 2: float64(float64(0.480898481472577) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), 3: float64(-Float64FromFloat64(0.7213474675006291) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), 4: float64(float64(1.4426950408774342) * float64(Int32FromInt32(1)<<Int32FromInt32(POWF_SCALE_BITS))), }, }
var X__random_lockptr = uintptr(unsafe.Pointer(&_lock3))
var X__rsqrt_tab = [128]Tuint16_t{}/* 128 elements not displayed */
var X__seed48 = [7]uint16{ 3: uint16(0xe66d), 4: uint16(0xdeec), 5: uint16(0x5), 6: uint16(0xb), }
var X__sem_open_lockptr int32
var X__stderr_FILE = TFILE{ Fflags: Uint32FromInt32(Int32FromInt32(F_PERM) | Int32FromInt32(F_NORD)), Fbuf: uintptr(unsafe.Pointer(&_buf5)) + uintptr(UNGET), Ffd: int32(2), Flock: -int32(1), Flbf: -int32(1), }
var X__stderr_used = uintptr(unsafe.Pointer(&X__stderr_FILE))
var X__stdin_FILE = TFILE{ Fflags: Uint32FromInt32(Int32FromInt32(F_PERM) | Int32FromInt32(F_NOWR)), Fbuf: uintptr(unsafe.Pointer(&_buf6)) + uintptr(UNGET), Fbuf_size: Uint64FromInt64(1032) - Uint64FromInt32(UNGET), Flock: -int32(1), }
var X__stdin_used = uintptr(unsafe.Pointer(&X__stdin_FILE))
var X__stdio_ofl_lockptr = uintptr(unsafe.Pointer(&_ofl_lock))
var X__stdout_FILE = TFILE{ Fflags: Uint32FromInt32(Int32FromInt32(F_PERM) | Int32FromInt32(F_NORD)), Fbuf: uintptr(unsafe.Pointer(&_buf7)) + uintptr(UNGET), Fbuf_size: Uint64FromInt64(1032) - Uint64FromInt32(UNGET), Ffd: int32(1), Flock: -int32(1), Flbf: int32('\n'), }
var X__stdout_used = uintptr(unsafe.Pointer(&X__stdout_FILE))
var X__syslog_lockptr = uintptr(unsafe.Pointer(&_lock2))
var X__timezone_lockptr = uintptr(unsafe.Pointer(&_lock4))
var X__utc = [4]int8{'U', 'T', 'C'}
var X_ns_flagdata = [16]T_ns_flagdata{ 0: { Fmask: int32(0x8000), Fshift: int32(15), }, 1: { Fmask: int32(0x7800), Fshift: int32(11), }, 2: { Fmask: int32(0x0400), Fshift: int32(10), }, 3: { Fmask: int32(0x0200), Fshift: int32(9), }, 4: { Fmask: int32(0x0100), Fshift: int32(8), }, 5: { Fmask: int32(0x0080), Fshift: int32(7), }, 6: { Fmask: int32(0x0040), Fshift: int32(6), }, 7: { Fmask: int32(0x0020), Fshift: int32(5), }, 8: { Fmask: int32(0x0010), Fshift: int32(4), }, 9: { Fmask: int32(0x000f), }, 10: {}, 11: {}, 12: {}, 13: {}, 14: {}, 15: {}, }
var Xdaylight int32
var Xenviron uintptr
var Xgetdate_err int32
var Xh_errno int32
var Xin6addr_any = Tin6_addr{}
var Xin6addr_loopback = Tin6_addr{ F__in6_union: *(*struct { F__s6_addr16 [0][8]Tuint16_t F__s6_addr32 [0][4]Tuint32_t F__s6_addr [16]Tuint8_t })(unsafe.Pointer(&[16]Tuint8_t{ 15: uint8(1), })), }
var Xoptarg uintptr
var Xopterr = int32(1)
var Xoptind = int32(1)
var Xoptopt int32
var Xoptreset int32
var Xprogram_invocation_name uintptr
var Xprogram_invocation_short_name uintptr
var Xsigngam int32
var Xstderr = uintptr(unsafe.Pointer(&X__stderr_FILE))
var Xstdin = uintptr(unsafe.Pointer(&X__stdin_FILE))
var Xstdout = uintptr(unsafe.Pointer(&X__stdout_FILE))
var Xtimezone int64
var Xtzname = [2]uintptr{}
Functions ¶
func AssignAddComplex64 ¶
func AssignAddComplex128 ¶
func AssignAddComplex128(p *complex128, v complex128) complex128
func AssignAddFloat32 ¶
func AssignAddFloat64 ¶
func AssignAddInt8 ¶
func AssignAddInt16 ¶
func AssignAddInt32 ¶
func AssignAddInt64 ¶
func AssignAddPtrComplex64 ¶
func AssignAddPtrComplex128 ¶
func AssignAddPtrComplex128(p uintptr, v complex128) complex128
func AssignAddPtrFloat32 ¶
func AssignAddPtrFloat64 ¶
func AssignAddPtrInt8 ¶
func AssignAddPtrInt16 ¶
func AssignAddPtrInt32 ¶
func AssignAddPtrInt64 ¶
func AssignAddPtrUint8 ¶
func AssignAddPtrUint16 ¶
func AssignAddPtrUint32 ¶
func AssignAddPtrUint64 ¶
func AssignAddPtrUintptr ¶
func AssignAddUint8 ¶
func AssignAddUint16 ¶
func AssignAddUint32 ¶
func AssignAddUint64 ¶
func AssignAddUintptr ¶
func AssignAndInt8 ¶
func AssignAndInt16 ¶
func AssignAndInt32 ¶
func AssignAndInt64 ¶
func AssignAndPtrInt8 ¶
func AssignAndPtrInt16 ¶
func AssignAndPtrInt32 ¶
func AssignAndPtrInt64 ¶
func AssignAndPtrUint8 ¶
func AssignAndPtrUint16 ¶
func AssignAndPtrUint32 ¶
func AssignAndPtrUint64 ¶
func AssignAndPtrUintptr ¶
func AssignAndUint8 ¶
func AssignAndUint16 ¶
func AssignAndUint32 ¶
func AssignAndUint64 ¶
func AssignAndUintptr ¶
func AssignBitFieldPtr8Int8 ¶
func AssignBitFieldPtr8Int16 ¶
func AssignBitFieldPtr8Int32 ¶
func AssignBitFieldPtr8Int64 ¶
func AssignBitFieldPtr8Uint8 ¶
func AssignBitFieldPtr16Int8 ¶
func AssignBitFieldPtr32Int8 ¶
func AssignBitFieldPtr64Int8 ¶
func AssignComplex64 ¶
func AssignComplex128 ¶
func AssignComplex128(p *complex128, v complex128) complex128
func AssignDivComplex64 ¶
func AssignDivComplex128 ¶
func AssignDivComplex128(p *complex128, v complex128) complex128
func AssignDivFloat32 ¶
func AssignDivFloat64 ¶
func AssignDivInt8 ¶
func AssignDivInt16 ¶
func AssignDivInt32 ¶
func AssignDivInt64 ¶
func AssignDivPtrComplex64 ¶
func AssignDivPtrComplex128 ¶
func AssignDivPtrComplex128(p uintptr, v complex128) complex128
func AssignDivPtrFloat32 ¶
func AssignDivPtrFloat64 ¶
func AssignDivPtrInt8 ¶
func AssignDivPtrInt16 ¶
func AssignDivPtrInt32 ¶
func AssignDivPtrInt64 ¶
func AssignDivPtrUint8 ¶
func AssignDivPtrUint16 ¶
func AssignDivPtrUint32 ¶
func AssignDivPtrUint64 ¶
func AssignDivPtrUintptr ¶
func AssignDivUint8 ¶
func AssignDivUint16 ¶
func AssignDivUint32 ¶
func AssignDivUint64 ¶
func AssignDivUintptr ¶
func AssignFloat32 ¶
func AssignFloat64 ¶
func AssignInt8 ¶
func AssignInt16 ¶
func AssignInt32 ¶
func AssignInt64 ¶
func AssignMulComplex64 ¶
func AssignMulComplex128 ¶
func AssignMulComplex128(p *complex128, v complex128) complex128
func AssignMulFloat32 ¶
func AssignMulFloat64 ¶
func AssignMulInt8 ¶
func AssignMulInt16 ¶
func AssignMulInt32 ¶
func AssignMulInt64 ¶
func AssignMulPtrComplex64 ¶
func AssignMulPtrComplex128 ¶
func AssignMulPtrComplex128(p uintptr, v complex128) complex128
func AssignMulPtrFloat32 ¶
func AssignMulPtrFloat64 ¶
func AssignMulPtrInt8 ¶
func AssignMulPtrInt16 ¶
func AssignMulPtrInt32 ¶
func AssignMulPtrInt64 ¶
func AssignMulPtrUint8 ¶
func AssignMulPtrUint16 ¶
func AssignMulPtrUint32 ¶
func AssignMulPtrUint64 ¶
func AssignMulPtrUintptr ¶
func AssignMulUint8 ¶
func AssignMulUint16 ¶
func AssignMulUint32 ¶
func AssignMulUint64 ¶
func AssignMulUintptr ¶
func AssignOrInt8 ¶
func AssignOrInt16 ¶
func AssignOrInt32 ¶
func AssignOrInt64 ¶
func AssignOrPtrInt8 ¶
func AssignOrPtrInt16 ¶
func AssignOrPtrInt32 ¶
func AssignOrPtrInt64 ¶
func AssignOrPtrUint8 ¶
func AssignOrPtrUint16 ¶
func AssignOrPtrUint32 ¶
func AssignOrPtrUint64 ¶
func AssignOrPtrUintptr ¶
func AssignOrUint8 ¶
func AssignOrUint16 ¶
func AssignOrUint32 ¶
func AssignOrUint64 ¶
func AssignOrUintptr ¶
func AssignPtrComplex64 ¶
func AssignPtrComplex128 ¶
func AssignPtrComplex128(p uintptr, v complex128) complex128
func AssignPtrFloat32 ¶
func AssignPtrFloat64 ¶
func AssignPtrInt8 ¶
func AssignPtrInt16 ¶
func AssignPtrInt32 ¶
func AssignPtrInt64 ¶
func AssignPtrUint8 ¶
func AssignPtrUint16 ¶
func AssignPtrUint32 ¶
func AssignPtrUint64 ¶
func AssignPtrUintptr ¶
func AssignRemInt8 ¶
func AssignRemInt16 ¶
func AssignRemInt32 ¶
func AssignRemInt64 ¶
func AssignRemPtrInt8 ¶
func AssignRemPtrInt16 ¶
func AssignRemPtrInt32 ¶
func AssignRemPtrInt64 ¶
func AssignRemPtrUint8 ¶
func AssignRemPtrUint16 ¶
func AssignRemPtrUint32 ¶
func AssignRemPtrUint64 ¶
func AssignRemPtrUintptr ¶
func AssignRemUint8 ¶
func AssignRemUint16 ¶
func AssignRemUint32 ¶
func AssignRemUint64 ¶
func AssignRemUintptr ¶
func AssignShlInt8 ¶
func AssignShlInt16 ¶
func AssignShlInt32 ¶
func AssignShlInt64 ¶
func AssignShlPtrInt8 ¶
func AssignShlPtrInt16 ¶
func AssignShlPtrInt32 ¶
func AssignShlPtrInt64 ¶
func AssignShlPtrUint8 ¶
func AssignShlPtrUint16 ¶
func AssignShlPtrUint32 ¶
func AssignShlPtrUint64 ¶
func AssignShlPtrUintptr ¶
func AssignShlUint8 ¶
func AssignShlUint16 ¶
func AssignShlUint32 ¶
func AssignShlUint64 ¶
func AssignShlUintptr ¶
func AssignShrInt8 ¶
func AssignShrInt16 ¶
func AssignShrInt32 ¶
func AssignShrInt64 ¶
func AssignShrPtrInt8 ¶
func AssignShrPtrInt16 ¶
func AssignShrPtrInt32 ¶
func AssignShrPtrInt64 ¶
func AssignShrPtrUint8 ¶
func AssignShrPtrUint16 ¶
func AssignShrPtrUint32 ¶
func AssignShrPtrUint64 ¶
func AssignShrPtrUintptr ¶
func AssignShrUint8 ¶
func AssignShrUint16 ¶
func AssignShrUint32 ¶
func AssignShrUint64 ¶
func AssignShrUintptr ¶
func AssignSubComplex64 ¶
func AssignSubComplex128 ¶
func AssignSubComplex128(p *complex128, v complex128) complex128
func AssignSubFloat32 ¶
func AssignSubFloat64 ¶
func AssignSubInt8 ¶
func AssignSubInt16 ¶
func AssignSubInt32 ¶
func AssignSubInt64 ¶
func AssignSubPtrComplex64 ¶
func AssignSubPtrComplex128 ¶
func AssignSubPtrComplex128(p uintptr, v complex128) complex128
func AssignSubPtrFloat32 ¶
func AssignSubPtrFloat64 ¶
func AssignSubPtrInt8 ¶
func AssignSubPtrInt16 ¶
func AssignSubPtrInt32 ¶
func AssignSubPtrInt64 ¶
func AssignSubPtrUint8 ¶
func AssignSubPtrUint16 ¶
func AssignSubPtrUint32 ¶
func AssignSubPtrUint64 ¶
func AssignSubPtrUintptr ¶
func AssignSubUint8 ¶
func AssignSubUint16 ¶
func AssignSubUint32 ¶
func AssignSubUint64 ¶
func AssignSubUintptr ¶
func AssignUint8 ¶
func AssignUint16 ¶
func AssignUint32 ¶
func AssignUint64 ¶
func AssignUintptr ¶
func AssignXorInt8 ¶
func AssignXorInt16 ¶
func AssignXorInt32 ¶
func AssignXorInt64 ¶
func AssignXorPtrInt8 ¶
func AssignXorPtrInt16 ¶
func AssignXorPtrInt32 ¶
func AssignXorPtrInt64 ¶
func AssignXorPtrUint8 ¶
func AssignXorPtrUint16 ¶
func AssignXorPtrUint32 ¶
func AssignXorPtrUint64 ¶
func AssignXorPtrUintptr ¶
func AssignXorUint8 ¶
func AssignXorUint16 ¶
func AssignXorUint32 ¶
func AssignXorUint64 ¶
func AssignXorUintptr ¶
func AtExit ¶
func AtExit(f func())
AtExit will attempt to run f at process exit. The execution cannot be guaranteed, neither its ordering with respect to any other handlers registered by AtExit.
func AtomicAddFloat32 ¶
func AtomicAddFloat64 ¶
func AtomicAddInt32 ¶
func AtomicAddInt64 ¶
func AtomicAddUint32 ¶
func AtomicAddUint64 ¶
func AtomicAddUintptr ¶
func AtomicLoadFloat32 ¶
func AtomicLoadFloat64 ¶
func AtomicLoadInt32 ¶
func AtomicLoadInt64 ¶
func AtomicLoadNInt32 ¶
func AtomicLoadNInt64 ¶
func AtomicLoadNUint8 ¶
func AtomicLoadNUint16 ¶
func AtomicLoadNUint32 ¶
func AtomicLoadNUint64 ¶
func AtomicLoadNUintptr ¶
func AtomicLoadPFloat32 ¶
func AtomicLoadPFloat64 ¶
func AtomicLoadPInt8 ¶
func AtomicLoadPInt16 ¶
func AtomicLoadPInt32 ¶
func AtomicLoadPInt64 ¶
func AtomicLoadPUint8 ¶
func AtomicLoadPUint16 ¶
func AtomicLoadPUint32 ¶
func AtomicLoadPUint64 ¶
func AtomicLoadPUintptr ¶
func AtomicLoadUint32 ¶
func AtomicLoadUint64 ¶
func AtomicLoadUintptr ¶
func AtomicStoreFloat32 ¶
func AtomicStoreFloat64 ¶
func AtomicStoreInt32 ¶
func AtomicStoreInt64 ¶
func AtomicStoreNInt32 ¶
func AtomicStoreNInt64 ¶
func AtomicStoreNUint8 ¶
func AtomicStoreNUint16 ¶
func AtomicStoreNUint32 ¶
func AtomicStoreNUint64 ¶
func AtomicStoreNUintptr ¶
func AtomicStorePFloat32 ¶
func AtomicStorePFloat64 ¶
func AtomicStorePInt8 ¶
func AtomicStorePInt32 ¶
func AtomicStorePInt64 ¶
func AtomicStorePUint8 ¶
func AtomicStorePUint32 ¶
func AtomicStorePUint64 ¶
func AtomicStorePUintptr ¶
func AtomicStoreUint32 ¶
func AtomicStoreUint64 ¶
func AtomicStoreUintptr ¶
func BoolUint16 ¶
func BoolUint32 ¶
func BoolUint64 ¶
func BoolUintptr ¶
func CString ¶
CString returns a pointer to a zero-terminated version of s. The caller is responsible for freeing the allocated memory using Xfree.
func Complex64FromComplex64 ¶
func Complex64FromComplex128 ¶
func Complex64FromComplex128(n complex128) complex64
func Complex64FromFloat32 ¶
func Complex64FromFloat64 ¶
func Complex64FromInt8 ¶
func Complex64FromInt16 ¶
func Complex64FromInt32 ¶
func Complex64FromInt64 ¶
func Complex64FromUint8 ¶
func Complex64FromUint16 ¶
func Complex64FromUint32 ¶
func Complex64FromUint64 ¶
func Complex64FromUintptr ¶
func Complex128 ¶
func Complex128(n complex128) complex128
func Complex128FromComplex64 ¶
func Complex128FromComplex64(n complex64) complex128
func Complex128FromComplex128 ¶
func Complex128FromComplex128(n complex128) complex128
func Complex128FromFloat32 ¶
func Complex128FromFloat32(n float32) complex128
func Complex128FromFloat64 ¶
func Complex128FromFloat64(n float64) complex128
func Complex128FromInt8 ¶
func Complex128FromInt8(n int8) complex128
func Complex128FromInt16 ¶
func Complex128FromInt16(n int16) complex128
func Complex128FromInt32 ¶
func Complex128FromInt32(n int32) complex128
func Complex128FromInt64 ¶
func Complex128FromInt64(n int64) complex128
func Complex128FromUint8 ¶
func Complex128FromUint8(n uint8) complex128
func Complex128FromUint16 ¶
func Complex128FromUint16(n uint16) complex128
func Complex128FromUint32 ¶
func Complex128FromUint32(n uint32) complex128
func Complex128FromUint64 ¶
func Complex128FromUint64(n uint64) complex128
func Complex128FromUintptr ¶
func Complex128FromUintptr(n uintptr) complex128
func CoverCReport ¶
func CoverReport ¶
func CplUintptr ¶
func Float32FromComplex64 ¶
func Float32FromComplex128 ¶
func Float32FromComplex128(n complex128) float32
func Float32FromFloat32 ¶
func Float32FromFloat64 ¶
func Float32FromInt8 ¶
func Float32FromInt16 ¶
func Float32FromInt32 ¶
func Float32FromInt64 ¶
func Float32FromUint8 ¶
func Float32FromUint16 ¶
func Float32FromUint32 ¶
func Float32FromUint64 ¶
func Float32FromUintptr ¶
func Float64FromComplex64 ¶
func Float64FromComplex128 ¶
func Float64FromComplex128(n complex128) float64
func Float64FromFloat32 ¶
func Float64FromFloat64 ¶
func Float64FromInt8 ¶
func Float64FromInt16 ¶
func Float64FromInt32 ¶
func Float64FromInt64 ¶
func Float64FromUint8 ¶
func Float64FromUint16 ¶
func Float64FromUint32 ¶
func Float64FromUint64 ¶
func Float64FromUintptr ¶
func GetEnviron ¶
func GetEnviron() (r []string)
func GetMaxMmapCount ¶
func GetMaxMmapCount() int64
GetMaxMmapCount returns the maximum number of memory mappings allowed by the kernel (vm.max_map_count on Linux). Returns 0 if the limit cannot be determined.
func Int8FromComplex64 ¶
func Int8FromComplex128 ¶
func Int8FromComplex128(n complex128) int8
func Int8FromFloat32 ¶
func Int8FromFloat64 ¶
func Int8FromInt8 ¶
func Int8FromInt16 ¶
func Int8FromInt32 ¶
func Int8FromInt64 ¶
func Int8FromUint8 ¶
func Int8FromUint16 ¶
func Int8FromUint32 ¶
func Int8FromUint64 ¶
func Int8FromUintptr ¶
func Int16FromComplex64 ¶
func Int16FromComplex128 ¶
func Int16FromComplex128(n complex128) int16
func Int16FromFloat32 ¶
func Int16FromFloat64 ¶
func Int16FromInt8 ¶
func Int16FromInt16 ¶
func Int16FromInt32 ¶
func Int16FromInt64 ¶
func Int16FromUint8 ¶
func Int16FromUint16 ¶
func Int16FromUint32 ¶
func Int16FromUint64 ¶
func Int16FromUintptr ¶
func Int32FromComplex64 ¶
func Int32FromComplex128 ¶
func Int32FromComplex128(n complex128) int32
func Int32FromFloat32 ¶
func Int32FromFloat64 ¶
func Int32FromInt8 ¶
func Int32FromInt16 ¶
func Int32FromInt32 ¶
func Int32FromInt64 ¶
func Int32FromUint8 ¶
func Int32FromUint16 ¶
func Int32FromUint32 ¶
func Int32FromUint64 ¶
func Int32FromUintptr ¶
func Int64FromComplex64 ¶
func Int64FromComplex128 ¶
func Int64FromComplex128(n complex128) int64
func Int64FromFloat32 ¶
func Int64FromFloat64 ¶
func Int64FromInt8 ¶
func Int64FromInt16 ¶
func Int64FromInt32 ¶
func Int64FromInt64 ¶
func Int64FromUint8 ¶
func Int64FromUint16 ¶
func Int64FromUint32 ¶
func Int64FromUint64 ¶
func Int64FromUintptr ¶
func MemAuditReport ¶
func MemAuditReport() error
MemAuditReport locks the memory allocator, reports memory leaks, if any. Finally it disables memory auditing and unlocks the memory allocator.
This memory auditing functionality has to be enabled using the libc.memgrind build tag.
It is intended only for debug/test builds. It slows down memory allocation routines and it has additional memory costs.
func MemAuditStart ¶
func MemAuditStart()
MemAuditStart locks the memory allocator, initializes and enables memory auditing. Finaly it unlocks the memory allocator.
Some memory handling errors, like double free or freeing of unallocated memory, will panic when memory auditing is enabled.
This memory auditing functionality has to be enabled using the libc.memgrind build tag.
It is intended only for debug/test builds. It slows down memory allocation routines and it has additional memory costs.
func NegUintptr ¶
func NewVaList ¶
func NewVaList(args ...interface{}) (va_list uintptr)
NewVaList is like VaList but automatically allocates the correct amount of memory for all of the items in args.
The va_list return value is used to pass the constructed var args to var args accepting functions. The caller of NewVaList is responsible for freeing the va_list.
func NewVaListN ¶
NewVaListN returns a newly allocated va_list for n items. The caller of NewVaListN is responsible for freeing the va_list.
func PostDecAtomicInt32 ¶
func PostDecAtomicInt64 ¶
func PostDecAtomicUint32 ¶
func PostDecAtomicUint64 ¶
func PostDecAtomicUintptr ¶
func PostDecBitFieldPtr8Int8 ¶
func PostDecComplex64 ¶
func PostDecComplex128 ¶
func PostDecComplex128(p *complex128, d complex128) complex128
func PostDecFloat32 ¶
func PostDecFloat64 ¶
func PostDecInt8 ¶
func PostDecInt16 ¶
func PostDecInt32 ¶
func PostDecInt64 ¶
func PostDecUint8 ¶
func PostDecUint16 ¶
func PostDecUint32 ¶
func PostDecUint64 ¶
func PostDecUintptr ¶
func PostIncAtomicInt32 ¶
func PostIncAtomicInt32P ¶
func PostIncAtomicInt64 ¶
func PostIncAtomicInt64P ¶
func PostIncAtomicUint32 ¶
func PostIncAtomicUint32P ¶
func PostIncAtomicUint64 ¶
func PostIncAtomicUint64P ¶
func PostIncAtomicUintptr ¶
func PostIncAtomicUintptrP ¶
func PostIncBitFieldPtr8Int8 ¶
func PostIncComplex64 ¶
func PostIncComplex128 ¶
func PostIncComplex128(p *complex128, d complex128) complex128
func PostIncFloat32 ¶
func PostIncFloat64 ¶
func PostIncInt8 ¶
func PostIncInt16 ¶
func PostIncInt32 ¶
func PostIncInt64 ¶
func PostIncUint8 ¶
func PostIncUint16 ¶
func PostIncUint32 ¶
func PostIncUint64 ¶
func PostIncUintptr ¶
func PreDecAtomicInt32 ¶
func PreDecAtomicInt64 ¶
func PreDecAtomicUint32 ¶
func PreDecAtomicUint64 ¶
func PreDecAtomicUintptr ¶
func PreDecComplex64 ¶
func PreDecComplex128 ¶
func PreDecComplex128(p *complex128, d complex128) complex128
func PreDecFloat32 ¶
func PreDecFloat64 ¶
func PreDecInt8 ¶
func PreDecInt16 ¶
func PreDecInt32 ¶
func PreDecInt64 ¶
func PreDecUint8 ¶
func PreDecUint16 ¶
func PreDecUint32 ¶
func PreDecUint64 ¶
func PreDecUintptr ¶
func PreIncAtomicInt32 ¶
func PreIncAtomicInt32P ¶
func PreIncAtomicInt64 ¶
func PreIncAtomicInt64P ¶
func PreIncAtomicUint32 ¶
func PreIncAtomicUint32P ¶
func PreIncAtomicUint64 ¶
func PreIncAtomicUint64P ¶
func PreIncAtomicUintptr ¶
func PreIncComplex64 ¶
func PreIncComplex128 ¶
func PreIncComplex128(p *complex128, d complex128) complex128
func PreIncFloat32 ¶
func PreIncFloat64 ¶
func PreIncInt8 ¶
func PreIncInt16 ¶
func PreIncInt32 ¶
func PreIncInt64 ¶
func PreIncUint8 ¶
func PreIncUint16 ¶
func PreIncUint32 ¶
func PreIncUint64 ¶
func PreIncUintptr ¶
func PreInrAtomicUintptrP ¶
func SetBitFieldPtr16Uint16 ¶
func SetBitFieldPtr16Uint32 ¶
func SetBitFieldPtr16Uint64 ¶
func SetBitFieldPtr32Uint16 ¶
func SetBitFieldPtr32Uint32 ¶
func SetBitFieldPtr32Uint64 ¶
func SetBitFieldPtr64Uint16 ¶
func SetBitFieldPtr64Uint32 ¶
func SetBitFieldPtr64Uint64 ¶
func SetEnviron ¶
func TLSAllocaEntry ¶
func TLSAllocaEntry(p0 *TLS)
func TLSAllocaExit ¶
func TLSAllocaExit(p0 *TLS)
func Uint8FromComplex64 ¶
func Uint8FromComplex128 ¶
func Uint8FromComplex128(n complex128) uint8
func Uint8FromFloat32 ¶
func Uint8FromFloat64 ¶
func Uint8FromInt8 ¶
func Uint8FromInt16 ¶
func Uint8FromInt32 ¶
func Uint8FromInt64 ¶
func Uint8FromUint8 ¶
func Uint8FromUint16 ¶
func Uint8FromUint32 ¶
func Uint8FromUint64 ¶
func Uint8FromUintptr ¶
func Uint16FromComplex64 ¶
func Uint16FromComplex128 ¶
func Uint16FromComplex128(n complex128) uint16
func Uint16FromFloat32 ¶
func Uint16FromFloat64 ¶
func Uint16FromInt8 ¶
func Uint16FromInt16 ¶
func Uint16FromInt32 ¶
func Uint16FromInt64 ¶
func Uint16FromUint8 ¶
func Uint16FromUint16 ¶
func Uint16FromUint32 ¶
func Uint16FromUint64 ¶
func Uint16FromUintptr ¶
func Uint32FromComplex64 ¶
func Uint32FromComplex128 ¶
func Uint32FromComplex128(n complex128) uint32
func Uint32FromFloat32 ¶
func Uint32FromFloat64 ¶
func Uint32FromInt8 ¶
func Uint32FromInt16 ¶
func Uint32FromInt32 ¶
func Uint32FromInt64 ¶
func Uint32FromUint8 ¶
func Uint32FromUint16 ¶
func Uint32FromUint32 ¶
func Uint32FromUint64 ¶
func Uint32FromUintptr ¶
func Uint64FromComplex64 ¶
func Uint64FromComplex128 ¶
func Uint64FromComplex128(n complex128) uint64
func Uint64FromFloat32 ¶
func Uint64FromFloat64 ¶
func Uint64FromInt8 ¶
func Uint64FromInt16 ¶
func Uint64FromInt32 ¶
func Uint64FromInt64 ¶
func Uint64FromUint8 ¶
func Uint64FromUint16 ¶
func Uint64FromUint32 ¶
func Uint64FromUint64 ¶
func Uint64FromUintptr ¶
func UintptrFromComplex64 ¶
func UintptrFromComplex128 ¶
func UintptrFromComplex128(n complex128) uintptr
func UintptrFromFloat32 ¶
func UintptrFromFloat64 ¶
func UintptrFromInt8 ¶
func UintptrFromInt16 ¶
func UintptrFromInt32 ¶
func UintptrFromInt64 ¶
func UintptrFromUint8 ¶
func UintptrFromUint16 ¶
func UintptrFromUint32 ¶
func UintptrFromUint64 ¶
func UintptrFromUintptr ¶
func VaList ¶
VaList fills a varargs list at p with args and returns p. The list must have been allocated by caller and it must not be in Go managed memory, ie. it must be pinned. Caller is responsible for freeing the list.
This function supports code generated by ccgo/v4.
Note: The C translated to Go varargs ABI alignment for all types is 8 on all architectures.
func WatchDelete ¶
func WatchDelete(p uintptr)
func WatchFloat32 ¶
func WatchFloat64 ¶
func WatchInt16 ¶
func WatchInt32 ¶
func WatchInt64 ¶
func WatchUint8 ¶
func WatchUint16 ¶
func WatchUint32 ¶
func WatchUint64 ¶
func X_IO_feof_unlocked ¶
func X_IO_ferror_unlocked ¶
func X_IO_getc_unlocked ¶
func X__assert_fail ¶
func X__atomic_exchangeInt8 ¶
func X__atomic_exchangeInt16 ¶
func X__atomic_exchangeInt32 ¶
func X__atomic_exchangeInt64 ¶
func X__atomic_exchangeUint8 ¶
func X__atomic_fetch_addInt8 ¶
func X__atomic_fetch_andInt8 ¶
func X__atomic_fetch_orInt8 ¶
func X__atomic_fetch_orInt16 ¶
func X__atomic_fetch_orInt32 ¶
func X__atomic_fetch_orInt64 ¶
func X__atomic_fetch_orUint8 ¶
func X__atomic_fetch_subInt8 ¶
func X__atomic_fetch_xorInt8 ¶
func X__atomic_loadInt8 ¶
func X__atomic_loadInt16 ¶
func X__atomic_loadInt32 ¶
func X__atomic_loadInt64 ¶
func X__atomic_loadUint8 ¶
func X__atomic_loadUint16 ¶
func X__atomic_loadUint32 ¶
func X__atomic_loadUint64 ¶
func X__atomic_storeInt8 ¶
func X__atomic_storeInt16 ¶
func X__atomic_storeInt32 ¶
func X__atomic_storeInt64 ¶
func X__atomic_storeUint8 ¶
func X__atomic_storeUint16 ¶
func X__atomic_storeUint32 ¶
func X__atomic_storeUint64 ¶
func X__block_all_sigs ¶
func X__block_app_sigs ¶
func X__builtin___memcpy_chk ¶
void * __builtin___memcpy_chk (void *dest, const void *src, size_t n, size_t os);
func X__builtin___memset_chk ¶
void * __builtin___memset_chk (void *s, int c, size_t n, size_t os);
func X__builtin___snprintf_chk ¶
func X__builtin___snprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, format, args uintptr) (r int32)
int __builtin___snprintf_chk(char * str, size_t maxlen, int flag, size_t os, const char * format, ...);
func X__builtin___sprintf_chk ¶
func X__builtin___sprintf_chk(t *TLS, s uintptr, flag int32, os Tsize_t, format, args uintptr) (r int32)
int __builtin___sprintf_chk (char *s, int flag, size_t os, const char *fmt, ...);
func X__builtin___strcat_chk ¶
func X__builtin___strcpy_chk ¶
char * __builtin___strcpy_chk (char *dest, const char *src, size_t os);
func X__builtin___vsnprintf_chk ¶
func X__builtin___vsnprintf_chk(t *TLS, str uintptr, maxlen Tsize_t, flag int32, os Tsize_t, format, args uintptr) (r int32)
int __builtin___vsnprintf_chk (char *s, size_t maxlen, int flag, size_t os, const char *fmt, va_list ap);
func X__builtin_abort ¶
func X__builtin_abort(t *TLS)
func X__builtin_abs ¶
func X__builtin_add_overflowInt64 ¶
bool __builtin_add_overflow (type1 a, type2 b, type3 *res)
func X__builtin_add_overflowUint32 ¶
bool __builtin_add_overflow (type1 a, type2 b, type3 *res)
func X__builtin_add_overflowUint64 ¶
bool __builtin_add_overflow (type1 a, type2 b, type3 *res)
func X__builtin_alloca ¶
func X__builtin_bswap16 ¶
uint16_t __builtin_bswap16 (uint32_t x)
func X__builtin_bswap32 ¶
uint32_t __builtin_bswap32 (uint32_t x)
func X__builtin_bswap64 ¶
uint64_t __builtin_bswap64 (uint64_t x)
func X__builtin_bzero ¶
func X__builtin_clz ¶
func X__builtin_clzl ¶
func X__builtin_clzll ¶
func X__builtin_constant_p_impl ¶
func X__builtin_constant_p_impl()
func X__builtin_copysign ¶
func X__builtin_copysignf ¶
func X__builtin_copysignl ¶
func X__builtin_ctz ¶
func X__builtin_ctzl ¶
func X__builtin_exit ¶
func X__builtin_expect ¶
func X__builtin_expect(t *TLS, exp, c long) long
func X__builtin_fabs ¶
func X__builtin_fabsf ¶
func X__builtin_fabsl ¶
func X__builtin_ffs ¶
func X__builtin_fma ¶
double __builtin_fma(double x, double y, double z);
func X__builtin_free ¶
func X__builtin_huge_val ¶
func X__builtin_huge_valf ¶
func X__builtin_inf ¶
func X__builtin_inff ¶
func X__builtin_infl ¶
func X__builtin_isblank ¶
func X__builtin_isnan ¶
func X__builtin_isnanf ¶
func X__builtin_isnanl ¶
func X__builtin_isprint ¶
func X__builtin_isunordered ¶
func X__builtin_llabs ¶
func X__builtin_log2 ¶
func X__builtin_lrint ¶
func X__builtin_lrintf ¶
func X__builtin_lround ¶
func X__builtin_malloc ¶
func X__builtin_mmap ¶
func X__builtin_mul_overflowInt64 ¶
bool __builtin_mul_overflow (type1 a, type2 b, type3 *res)
func X__builtin_mul_overflowUint64 ¶
bool __builtin_mul_overflow (type1 a, type2 b, type3 *res)
func X__builtin_mul_overflowUint128 ¶
bool __builtin_mul_overflow (type1 a, type2 b, type3 *res)
func X__builtin_nan ¶
func X__builtin_nanf ¶
func X__builtin_nanl ¶
func X__builtin_popcount ¶
func X__builtin_popcountl ¶
int __builtin_popcountl (unsigned long x)
func X__builtin_prefetch ¶
func X__builtin_rintf ¶
func X__builtin_round ¶
func X__builtin_roundf ¶
func X__builtin_snprintf ¶
func X__builtin_sprintf ¶
func X__builtin_strcmp ¶
func X__builtin_strcpy ¶
func X__builtin_sub_overflowInt64 ¶
bool __builtin_sub_overflow (type1 a, type2 b, type3 *res)
func X__builtin_trap ¶
func X__builtin_trap(t *TLS)
func X__builtin_trunc ¶
func X__builtin_unreachable ¶
func X__builtin_unreachable(t *TLS)
func X__builtin_vsnprintf ¶
func X__c11_atomic_loadInt8 ¶
func X__c11_atomic_loadInt16 ¶
func X__c11_atomic_loadInt32 ¶
func X__c11_atomic_loadInt64 ¶
func X__c11_atomic_loadUint8 ¶
func X__c11_atomic_storeInt8 ¶
func X__ccgo_dmesg ¶
func X__ccgo_getMutexType ¶
func X__ccgo_in6addr_anyp ¶
func X__ccgo_sqlite3_log ¶
void sqlite3_log(int iErrCode, const char *zFormat, ...);
func X__clock_gettime ¶
func X__clock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r1 int32)
func X__clock_nanosleep ¶
func X__cmsg_nxthdr ¶
struct cmsghdr *CMSG_NXTHDR(struct msghdr *msgh, struct cmsghdr *cmsg);
func X__convert_scm_timestamps ¶
func X__convert_scm_timestamps(tls *TLS, msg uintptr, csize Tsocklen_t)
func X__crypt_blowfish ¶
C documentation
/* * Please preserve the runtime self-test. It serves two purposes at once: * * 1. We really can't afford the risk of producing incompatible hashes e.g. * when there's something like gcc bug 26587 again, whereas an application or * library integrating this code might not also integrate our external tests or * it might not run them after every build. Even if it does, the miscompile * might only occur on the production build, but not on a testing build (such * as because of different optimization settings). It is painful to recover * from incorrectly-computed hashes - merely fixing whatever broke is not * enough. Thus, a proactive measure like this self-test is needed. * * 2. We don't want to leave sensitive data from our actual password hash * computation on the stack or in registers. Previous revisions of the code * would do explicit cleanups, but simply running the self-test after hash * computation is more reliable. * * The performance cost of this quick self-test is around 0.6% at the "$2a$08" * setting. */
func X__crypt_des ¶
func X__crypt_md5 ¶
func X__crypt_sha256 ¶
func X__crypt_sha512 ¶
func X__ctype_b_loc ¶
func X__ctype_tolower_loc ¶
func X__ctype_toupper_loc ¶
func X__des_setkey ¶
func X__dn_expand ¶
func X__dns_parse ¶
func X__do_des ¶
func X__do_des(tls *TLS, l_in Tuint32_t, r_in Tuint32_t, l_out uintptr, r_out uintptr, count Tuint32_t, saltbits Tuint32_t, ekey uintptr)
C documentation
/* * l_in, r_in, l_out, and r_out are in pseudo-"big-endian" format. */
func X__do_orphaned_stdio_locks ¶
func X__do_orphaned_stdio_locks(tls *TLS)
func X__env_rm_add ¶
func X__expo2 ¶
C documentation
/* exp(x)/2 for x >= log(DBL_MAX), slightly better than 0.5*exp(x/2)*exp(x/2) */
func X__expo2f ¶
C documentation
/* expf(x)/2 for x >= log(FLT_MAX), slightly better than 0.5f*expf(x/2)*expf(x/2) */
func X__fclose_ca ¶
func X__fesetround ¶
func X__fmodeflags ¶
func X__fopen_rb_ca ¶
func X__fpclassify ¶
func X__fpclassifyf ¶
func X__fpclassifyl ¶
func X__freadable ¶
func X__freading ¶
func X__freadptrinc ¶
func X__freelocale ¶
func X__fseeko_unlocked ¶
func X__fseterr ¶
func X__fstatat ¶
func X__funcs_on_quick_exit ¶
func X__funcs_on_quick_exit(tls *TLS)
func X__futimesat ¶
func X__fwritable ¶
func X__fwriting ¶
func X__fxstatat ¶
func X__get_handler_set ¶
func X__get_resolv_conf ¶
func X__getauxval ¶
func X__getgr_a ¶
func X__getgrent_a ¶
func X__getpw_a ¶
func X__getpwent_a ¶
func X__gettextdomain ¶
func X__h_errno_location ¶
func X__init_ssp ¶
func X__intscan ¶
func X__isfinite ¶
func X__isfinitef ¶
func X__isfinitel ¶
func X__isoc99_fscanf ¶
func X__isoc99_fwscanf ¶
func X__isoc99_sscanf ¶
func X__isoc99_swscanf ¶
func X__isoc99_vfscanf ¶
func X__isoc99_vfwscanf ¶
func X__isoc99_vsscanf ¶
func X__isoc99_vswscanf ¶
func X__lctrans_cur ¶
func X__ldexp_cexp ¶
func X__ldexp_cexp(tls *TLS, z complex128, expt int32) (r complex128)
C documentation
/* * __ldexp_cexp(x, expt) compute exp(x) * 2**expt. * It is intended for large arguments (real part >= ln(DBL_MAX)) * where care is needed to avoid overflow. * * The present implementation is narrowly tailored for our hyperbolic and * exponential functions. We assume expt is small (0 or -1), and the caller * has filtered out very large x, for which overflow would be inevitable. */
func X__libc_sigaction ¶
func X__loc_is_allocated ¶
func X__lockfile ¶
func X__lookup_ipliteral ¶
func X__lookup_name ¶
func X__lookup_serv ¶
func X__lsysinfo ¶
func X__math_divzero ¶
func X__math_divzerof ¶
func X__math_invalid ¶
func X__math_invalidf ¶
func X__math_oflow ¶
func X__math_oflowf ¶
func X__math_uflow ¶
func X__math_uflowf ¶
func X__mkostemps ¶
func X__nl_langinfo ¶
func X__nscd_query ¶
func X__ofl_add ¶
func X__ofl_lock ¶
func X__ofl_unlock ¶
func X__ofl_unlock(tls *TLS)
func X__posix_getopt ¶
func X__procfdname ¶
func X__qsort_r ¶
func X__register_locked_file ¶
func X__register_locked_file(tls *TLS, f uintptr, self Tpthread_t)
func X__rem_pio2 ¶
C documentation
/* caller must handle the case when reduction is not needed: |x| ~<= pi/4 */
func X__rem_pio2_large ¶
func X__res_mkquery ¶
func X__res_msend ¶
func X__res_msend_rc ¶
func X__res_send ¶
func X__res_state ¶
func X__reset_tls ¶
func X__reset_tls(tls *TLS)
func X__restore ¶
func X__restore(tls *TLS)
These functions will not work, but suffice for targets where the * kernel sigaction structure does not actually use sa_restorer.
func X__restore_rt ¶
func X__restore_rt(tls *TLS)
func X__restore_sigs ¶
func X__rtnetlink_enumerate ¶
func X__secs_to_zone ¶
func X__signbitl ¶
func X__stack_chk_fail ¶
func X__stack_chk_fail(tls *TLS)
func X__stack_chk_fail_local ¶
func X__stack_chk_fail_local(tls *TLS)
func X__stdio_close ¶
func X__stdio_exit ¶
func X__stdio_exit(tls *TLS)
func X__stdio_exit_needed ¶
func X__stdio_exit_needed(tls *TLS)
func X__strcasecmp_l ¶
func X__strftime_fmt_1 ¶
func X__strncasecmp_l ¶
func X__strtol_internal ¶
func X__strtoll_internal ¶
func X__strtoul_internal ¶
func X__strtoull_internal ¶
func X__sync_add_and_fetch ¶
func X__sync_add_and_fetch[T constraints.Integer](t *TLS, p uintptr, v T) T
func X__sync_add_and_fetch_uint32 ¶
unsigned __sync_add_and_fetch_uint32(*unsigned, unsigned)
func X__sync_sub_and_fetch ¶
func X__sync_sub_and_fetch[T constraints.Integer](t *TLS, p uintptr, v T) T
func X__sync_sub_and_fetch_uint32 ¶
unsigned __sync_sub_and_fetch_uint32(*unsigned, unsigned)
func X__sync_val_compare_and_swapInt8 ¶
type __sync_val_compare_and_swap (type *ptr, type oldval type newval, ...)
func X__syscall0 ¶
func X__syscall0(tls *TLS, n long) long
func X__syscall1 ¶
func X__syscall1(tls *TLS, n, a1 long) long
func X__syscall2 ¶
func X__syscall2(tls *TLS, n, a1, a2 long) long
func X__syscall3 ¶
func X__syscall3(tls *TLS, n, a1, a2, a3 long) long
func X__syscall4 ¶
func X__syscall4(tls *TLS, n, a1, a2, a3, a4 long) long
func X__syscall5 ¶
func X__syscall5(tls *TLS, n, a1, a2, a3, a4, a5 long) long
func X__syscall6 ¶
func X__syscall6(tls *TLS, n, a1, a2, a3, a4, a5, a6 long) long
func X__syscall_ret ¶
func X__tm_to_secs ¶
func X__tm_to_tzname ¶
func X__toread_needs_stdio_exit ¶
func X__toread_needs_stdio_exit(tls *TLS)
func X__towrite ¶
func X__towrite_needs_stdio_exit ¶
func X__towrite_needs_stdio_exit(tls *TLS)
func X__tre_mem_alloc_impl ¶
func X__tre_mem_alloc_impl(tls *TLS, mem Ttre_mem_t, provided int32, provided_block uintptr, zero int32, size Tsize_t) (r uintptr)
C documentation
/* Allocates a block of `size' bytes from `mem'. Returns a pointer to the allocated block or NULL if an underlying malloc() failed. */
func X__tre_mem_destroy ¶
func X__tre_mem_destroy(tls *TLS, mem Ttre_mem_t)
C documentation
/* Frees the memory allocator and all memory allocated with it. */
func X__unlist_locked_file ¶
func X__unlockfile ¶
func X__vm_wait ¶
func X__vm_wait(tls *TLS)
func X__xmknodat ¶
func X__xpg_basename ¶
func X__xpg_strerror_r ¶
func X_flushlbf ¶
func X_flushlbf(tls *TLS)
func X_obstack_begin ¶
func X_obstack_begin(t *TLS, obstack uintptr, size, alignment int32, chunkfun, freefun uintptr) int32
int _obstack_begin (struct obstack *h, _OBSTACK_SIZE_T size, _OBSTACK_SIZE_T alignment, void *(*chunkfun) (size_t), void (*freefun) (void *))
func X_obstack_newchunk ¶
extern void _obstack_newchunk(struct obstack *, int);
func X_pthread_cleanup_pop ¶
func X_pthread_cleanup_push ¶
func Xat_quick_exit ¶
func Xatanh ¶
C documentation
/* atanh(x) = log((1+x)/(1-x))/2 = log1p(2x/(1-x))/2 ~= x + x^3/3 + o(x^5) */
func Xatanhf ¶
C documentation
/* atanh(x) = log((1+x)/(1-x))/2 = log1p(2x/(1-x))/2 ~= x + x^3/3 + o(x^5) */
func Xbacktrace ¶
int backtrace(void **buffer, int size);
func Xbacktrace_symbols_fd ¶
void backtrace_symbols_fd(void *const *buffer, int size, int fd);
func Xbindtextdomain ¶
func Xcabs ¶
func Xcabs(tls *TLS, z complex128) (r float64)
func Xcabsl ¶
func Xcabsl(tls *TLS, z complex128) (r float64)
func Xcacos ¶
func Xcacos(tls *TLS, z complex128) (r complex128)
func Xcacosh ¶
func Xcacosh(tls *TLS, z complex128) (r complex128)
func Xcacoshl ¶
func Xcacoshl(tls *TLS, z complex128) (r complex128)
func Xcacosl ¶
func Xcacosl(tls *TLS, z complex128) (r complex128)
func Xcarg ¶
func Xcarg(tls *TLS, z complex128) (r float64)
func Xcargl ¶
func Xcargl(tls *TLS, z complex128) (r float64)
func Xcasin ¶
func Xcasin(tls *TLS, z complex128) (r1 complex128)
func Xcasinh ¶
func Xcasinh(tls *TLS, z complex128) (r complex128)
func Xcasinhl ¶
func Xcasinhl(tls *TLS, z complex128) (r complex128)
func Xcasinl ¶
func Xcasinl(tls *TLS, z complex128) (r complex128)
func Xcatan ¶
func Xcatan(tls *TLS, z complex128) (r complex128)
func Xcatanh ¶
func Xcatanh(tls *TLS, z complex128) (r complex128)
func Xcatanhl ¶
func Xcatanhl(tls *TLS, z complex128) (r complex128)
func Xcatanl ¶
func Xcatanl(tls *TLS, z complex128) (r complex128)
func Xccos ¶
func Xccos(tls *TLS, z complex128) (r complex128)
func Xccosh ¶
func Xccosh(tls *TLS, z complex128) (r complex128)
func Xccosl ¶
func Xccosl(tls *TLS, z complex128) (r complex128)
func Xcexp ¶
func Xcexp(tls *TLS, z complex128) (r complex128)
func Xcfmakeraw ¶
func Xcimag ¶
func Xcimag(tls *TLS, z complex128) (r float64)
func Xcimagl ¶
func Xcimagl(tls *TLS, z complex128) (r float64)
func Xclearerr_unlocked ¶
func Xclock_adjtime ¶
func Xclock_adjtime(tls *TLS, clock_id Tclockid_t, utx uintptr) (r1 int32)
func Xclock_getres ¶
func Xclock_getres(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Xclock_gettime ¶
func Xclock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Xclock_nanosleep ¶
func Xclock_settime ¶
func Xclock_settime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Xclog ¶
func Xclog(tls *TLS, z complex128) (r1 complex128)
func Xclogl ¶
func Xclogl(tls *TLS, z complex128) (r complex128)
func Xconj ¶
func Xconj(tls *TLS, z complex128) (r complex128)
func Xconjl ¶
func Xconjl(tls *TLS, z complex128) (r complex128)
func Xcosh ¶
C documentation
/* cosh(x) = (exp(x) + 1/exp(x))/2 * = 1 + 0.5*(exp(x)-1)*(exp(x)-1)/exp(x) * = 1 + x*x/2 + o(x^4) */
func Xcpow ¶
func Xcpow(tls *TLS, z complex128, c complex128) (r complex128)
func Xcpowl ¶
func Xcpowl(tls *TLS, z complex128, c complex128) (r complex128)
func Xcproj ¶
func Xcproj(tls *TLS, z complex128) (r complex128)
func Xcprojl ¶
func Xcprojl(tls *TLS, z complex128) (r complex128)
func Xcreal ¶
func Xcreal(tls *TLS, z complex128) (r float64)
func Xcreall ¶
func Xcreall(tls *TLS, z complex128) (r float64)
func Xcsin ¶
func Xcsin(tls *TLS, z complex128) (r complex128)
func Xcsinh ¶
func Xcsinh(tls *TLS, z complex128) (r complex128)
func Xcsinl ¶
func Xcsinl(tls *TLS, z complex128) (r complex128)
func Xcsqrt ¶
func Xcsqrt(tls *TLS, z complex128) (r complex128)
func Xctan ¶
func Xctan(tls *TLS, z complex128) (r complex128)
func Xctanh ¶
func Xctanh(tls *TLS, z complex128) (r complex128)
func Xctanl ¶
func Xctanl(tls *TLS, z complex128) (r complex128)
func Xdcgettext ¶
func Xdcngettext ¶
func Xdn_expand ¶
func Xdngettext ¶
func Xendhostent ¶
func Xendhostent(tls *TLS)
func Xendmntent ¶
func Xendnetent ¶
func Xendnetent(tls *TLS)
func Xendprotoent ¶
func Xendprotoent(tls *TLS)
func Xendservent ¶
func Xendservent(tls *TLS)
func Xendusershell ¶
func Xendusershell(tls *TLS)
func Xendutxent ¶
func Xendutxent(tls *TLS)
func Xepoll_create ¶
func Xepoll_create1 ¶
func Xepoll_pwait ¶
func Xether_aton ¶
func Xether_ntoa ¶
func Xeventfd_write ¶
func Xeventfd_write(tls *TLS, fd int32, _value Teventfd_t) (r int32)
func Xexplicit_bzero ¶
func Xfaccessat ¶
func Xfallocate ¶
func Xfanotify_mark ¶
func Xfdatasync ¶
func Xfdopendir ¶
func Xfeclearexcept ¶
func Xfegetround ¶
func Xfeof_unlocked ¶
func Xferaiseexcept ¶
func Xferror_unlocked ¶
func Xfetestexcept ¶
func Xfflush_unlocked ¶
func Xfgetc_unlocked ¶
func Xfgetgrent ¶
func Xfgetpwent ¶
func Xfileno_unlocked ¶
func Xflockfile ¶
func Xfopencookie ¶
func Xfopencookie(tls *TLS, cookie uintptr, mode uintptr, iofuncs Tcookie_io_functions_t) (r uintptr)
func Xfreeaddrinfo ¶
func Xfreeifaddrs ¶
func Xfreelocale ¶
func Xfsetxattr ¶
func Xftrylockfile ¶
func Xfts64_open ¶
FTS *fts_open(char * const *path_argv, int options, int (*compar)(const FTSENT **, const FTSENT **));
func Xfts_open ¶
FTS *fts_open(char * const *path_argv, int options, int (*compar)(const FTSENT **, const FTSENT **));
func Xfunlockfile ¶
func Xgai_strerror ¶
func Xget_avphys_pages ¶
func Xget_current_dir_name ¶
func Xget_nprocs ¶
func Xget_nprocs_conf ¶
func Xget_phys_pages ¶
func Xgetaddrinfo ¶
func Xgetauxval ¶
func Xgetc_unlocked ¶
func Xgetchar_unlocked ¶
func Xgetdtablesize ¶
func Xgetgrgid_r ¶
func Xgetgrnam_r ¶
func Xgetgrouplist ¶
func Xgethostbyaddr ¶
func Xgethostbyaddr(tls *TLS, a uintptr, l Tsocklen_t, af int32) (r uintptr)
func Xgethostbyaddr_r ¶
func Xgethostbyname ¶
func Xgethostbyname2_r ¶
func Xgethostbyname_r ¶
func Xgethostent ¶
func Xgethostid ¶
func Xgetifaddrs ¶
func Xgetmntent ¶
func Xgetmntent_r ¶
func Xgetnameinfo ¶
func Xgetnameinfo(tls *TLS, sa uintptr, sl Tsocklen_t, node uintptr, nodelen Tsocklen_t, serv uintptr, servlen Tsocklen_t, flags int32) (r int32)
func Xgetnetbyname ¶
func Xgetnetent ¶
func Xgetopt_long ¶
func Xgetopt_long_only ¶
func Xgetpagesize ¶
func Xgetprotobyname ¶
func Xgetprotobynumber ¶
func Xgetprotoent ¶
func Xgetpwnam_r ¶
func Xgetpwuid_r ¶
func Xgetservbyname_r ¶
func Xgetservent ¶
func Xgetsockopt ¶
func Xgetusershell ¶
func Xgetutline ¶
func Xgetutxent ¶
func Xgetutxline ¶
func Xhstrerror ¶
func Xiconv_close ¶
func Xif_freenameindex ¶
func Xif_nameindex ¶
func Xif_nametoindex ¶
func Xinet_ntoa ¶
func Xinet_ntop ¶
func Xinitstate_r ¶
The initstate_r() function is like initstate(3) except that it initializes the state in the object pointed to by buf, rather than initializing the global state variable. Before calling this function, the buf.state field must be initialized to NULL. The initstate_r() function records a pointer to the statebuf argument inside the structure pointed to by buf. Thus, state‐ buf should not be deallocated so long as buf is still in use. (So, statebuf should typically be allocated as a static variable, or allocated on the heap using malloc(3) or similar.)
char *initstate_r(unsigned int seed, char *statebuf, size_t statelen, struct random_data *buf);
func Xinotify_add_watch ¶
func Xinotify_init ¶
func Xinotify_init1 ¶
func Xisastream ¶
func Xissetugid ¶
func Xiswxdigit ¶
func Xlocaleconv ¶
func Xlocaltime ¶
func Xlogin_tty ¶
func Xlsetxattr ¶
func Xmkstemp64 ¶
func Xmunlockall ¶
func Xname_to_handle_at ¶
func Xnl_langinfo ¶
func Xns_initparse ¶
func Xns_name_uncompress ¶
func Xns_parserr ¶
func Xns_skiprr ¶
func Xobstack_free ¶
void obstack_free (struct obstack *h, void *obj)
func Xobstack_vprintf ¶
int obstack_vprintf (struct obstack *obstack, const char *template, va_list ap)
func Xopen_by_handle_at ¶
func Xpersonality ¶
func Xposix_fadvise ¶
func Xposix_fallocate ¶
func Xposix_madvise ¶
func Xposix_openpt ¶
func Xposix_spawnattr_init ¶
func Xpthread_atfork ¶
func Xpthread_attr_destroy ¶
func Xpthread_attr_init ¶
func Xpthread_cleanup_pop ¶
func Xpthread_cleanup_push ¶
func Xpthread_cond_broadcast ¶
func Xpthread_cond_destroy ¶
func Xpthread_cond_init ¶
func Xpthread_cond_signal ¶
func Xpthread_cond_timedwait ¶
func Xpthread_cond_wait ¶
func Xpthread_create ¶
func Xpthread_detach ¶
func Xpthread_equal ¶
int pthread_equal(pthread_t, pthread_t);
func Xpthread_exit ¶
func Xpthread_getspecific ¶
func Xpthread_getspecific(tls *TLS, k Tpthread_key_t) uintptr
func Xpthread_join ¶
func Xpthread_join(tls *TLS, t Tpthread_t, res uintptr) (r int32)
func Xpthread_key_delete ¶
func Xpthread_key_delete(tls *TLS, k Tpthread_key_t) int32
func Xpthread_mutex_destroy ¶
func Xpthread_mutex_init ¶
func Xpthread_mutex_lock ¶
func Xpthread_mutex_trylock ¶
func Xpthread_mutex_unlock ¶
func Xpthread_mutexattr_init ¶
func Xpthread_self ¶
func Xpthread_setspecific ¶
func Xpthread_setspecific(tls *TLS, k Tpthread_key_t, x uintptr) int32
func Xputchar_unlocked ¶
func Xpututline ¶
func Xpututxline ¶
func Xquick_exit ¶
func Xreaddir64 ¶
func Xremap_file_pages ¶
func Xrenameat2 ¶
func Xrenameat2(t *TLS, olddirfd int32, oldpath uintptr, newdirfd int32, newpath uintptr, flags int32) int32
int renameat2(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, unsigned int flags);
func Xres_mkquery ¶
func Xrewinddir ¶
func Xsched_yield ¶
func Xsecure_getenv ¶
func Xsemtimedop ¶
func Xsethostent ¶
func Xsetlinebuf ¶
func Xsetlogmask ¶
func Xsetnetent ¶
func Xsetprotoent ¶
func Xsetservent ¶
func Xsetsockopt ¶
func Xsetusershell ¶
func Xsetusershell(tls *TLS)
func Xsetutxent ¶
func Xsetutxent(tls *TLS)
func Xshm_unlink ¶
func Xsigemptyset ¶
func Xsigfillset ¶
func Xsigisemptyset ¶
func Xsignificand ¶
func Xsignificandf ¶
func Xsigpending ¶
func Xsigsuspend ¶
func Xsigtimedwait ¶
func Xsinh ¶
C documentation
/* sinh(x) = (exp(x) - 1/exp(x))/2 * = (exp(x)-1 + (exp(x)-1)/exp(x))/2 * = x + x^3/6 + o(x^5) */
func Xsockatmark ¶
func Xsocketpair ¶
func Xstrncasecmp_l ¶
func Xstrsignal ¶
func Xsync_file_range ¶
func Xsysctlbyname ¶
int sysctlbyname(const char *name, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
func Xtanh ¶
C documentation
/* tanh(x) = (exp(x) - exp(-x))/(exp(x) + exp(-x)) * = (exp(2*x) - 1)/(exp(2*x) - 1 + 2) * = (1 - exp(-2*x))/(exp(-2*x) - 1 + 2) */
func Xtextdomain ¶
func Xtimer_delete ¶
func Xtimer_getoverrun ¶
func Xtimer_settime ¶
func Xtimerfd_settime ¶
func Xtimespec_get ¶
C documentation
/* There is no other implemented value than TIME_UTC; all other values * are considered erroneous. */
func Xutimensat ¶
func Xuuid_generate_random ¶
void uuid_generate_random(uuid_t out);
func Xuuid_parse ¶
int uuid_parse( char *in, uuid_t uu);
func Xuuid_unparse ¶
void uuid_unparse(uuid_t uu, char *out);
func Xvsnprintf ¶
func Xvswprintf ¶
func Xwcscasecmp_l ¶
func Xwcsncasecmp_l ¶
func Y_IO_feof_unlocked ¶
func Y_IO_ferror_unlocked ¶
func Y_IO_getc_unlocked ¶
func Y___errno_location ¶
func Y__aio_close ¶
func Y__assert_fail ¶
func Y__atomic_exchangeInt8 ¶
func Y__atomic_exchangeInt16 ¶
func Y__atomic_exchangeInt32 ¶
func Y__atomic_exchangeInt64 ¶
func Y__atomic_exchangeUint8 ¶
func Y__atomic_fetch_addInt8 ¶
func Y__atomic_fetch_andInt8 ¶
func Y__atomic_fetch_orInt8 ¶
func Y__atomic_fetch_orInt16 ¶
func Y__atomic_fetch_orInt32 ¶
func Y__atomic_fetch_orInt64 ¶
func Y__atomic_fetch_orUint8 ¶
func Y__atomic_fetch_subInt8 ¶
func Y__atomic_fetch_xorInt8 ¶
func Y__atomic_loadInt8 ¶
func Y__atomic_loadInt16 ¶
func Y__atomic_loadInt32 ¶
func Y__atomic_loadInt64 ¶
func Y__atomic_loadUint8 ¶
func Y__atomic_loadUint16 ¶
func Y__atomic_loadUint32 ¶
func Y__atomic_loadUint64 ¶
func Y__atomic_storeInt8 ¶
func Y__atomic_storeInt16 ¶
func Y__atomic_storeInt32 ¶
func Y__atomic_storeInt64 ¶
func Y__atomic_storeUint8 ¶
func Y__atomic_storeUint16 ¶
func Y__atomic_storeUint32 ¶
func Y__atomic_storeUint64 ¶
func Y__block_all_sigs ¶
func Y__block_app_sigs ¶
func Y__builtin___memcpy_chk ¶
func Y__builtin___memset_chk ¶
func Y__builtin___strcat_chk ¶
func Y__builtin___strcpy_chk ¶
func Y__builtin_abort ¶
func Y__builtin_abort(t *TLS)
func Y__builtin_abs ¶
func Y__builtin_alloca ¶
func Y__builtin_bswap16 ¶
func Y__builtin_bswap32 ¶
func Y__builtin_bswap64 ¶
func Y__builtin_bzero ¶
func Y__builtin_clz ¶
func Y__builtin_clzl ¶
func Y__builtin_clzll ¶
func Y__builtin_copysign ¶
func Y__builtin_copysignf ¶
func Y__builtin_copysignl ¶
func Y__builtin_ctz ¶
func Y__builtin_ctzl ¶
func Y__builtin_exit ¶
func Y__builtin_expect ¶
func Y__builtin_expect(t *TLS, exp, c long) (_2 long)
func Y__builtin_fabs ¶
func Y__builtin_fabsf ¶
func Y__builtin_fabsl ¶
func Y__builtin_ffs ¶
func Y__builtin_fma ¶
func Y__builtin_free ¶
func Y__builtin_huge_val ¶
func Y__builtin_huge_valf ¶
func Y__builtin_inf ¶
func Y__builtin_inff ¶
func Y__builtin_infl ¶
func Y__builtin_isblank ¶
func Y__builtin_isnan ¶
func Y__builtin_isnanf ¶
func Y__builtin_isnanl ¶
func Y__builtin_isprint ¶
func Y__builtin_isunordered ¶
func Y__builtin_llabs ¶
func Y__builtin_log2 ¶
func Y__builtin_lrint ¶
func Y__builtin_lrintf ¶
func Y__builtin_lround ¶
func Y__builtin_malloc ¶
func Y__builtin_mmap ¶
func Y__builtin_nan ¶
func Y__builtin_nanf ¶
func Y__builtin_nanl ¶
func Y__builtin_popcount ¶
func Y__builtin_popcountl ¶
func Y__builtin_prefetch ¶
func Y__builtin_rintf ¶
func Y__builtin_round ¶
func Y__builtin_roundf ¶
func Y__builtin_snprintf ¶
func Y__builtin_sprintf ¶
func Y__builtin_strcmp ¶
func Y__builtin_strcpy ¶
func Y__builtin_trap ¶
func Y__builtin_trap(t *TLS)
func Y__builtin_trunc ¶
func Y__builtin_unreachable ¶
func Y__builtin_unreachable(t *TLS)
func Y__builtin_vsnprintf ¶
func Y__c11_atomic_loadInt8 ¶
func Y__c11_atomic_loadInt16 ¶
func Y__c11_atomic_loadInt32 ¶
func Y__c11_atomic_loadInt64 ¶
func Y__c11_atomic_loadUint8 ¶
func Y__c11_atomic_storeInt8 ¶
func Y__ccgo_dmesg ¶
func Y__ccgo_getMutexType ¶
func Y__ccgo_in6addr_anyp ¶
func Y__ccgo_sqlite3_log ¶
func Y__clock_gettime ¶
func Y__clock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r1 int32)
func Y__clock_nanosleep ¶
func Y__cmsg_nxthdr ¶
func Y__convert_scm_timestamps ¶
func Y__convert_scm_timestamps(tls *TLS, msg uintptr, csize Tsocklen_t)
func Y__crypt_blowfish ¶
func Y__crypt_des ¶
func Y__crypt_md5 ¶
func Y__crypt_sha256 ¶
func Y__crypt_sha512 ¶
func Y__ctype_b_loc ¶
func Y__ctype_tolower_loc ¶
func Y__ctype_toupper_loc ¶
func Y__des_setkey ¶
func Y__dn_expand ¶
func Y__dns_parse ¶
func Y__do_orphaned_stdio_locks ¶
func Y__do_orphaned_stdio_locks(tls *TLS)
func Y__env_rm_add ¶
func Y__errno_location ¶
func Y__fclose_ca ¶
func Y__fesetround ¶
func Y__fmodeflags ¶
func Y__fopen_rb_ca ¶
func Y__fpclassify ¶
func Y__fpclassifyf ¶
func Y__fpclassifyl ¶
func Y__freadable ¶
func Y__freading ¶
func Y__freadptrinc ¶
func Y__freelocale ¶
func Y__fseeko_unlocked ¶
func Y__fseterr ¶
func Y__fstatat ¶
func Y__funcs_on_quick_exit ¶
func Y__funcs_on_quick_exit(tls *TLS)
func Y__futimesat ¶
func Y__fwritable ¶
func Y__fwriting ¶
func Y__fxstatat ¶
func Y__get_handler_set ¶
func Y__get_resolv_conf ¶
func Y__getauxval ¶
func Y__getgr_a ¶
func Y__getgrent_a ¶
func Y__getpw_a ¶
func Y__getpwent_a ¶
func Y__gettextdomain ¶
func Y__h_errno_location ¶
func Y__init_ssp ¶
func Y__intscan ¶
func Y__isfinite ¶
func Y__isfinitef ¶
func Y__isfinitel ¶
func Y__isoc99_fscanf ¶
func Y__isoc99_fwscanf ¶
func Y__isoc99_sscanf ¶
func Y__isoc99_swscanf ¶
func Y__isoc99_vfscanf ¶
func Y__isoc99_vfwscanf ¶
func Y__isoc99_vsscanf ¶
func Y__isoc99_vswscanf ¶
func Y__lctrans_cur ¶
func Y__ldexp_cexp ¶
func Y__ldexp_cexp(tls *TLS, z complex128, expt int32) (r complex128)
func Y__libc_sigaction ¶
func Y__loc_is_allocated ¶
func Y__lockfile ¶
func Y__lookup_ipliteral ¶
func Y__lookup_name ¶
func Y__lookup_serv ¶
func Y__lsysinfo ¶
func Y__math_divzero ¶
func Y__math_divzerof ¶
func Y__math_invalid ¶
func Y__math_invalidf ¶
func Y__math_oflow ¶
func Y__math_oflowf ¶
func Y__math_uflow ¶
func Y__math_uflowf ¶
func Y__mkostemps ¶
func Y__nl_langinfo ¶
func Y__nscd_query ¶
func Y__ofl_add ¶
func Y__ofl_lock ¶
func Y__ofl_unlock ¶
func Y__ofl_unlock(tls *TLS)
func Y__posix_getopt ¶
func Y__procfdname ¶
func Y__qsort_r ¶
func Y__register_locked_file ¶
func Y__register_locked_file(tls *TLS, f uintptr, self Tpthread_t)
func Y__rem_pio2_large ¶
func Y__res_mkquery ¶
func Y__res_msend ¶
func Y__res_msend_rc ¶
func Y__res_send ¶
func Y__res_state ¶
func Y__reset_tls ¶
func Y__reset_tls(tls *TLS)
func Y__restore ¶
func Y__restore(tls *TLS)
func Y__restore_rt ¶
func Y__restore_rt(tls *TLS)
func Y__restore_sigs ¶
func Y__rtnetlink_enumerate ¶
func Y__secs_to_zone ¶
func Y__signbit ¶
func Y__signbitf ¶
func Y__signbitl ¶
func Y__stack_chk_fail ¶
func Y__stack_chk_fail(tls *TLS)
func Y__stack_chk_fail_local ¶
func Y__stack_chk_fail_local(tls *TLS)
func Y__stdio_close ¶
func Y__stdio_exit ¶
func Y__stdio_exit(tls *TLS)
func Y__stdio_exit_needed ¶
func Y__stdio_exit_needed(tls *TLS)
func Y__strcasecmp_l ¶
func Y__strftime_fmt_1 ¶
func Y__strncasecmp_l ¶
func Y__strtol_internal ¶
func Y__strtoll_internal ¶
func Y__strtoul_internal ¶
func Y__strtoull_internal ¶
func Y__sync_synchronize ¶
func Y__sync_synchronize(t *TLS)
func Y__syscall0 ¶
func Y__syscall0(tls *TLS, n long) (_2 long)
func Y__syscall1 ¶
func Y__syscall1(tls *TLS, n, a1 long) (_2 long)
func Y__syscall2 ¶
func Y__syscall2(tls *TLS, n, a1, a2 long) (_2 long)
func Y__syscall3 ¶
func Y__syscall3(tls *TLS, n, a1, a2, a3 long) (_2 long)
func Y__syscall4 ¶
func Y__syscall4(tls *TLS, n, a1, a2, a3, a4 long) (_2 long)
func Y__syscall5 ¶
func Y__syscall5(tls *TLS, n, a1, a2, a3, a4, a5 long) (_2 long)
func Y__syscall6 ¶
func Y__syscall6(tls *TLS, n, a1, a2, a3, a4, a5, a6 long) (_2 long)
func Y__syscall_ret ¶
func Y__tm_to_secs ¶
func Y__tm_to_tzname ¶
func Y__toread_needs_stdio_exit ¶
func Y__toread_needs_stdio_exit(tls *TLS)
func Y__towrite ¶
func Y__towrite_needs_stdio_exit ¶
func Y__towrite_needs_stdio_exit(tls *TLS)
func Y__tre_mem_alloc_impl ¶
func Y__tre_mem_destroy ¶
func Y__tre_mem_destroy(tls *TLS, mem Ttre_mem_t)
func Y__tsearch_balance ¶
func Y__unlist_locked_file ¶
func Y__unlockfile ¶
func Y__vm_wait ¶
func Y__vm_wait(tls *TLS)
func Y__xmknodat ¶
func Y__xpg_basename ¶
func Y__xpg_strerror_r ¶
func Y_flushlbf ¶
func Y_flushlbf(tls *TLS)
func Y_obstack_begin ¶
func Y_pthread_cleanup_pop ¶
func Y_pthread_cleanup_push ¶
func Yat_quick_exit ¶
func Ybacktrace_symbols_fd ¶
func Ybindtextdomain ¶
func Ycabs ¶
func Ycabs(tls *TLS, z complex128) (r float64)
func Ycabsl ¶
func Ycabsl(tls *TLS, z complex128) (r float64)
func Ycacos ¶
func Ycacos(tls *TLS, z complex128) (r complex128)
func Ycacosh ¶
func Ycacosh(tls *TLS, z complex128) (r complex128)
func Ycacoshl ¶
func Ycacoshl(tls *TLS, z complex128) (r complex128)
func Ycacosl ¶
func Ycacosl(tls *TLS, z complex128) (r complex128)
func Ycarg ¶
func Ycarg(tls *TLS, z complex128) (r float64)
func Ycargl ¶
func Ycargl(tls *TLS, z complex128) (r float64)
func Ycasin ¶
func Ycasin(tls *TLS, z complex128) (r1 complex128)
func Ycasinh ¶
func Ycasinh(tls *TLS, z complex128) (r complex128)
func Ycasinhl ¶
func Ycasinhl(tls *TLS, z complex128) (r complex128)
func Ycasinl ¶
func Ycasinl(tls *TLS, z complex128) (r complex128)
func Ycatan ¶
func Ycatan(tls *TLS, z complex128) (r complex128)
func Ycatanh ¶
func Ycatanh(tls *TLS, z complex128) (r complex128)
func Ycatanhl ¶
func Ycatanhl(tls *TLS, z complex128) (r complex128)
func Ycatanl ¶
func Ycatanl(tls *TLS, z complex128) (r complex128)
func Yccos ¶
func Yccos(tls *TLS, z complex128) (r complex128)
func Yccosh ¶
func Yccosh(tls *TLS, z complex128) (r complex128)
func Yccoshl ¶
func Yccoshl(tls *TLS, z complex128) (r complex128)
func Yccosl ¶
func Yccosl(tls *TLS, z complex128) (r complex128)
func Ycexp ¶
func Ycexp(tls *TLS, z complex128) (r complex128)
func Ycexpl ¶
func Ycexpl(tls *TLS, z complex128) (r complex128)
func Ycfmakeraw ¶
func Ycimag ¶
func Ycimag(tls *TLS, z complex128) (r float64)
func Ycimagl ¶
func Ycimagl(tls *TLS, z complex128) (r float64)
func Yclearerr_unlocked ¶
func Yclock_adjtime ¶
func Yclock_adjtime(tls *TLS, clock_id Tclockid_t, utx uintptr) (r1 int32)
func Yclock_getres ¶
func Yclock_getres(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Yclock_gettime ¶
func Yclock_gettime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Yclock_nanosleep ¶
func Yclock_settime ¶
func Yclock_settime(tls *TLS, clk Tclockid_t, ts uintptr) (r int32)
func Yclog ¶
func Yclog(tls *TLS, z complex128) (r1 complex128)
func Yclogl ¶
func Yclogl(tls *TLS, z complex128) (r complex128)
func Yconj ¶
func Yconj(tls *TLS, z complex128) (r complex128)
func Yconjl ¶
func Yconjl(tls *TLS, z complex128) (r complex128)
func Ycpow ¶
func Ycpow(tls *TLS, z complex128, c complex128) (r complex128)
func Ycpowl ¶
func Ycpowl(tls *TLS, z complex128, c complex128) (r complex128)
func Ycproj ¶
func Ycproj(tls *TLS, z complex128) (r complex128)
func Ycprojl ¶
func Ycprojl(tls *TLS, z complex128) (r complex128)
func Ycreal ¶
func Ycreal(tls *TLS, z complex128) (r float64)
func Ycreall ¶
func Ycreall(tls *TLS, z complex128) (r float64)
func Ycsin ¶
func Ycsin(tls *TLS, z complex128) (r complex128)
func Ycsinh ¶
func Ycsinh(tls *TLS, z complex128) (r complex128)
func Ycsinhl ¶
func Ycsinhl(tls *TLS, z complex128) (r complex128)
func Ycsinl ¶
func Ycsinl(tls *TLS, z complex128) (r complex128)
func Ycsqrt ¶
func Ycsqrt(tls *TLS, z complex128) (r complex128)
func Ycsqrtl ¶
func Ycsqrtl(tls *TLS, z complex128) (r complex128)
func Yctan ¶
func Yctan(tls *TLS, z complex128) (r complex128)
func Yctanh ¶
func Yctanh(tls *TLS, z complex128) (r complex128)
func Yctanhl ¶
func Yctanhl(tls *TLS, z complex128) (r complex128)
func Yctanl ¶
func Yctanl(tls *TLS, z complex128) (r complex128)
func Ydcgettext ¶
func Ydcngettext ¶
func Ydn_expand ¶
func Ydngettext ¶
func Yendhostent ¶
func Yendhostent(tls *TLS)
func Yendmntent ¶
func Yendnetent ¶
func Yendnetent(tls *TLS)
func Yendprotoent ¶
func Yendprotoent(tls *TLS)
func Yendservent ¶
func Yendservent(tls *TLS)
func Yendusershell ¶
func Yendusershell(tls *TLS)
func Yendutxent ¶
func Yendutxent(tls *TLS)
func Yepoll_create ¶
func Yepoll_create1 ¶
func Yepoll_pwait ¶
func Yether_aton ¶
func Yether_ntoa ¶
func Yeventfd_write ¶
func Yeventfd_write(tls *TLS, fd int32, _value Teventfd_t) (r int32)
func Yexplicit_bzero ¶
func Yfaccessat ¶
func Yfallocate ¶
func Yfanotify_mark ¶
func Yfdatasync ¶
func Yfdopendir ¶
func Yfeclearexcept ¶
func Yfegetround ¶
func Yfeof_unlocked ¶
func Yferaiseexcept ¶
func Yferror_unlocked ¶
func Yfetestexcept ¶
func Yfflush_unlocked ¶
func Yfgetc_unlocked ¶
func Yfgetgrent ¶
func Yfgetpwent ¶
func Yfileno_unlocked ¶
func Yflockfile ¶
func Yfopencookie ¶
func Yfopencookie(tls *TLS, cookie uintptr, mode uintptr, iofuncs Tcookie_io_functions_t) (r uintptr)
func Yfreeaddrinfo ¶
func Yfreeifaddrs ¶
func Yfreelocale ¶
func Yfsetxattr ¶
func Yftrylockfile ¶
func Yfts64_close ¶
func Yfts64_open ¶
func Yfts64_read ¶
func Yfts_close ¶
func Yfunlockfile ¶
func Ygai_strerror ¶
func Yget_avphys_pages ¶
func Yget_current_dir_name ¶
func Yget_nprocs ¶
func Yget_nprocs_conf ¶
func Yget_phys_pages ¶
func Ygetaddrinfo ¶
func Ygetauxval ¶
func Ygetc_unlocked ¶
func Ygetchar_unlocked ¶
func Ygetdtablesize ¶
func Ygetgrgid_r ¶
func Ygetgrnam_r ¶
func Ygetgrouplist ¶
func Ygethostbyaddr ¶
func Ygethostbyaddr(tls *TLS, a uintptr, l Tsocklen_t, af int32) (r uintptr)
func Ygethostbyaddr_r ¶
func Ygethostbyname ¶
func Ygethostbyname2_r ¶
func Ygethostbyname_r ¶
func Ygethostent ¶
func Ygethostid ¶
func Ygetifaddrs ¶
func Ygetmntent ¶
func Ygetmntent_r ¶
func Ygetnameinfo ¶
func Ygetnameinfo(tls *TLS, sa uintptr, sl Tsocklen_t, node uintptr, nodelen Tsocklen_t, serv uintptr, servlen Tsocklen_t, flags int32) (r int32)
func Ygetnetbyname ¶
func Ygetnetent ¶
func Ygetopt_long ¶
func Ygetopt_long_only ¶
func Ygetpagesize ¶
func Ygetprotobyname ¶
func Ygetprotobynumber ¶
func Ygetprotoent ¶
func Ygetpwnam_r ¶
func Ygetpwuid_r ¶
func Ygetservbyname_r ¶
func Ygetservent ¶
func Ygetsockopt ¶
func Ygetusershell ¶
func Ygetutline ¶
func Ygetutxent ¶
func Ygetutxline ¶
func Yhstrerror ¶
func Yiconv_close ¶
func Yif_freenameindex ¶
func Yif_nameindex ¶
func Yif_nametoindex ¶
func Yinet_ntoa ¶
func Yinet_ntop ¶
func Yinitstate_r ¶
func Yinotify_add_watch ¶
func Yinotify_init ¶
func Yinotify_init1 ¶
func Yisastream ¶
func Yissetugid ¶
func Yiswxdigit ¶
func Ylocaleconv ¶
func Ylocaltime ¶
func Ylogin_tty ¶
func Ylsetxattr ¶
func Ymkstemp64 ¶
func Ymunlockall ¶
func Yname_to_handle_at ¶
func Ynl_langinfo ¶
func Yns_initparse ¶
func Yns_name_uncompress ¶
func Yns_parserr ¶
func Yns_skiprr ¶
func Yobstack_free ¶
func Yobstack_vprintf ¶
func Yopen_by_handle_at ¶
func Ypersonality ¶
func Yposix_fadvise ¶
func Yposix_fallocate ¶
func Yposix_madvise ¶
func Yposix_openpt ¶
func Yposix_spawnattr_init ¶
func Ypthread_atfork ¶
func Ypthread_attr_destroy ¶
func Ypthread_attr_init ¶
func Ypthread_attr_setscope ¶
func Ypthread_cleanup_pop ¶
func Ypthread_cleanup_push ¶
func Ypthread_cond_broadcast ¶
func Ypthread_cond_destroy ¶
func Ypthread_cond_init ¶
func Ypthread_cond_signal ¶
func Ypthread_cond_timedwait ¶
func Ypthread_cond_wait ¶
func Ypthread_create ¶
func Ypthread_detach ¶
func Ypthread_equal ¶
func Ypthread_exit ¶
func Ypthread_getspecific ¶
func Ypthread_getspecific(tls *TLS, k Tpthread_key_t) (_2 uintptr)
func Ypthread_join ¶
func Ypthread_join(tls *TLS, t Tpthread_t, res uintptr) (r int32)
func Ypthread_key_delete ¶
func Ypthread_key_delete(tls *TLS, k Tpthread_key_t) (_2 int32)
func Ypthread_mutex_destroy ¶
func Ypthread_mutex_init ¶
func Ypthread_mutex_lock ¶
func Ypthread_mutex_trylock ¶
func Ypthread_mutex_unlock ¶
func Ypthread_mutexattr_init ¶
func Ypthread_self ¶
func Ypthread_setcancelstate ¶
func Ypthread_setspecific ¶
func Ypthread_setspecific(tls *TLS, k Tpthread_key_t, x uintptr) (_3 int32)
func Yputchar_unlocked ¶
func Ypututline ¶
func Ypututxline ¶
func Yquick_exit ¶
func Yreaddir64 ¶
func Yremap_file_pages ¶
func Yrenameat2 ¶
func Yres_mkquery ¶
func Yrewinddir ¶
func Ysched_yield ¶
func Ysecure_getenv ¶
func Ysemtimedop ¶
func Ysethostent ¶
func Ysetlinebuf ¶
func Ysetlogmask ¶
func Ysetnetent ¶
func Ysetprotoent ¶
func Ysetservent ¶
func Ysetsockopt ¶
func Ysetusershell ¶
func Ysetusershell(tls *TLS)
func Ysetutxent ¶
func Ysetutxent(tls *TLS)
func Yshm_unlink ¶
func Ysigemptyset ¶
func Ysigfillset ¶
func Ysigisemptyset ¶
func Ysignificand ¶
func Ysignificandf ¶
func Ysigpending ¶
func Ysigsuspend ¶
func Ysigtimedwait ¶
func Ysockatmark ¶
func Ysocketpair ¶
func Ystrncasecmp_l ¶
func Ystrsignal ¶
func Ysync_file_range ¶
func Ysysctlbyname ¶
func Ytextdomain ¶
func Ytimer_delete ¶
func Ytimer_getoverrun ¶
func Ytimer_settime ¶
func Ytimerfd_settime ¶
func Yutimensat ¶
func Yuuid_copy ¶
func Yuuid_generate_random ¶
func Yuuid_unparse ¶
func Yvsnprintf ¶
func Yvswprintf ¶
func Ywcscasecmp_l ¶
func Ywcsncasecmp_l ¶
Types ¶
type Int128 ¶
func Int128FromFloat32 ¶
func Int128FromFloat64 ¶
func Int128FromInt8 ¶
func Int128FromInt16 ¶
func Int128FromInt32 ¶
func Int128FromInt64 ¶
func Int128FromUint8 ¶
func Int128FromUint16 ¶
func Int128FromUint32 ¶
func Int128FromUint64 ¶
func Int128FromUint128 ¶
type LongjmpRetval ¶
type LongjmpRetval int32
type MemAllocatorStat ¶
func MemStat ¶
func MemStat() MemAllocatorStat
MemStat returns the global memory allocator statistics. should be compiled with the memory.counters build tag for the data to be available.
type MemAuditError ¶
func MemAudit ¶
func MemAudit() (r []*MemAuditError)
func (*MemAuditError) Error ¶
func (e *MemAuditError) Error() string
type PerfCounter ¶
type PerfCounter struct {
// contains filtered or unexported fields
}
func NewPerfCounter ¶
func NewPerfCounter(labels []string) *PerfCounter
func (*PerfCounter) Clear ¶
func (c *PerfCounter) Clear()
func (*PerfCounter) Disable ¶
func (c *PerfCounter) Disable()
func (*PerfCounter) Enable ¶
func (c *PerfCounter) Enable()
func (*PerfCounter) Inc ¶
func (c *PerfCounter) Inc(n int)
func (*PerfCounter) IncN ¶
func (c *PerfCounter) IncN(n, m int)
func (*PerfCounter) String ¶
func (c *PerfCounter) String() string
type RawMem ¶
type RawMem [1<<50 - 1]byte
RawMem represents the biggest byte array the runtime can handle
type StackCapture ¶
func NewStackCapture ¶
func NewStackCapture(depth int) *StackCapture
func (*StackCapture) Clear ¶
func (c *StackCapture) Clear()
func (*StackCapture) Disable ¶
func (c *StackCapture) Disable()
func (*StackCapture) Enable ¶
func (c *StackCapture) Enable()
func (*StackCapture) Record ¶
func (c *StackCapture) Record()
func (*StackCapture) String ¶
func (c *StackCapture) String() string
type TBF_word_signed ¶
type TBF_word_signed = int32
type TElf32_Addr ¶
type TElf32_Addr = uint32
type TElf32_Chdr ¶
type TElf32_Chdr = struct {
Fch_type TElf32_Word
Fch_size TElf32_Word
Fch_addralign TElf32_Word
}
type TElf32_Conflict ¶
type TElf32_Conflict = uint32
type TElf32_Dyn ¶
type TElf32_Dyn = struct {
Fd_tag TElf32_Sword
Fd_un struct {
Fd_ptr [0]TElf32_Addr
Fd_val TElf32_Word
}
}
type TElf32_Ehdr ¶
type TElf32_Ehdr = struct {
Fe_ident [16]uint8
Fe_type TElf32_Half
Fe_machine TElf32_Half
Fe_version TElf32_Word
Fe_entry TElf32_Addr
Fe_phoff TElf32_Off
Fe_shoff TElf32_Off
Fe_flags TElf32_Word
Fe_ehsize TElf32_Half
Fe_phentsize TElf32_Half
Fe_phnum TElf32_Half
Fe_shentsize TElf32_Half
Fe_shnum TElf32_Half
Fe_shstrndx TElf32_Half
}
type TElf32_Half ¶
type TElf32_Half = uint16
type TElf32_Lib ¶
type TElf32_Lib = struct {
Fl_name TElf32_Word
Fl_time_stamp TElf32_Word
Fl_checksum TElf32_Word
Fl_version TElf32_Word
Fl_flags TElf32_Word
}
type TElf32_Move ¶
type TElf32_Move = struct {
Fm_value TElf32_Xword
Fm_info TElf32_Word
Fm_poffset TElf32_Word
Fm_repeat TElf32_Half
Fm_stride TElf32_Half
}
type TElf32_Nhdr ¶
type TElf32_Nhdr = struct {
Fn_namesz TElf32_Word
Fn_descsz TElf32_Word
Fn_type TElf32_Word
}
type TElf32_Off ¶
type TElf32_Off = uint32
type TElf32_Phdr ¶
type TElf32_Phdr = struct {
Fp_type TElf32_Word
Fp_offset TElf32_Off
Fp_vaddr TElf32_Addr
Fp_paddr TElf32_Addr
Fp_filesz TElf32_Word
Fp_memsz TElf32_Word
Fp_flags TElf32_Word
Fp_align TElf32_Word
}
type TElf32_RegInfo ¶
type TElf32_RegInfo = struct {
Fri_gprmask TElf32_Word
Fri_cprmask [4]TElf32_Word
Fri_gp_value TElf32_Sword
}
type TElf32_Rel ¶
type TElf32_Rel = struct {
Fr_offset TElf32_Addr
Fr_info TElf32_Word
}
type TElf32_Rela ¶
type TElf32_Rela = struct {
Fr_offset TElf32_Addr
Fr_info TElf32_Word
Fr_addend TElf32_Sword
}
type TElf32_Relr ¶
type TElf32_Relr = uint32
type TElf32_Section ¶
type TElf32_Section = uint16
type TElf32_Shdr ¶
type TElf32_Shdr = struct {
Fsh_name TElf32_Word
Fsh_type TElf32_Word
Fsh_flags TElf32_Word
Fsh_addr TElf32_Addr
Fsh_offset TElf32_Off
Fsh_size TElf32_Word
Fsh_link TElf32_Word
Fsh_info TElf32_Word
Fsh_addralign TElf32_Word
Fsh_entsize TElf32_Word
}
type TElf32_Sword ¶
type TElf32_Sword = int32
type TElf32_Sxword ¶
type TElf32_Sxword = int64
type TElf32_Sym ¶
type TElf32_Sym = struct {
Fst_name TElf32_Word
Fst_value TElf32_Addr
Fst_size TElf32_Word
Fst_info uint8
Fst_other uint8
Fst_shndx TElf32_Section
}
type TElf32_Syminfo ¶
type TElf32_Syminfo = struct {
Fsi_boundto TElf32_Half
Fsi_flags TElf32_Half
}
type TElf32_Verdaux ¶
type TElf32_Verdaux = struct {
Fvda_name TElf32_Word
Fvda_next TElf32_Word
}
type TElf32_Verdef ¶
type TElf32_Verdef = struct {
Fvd_version TElf32_Half
Fvd_flags TElf32_Half
Fvd_ndx TElf32_Half
Fvd_cnt TElf32_Half
Fvd_hash TElf32_Word
Fvd_aux TElf32_Word
Fvd_next TElf32_Word
}
type TElf32_Vernaux ¶
type TElf32_Vernaux = struct {
Fvna_hash TElf32_Word
Fvna_flags TElf32_Half
Fvna_other TElf32_Half
Fvna_name TElf32_Word
Fvna_next TElf32_Word
}
type TElf32_Verneed ¶
type TElf32_Verneed = struct {
Fvn_version TElf32_Half
Fvn_cnt TElf32_Half
Fvn_file TElf32_Word
Fvn_aux TElf32_Word
Fvn_next TElf32_Word
}
type TElf32_Versym ¶
type TElf32_Versym = uint16
type TElf32_Word ¶
type TElf32_Word = uint32
type TElf32_Xword ¶
type TElf32_Xword = uint64
type TElf32_auxv_t ¶
type TElf32_gptab ¶
type TElf32_gptab = struct {
Fgt_entry [0]struct {
Fgt_g_value TElf32_Word
Fgt_bytes TElf32_Word
}
Fgt_header struct {
Fgt_current_g_value TElf32_Word
Fgt_unused TElf32_Word
}
}
type TElf64_Addr ¶
type TElf64_Addr = uint64
type TElf64_Chdr ¶
type TElf64_Chdr = struct {
Fch_type TElf64_Word
Fch_reserved TElf64_Word
Fch_size TElf64_Xword
Fch_addralign TElf64_Xword
}
type TElf64_Dyn ¶
type TElf64_Dyn = struct {
Fd_tag TElf64_Sxword
Fd_un struct {
Fd_ptr [0]TElf64_Addr
Fd_val TElf64_Xword
}
}
type TElf64_Ehdr ¶
type TElf64_Ehdr = struct {
Fe_ident [16]uint8
Fe_type TElf64_Half
Fe_machine TElf64_Half
Fe_version TElf64_Word
Fe_entry TElf64_Addr
Fe_phoff TElf64_Off
Fe_shoff TElf64_Off
Fe_flags TElf64_Word
Fe_ehsize TElf64_Half
Fe_phentsize TElf64_Half
Fe_phnum TElf64_Half
Fe_shentsize TElf64_Half
Fe_shnum TElf64_Half
Fe_shstrndx TElf64_Half
}
type TElf64_Half ¶
type TElf64_Half = uint16
type TElf64_Lib ¶
type TElf64_Lib = struct {
Fl_name TElf64_Word
Fl_time_stamp TElf64_Word
Fl_checksum TElf64_Word
Fl_version TElf64_Word
Fl_flags TElf64_Word
}
type TElf64_Move ¶
type TElf64_Move = struct {
Fm_value TElf64_Xword
Fm_info TElf64_Xword
Fm_poffset TElf64_Xword
Fm_repeat TElf64_Half
Fm_stride TElf64_Half
}
type TElf64_Nhdr ¶
type TElf64_Nhdr = struct {
Fn_namesz TElf64_Word
Fn_descsz TElf64_Word
Fn_type TElf64_Word
}
type TElf64_Off ¶
type TElf64_Off = uint64
type TElf64_Phdr ¶
type TElf64_Phdr = struct {
Fp_type TElf64_Word
Fp_flags TElf64_Word
Fp_offset TElf64_Off
Fp_vaddr TElf64_Addr
Fp_paddr TElf64_Addr
Fp_filesz TElf64_Xword
Fp_memsz TElf64_Xword
Fp_align TElf64_Xword
}
type TElf64_Rel ¶
type TElf64_Rel = struct {
Fr_offset TElf64_Addr
Fr_info TElf64_Xword
}
type TElf64_Rela ¶
type TElf64_Rela = struct {
Fr_offset TElf64_Addr
Fr_info TElf64_Xword
Fr_addend TElf64_Sxword
}
type TElf64_Relr ¶
type TElf64_Relr = uint64
type TElf64_Section ¶
type TElf64_Section = uint16
type TElf64_Shdr ¶
type TElf64_Shdr = struct {
Fsh_name TElf64_Word
Fsh_type TElf64_Word
Fsh_flags TElf64_Xword
Fsh_addr TElf64_Addr
Fsh_offset TElf64_Off
Fsh_size TElf64_Xword
Fsh_link TElf64_Word
Fsh_info TElf64_Word
Fsh_addralign TElf64_Xword
Fsh_entsize TElf64_Xword
}
type TElf64_Sword ¶
type TElf64_Sword = int32
type TElf64_Sxword ¶
type TElf64_Sxword = int64
type TElf64_Sym ¶
type TElf64_Sym = struct {
Fst_name TElf64_Word
Fst_info uint8
Fst_other uint8
Fst_shndx TElf64_Section
Fst_value TElf64_Addr
Fst_size TElf64_Xword
}
type TElf64_Syminfo ¶
type TElf64_Syminfo = struct {
Fsi_boundto TElf64_Half
Fsi_flags TElf64_Half
}
type TElf64_Verdaux ¶
type TElf64_Verdaux = struct {
Fvda_name TElf64_Word
Fvda_next TElf64_Word
}
type TElf64_Verdef ¶
type TElf64_Verdef = struct {
Fvd_version TElf64_Half
Fvd_flags TElf64_Half
Fvd_ndx TElf64_Half
Fvd_cnt TElf64_Half
Fvd_hash TElf64_Word
Fvd_aux TElf64_Word
Fvd_next TElf64_Word
}
type TElf64_Vernaux ¶
type TElf64_Vernaux = struct {
Fvna_hash TElf64_Word
Fvna_flags TElf64_Half
Fvna_other TElf64_Half
Fvna_name TElf64_Word
Fvna_next TElf64_Word
}
type TElf64_Verneed ¶
type TElf64_Verneed = struct {
Fvn_version TElf64_Half
Fvn_cnt TElf64_Half
Fvn_file TElf64_Word
Fvn_aux TElf64_Word
Fvn_next TElf64_Word
}
type TElf64_Versym ¶
type TElf64_Versym = uint16
type TElf64_Word ¶
type TElf64_Word = uint32
type TElf64_Xword ¶
type TElf64_Xword = uint64
type TElf64_auxv_t ¶
type TElf_MIPS_ABIFlags_v0 ¶
type TElf_MIPS_ABIFlags_v0 = struct {
Fversion TElf32_Half
Fisa_level uint8
Fisa_rev uint8
Fgpr_size uint8
Fcpr1_size uint8
Fcpr2_size uint8
Ffp_abi uint8
Fisa_ext TElf32_Word
Fases TElf32_Word
Fflags1 TElf32_Word
Fflags2 TElf32_Word
}
type TElf_Options ¶
type TElf_Options = struct {
Fkind uint8
Fsize uint8
Fsection TElf32_Section
Finfo TElf32_Word
}
type TElf_Options_Hw ¶
type TElf_Options_Hw = struct {
Fhwp_flags1 TElf32_Word
Fhwp_flags2 TElf32_Word
}
type TElf_Symndx ¶
type TElf_Symndx = uint32
type TFILE ¶
type TFILE = struct {
Fflags uint32
Frpos uintptr
Frend uintptr
Fclose1 uintptr
Fwend uintptr
Fwpos uintptr
Fmustbezero_1 uintptr
Fwbase uintptr
Fread uintptr
Fwrite uintptr
Fseek uintptr
Fbuf uintptr
Fbuf_size Tsize_t
Fprev uintptr
Fnext uintptr
Ffd int32
Fpipe_pid int32
Flockcount int64
Fmode int32
Flock int32
Flbf int32
Foff Toff_t
Fgetln_buf uintptr
Fmustbezero_2 uintptr
Fshend uintptr
Fshlim Toff_t
Fshcnt Toff_t
Fprev_locked uintptr
Fnext_locked uintptr
Flocale uintptr
}
type TLS ¶
type TLS struct {
ID int32
// contains filtered or unexported fields
}
TLS emulates thread local storage. TLS is not safe for concurrent use by multiple goroutines.
func NewTLS ¶
func NewTLS() (r *TLS)
NewTLS returns a newly created TLS that must be eventually closed to prevent resource leaks.
func (*TLS) Alloc ¶
Alloc allocates n bytes in tls's local storage. Calls to Alloc() must be strictly paired with calls to TLS.Free on function exit. That also means any memory from Alloc must not be used after a function returns.
The order matters. This is ok:
p := tls.Alloc(11) q := tls.Alloc(22) tls.Free(22) // q is no more usable here. tls.Free(11) // p is no more usable here.
This is not correct:
tls.Alloc(11) tls.Alloc(22) tls.Free(11) tls.Free(22)
func (*TLS) AllocaEntry ¶
func (tls *TLS) AllocaEntry()
AllocaEntry must be called early on function entry when the function calls or may call alloca(3).
func (*TLS) AllocaExit ¶
func (tls *TLS) AllocaExit()
AllocaExit must be defer-called on function exit when the function calls or may call alloca(3).
func (*TLS) PopJumpBuffer ¶
func (*TLS) PushJumpBuffer ¶
func (*TLS) StackSlots ¶
StackSlots reports the number of tls stack slots currently in use.
type T_G_fpos64_t ¶
type T_G_fpos64_t = Tfpos_t
type T_IO_cookie_io_functions_t ¶
type T_IO_cookie_io_functions_t = Tcookie_io_functions_t
type T_ns_flagdata ¶
type Targ ¶
type Targ = struct {
Ff [0]float64
Fp [0]uintptr
Fi Tuintmax_t
}
type Tarpd_request ¶
type Tarpreq_old ¶
type Tblksize_t ¶
type Tblksize_t = int64
type Tclockid_t ¶
type Tclockid_t = int32
type Tcmsghdr ¶
type Tcmsghdr = struct {
Fcmsg_len Tsocklen_t
F__pad1 int32
Fcmsg_level int32
Fcmsg_type int32
}
type Tcompiler_defines_long_double_incorrectly ¶
type Tcompiler_defines_long_double_incorrectly = [1]int8
C documentation
/* Do not override this check. The floating point printing code below * depends on the float.h constants being right. If they are wrong, it * may overflow the stack. */
type Tcookie_FILE ¶
type Tcookie_FILE = struct {
}
type Tcookie_io_functions_t ¶
type Tcookie_io_functions_t = struct {
}
type Tcpu_set_t ¶
type Tcpu_set_t = struct {
F__bits [16]uint64
}
type Tcrypt_data ¶
type Tdirstream_buf_alignment_check ¶
type Tdirstream_buf_alignment_check = [1]int8
type Tdl_phdr_info ¶
type Tdl_phdr_info = struct {
Fdlpi_addr TElf64_Addr
Fdlpi_name uintptr
Fdlpi_phdr uintptr
Fdlpi_phnum TElf64_Half
Fdlpi_adds uint64
Fdlpi_subs uint64
Fdlpi_tls_modid Tsize_t
Fdlpi_tls_data uintptr
}
type Tepoll_data ¶
type Tepoll_data = Tepoll_data_t
type Tepoll_data_t ¶
type Tepoll_event ¶
type Tepoll_event = struct {
Fevents Tuint32_t
Fdata Tepoll_data_t
}
type Terrmsgstr_t ¶
type Terrmsgstr_t = struct {
Fstr0 [21]int8
FstrEILSEQ [22]int8
FstrEDOM [13]int8
FstrERANGE [25]int8
FstrENOTTY [10]int8
FstrEACCES [18]int8
FstrEPERM [24]int8
FstrENOENT [26]int8
FstrESRCH [16]int8
FstrEEXIST [12]int8
FstrEOVERFLOW [30]int8
FstrENOSPC [24]int8
FstrENOMEM [14]int8
FstrEBUSY [14]int8
FstrEINTR [24]int8
FstrEAGAIN [33]int8
FstrESPIPE [13]int8
FstrEXDEV [18]int8
FstrEROFS [22]int8
FstrENOTEMPTY [20]int8
FstrECONNRESET [25]int8
FstrETIMEDOUT [20]int8
FstrECONNREFUSED [19]int8
FstrEHOSTDOWN [13]int8
FstrEHOSTUNREACH [20]int8
FstrEADDRINUSE [15]int8
FstrEPIPE [12]int8
FstrEIO [10]int8
FstrENXIO [26]int8
FstrENOTBLK [22]int8
FstrENODEV [15]int8
FstrENOTDIR [16]int8
FstrEISDIR [15]int8
FstrETXTBSY [15]int8
FstrENOEXEC [18]int8
FstrEINVAL [17]int8
FstrE2BIG [23]int8
FstrELOOP [19]int8
FstrENAMETOOLONG [18]int8
FstrENFILE [30]int8
FstrEMFILE [30]int8
FstrEBADF [20]int8
FstrECHILD [17]int8
FstrEFAULT [12]int8
FstrEFBIG [15]int8
FstrEMLINK [15]int8
FstrENOLCK [19]int8
FstrEDEADLK [30]int8
FstrENOTRECOVERABLE [22]int8
FstrEOWNERDEAD [20]int8
FstrECANCELED [19]int8
FstrENOSYS [25]int8
FstrENOMSG [27]int8
FstrEIDRM [19]int8
FstrENOSTR [20]int8
FstrENODATA [18]int8
FstrETIME [15]int8
FstrENOSR [25]int8
FstrENOLINK [22]int8
FstrEPROTO [15]int8
FstrEBADMSG [12]int8
FstrEBADFD [29]int8
FstrENOTSOCK [13]int8
FstrEDESTADDRREQ [29]int8
FstrEMSGSIZE [18]int8
FstrEPROTOTYPE [31]int8
FstrENOPROTOOPT [23]int8
FstrEPROTONOSUPPORT [23]int8
FstrESOCKTNOSUPPORT [26]int8
FstrENOTSUP [14]int8
FstrEPFNOSUPPORT [30]int8
FstrEAFNOSUPPORT [41]int8
FstrEADDRNOTAVAIL [22]int8
FstrENETDOWN [16]int8
FstrENETUNREACH [20]int8
FstrENETRESET [28]int8
FstrECONNABORTED [19]int8
FstrENOBUFS [26]int8
FstrEISCONN [20]int8
FstrENOTCONN [21]int8
FstrESHUTDOWN [34]int8
FstrEALREADY [30]int8
FstrEINPROGRESS [22]int8
FstrESTALE [18]int8
FstrEREMOTEIO [17]int8
FstrEDQUOT [15]int8
FstrENOMEDIUM [16]int8
FstrEMEDIUMTYPE [18]int8
FstrEMULTIHOP [19]int8
FstrENOKEY [27]int8
FstrEKEYEXPIRED [16]int8
FstrEKEYREVOKED [21]int8
FstrEKEYREJECTED [28]int8
}
type Tether_addr ¶
type Tether_addr = struct {
Fether_addr_octet [6]Tuint8_t
}
type Tether_arp ¶
type Tether_header ¶
type Teventfd_t ¶
type Teventfd_t = uint64
type Texp2f_data ¶
type Texpanded_key ¶
type Tf_owner_ex ¶
type Tfanotify_event_info_fid ¶
type Tfanotify_event_info_fid = struct {
Fhdr Tfanotify_event_info_header
Ffsid Tfsid_t
}
type Tfanotify_response ¶
type Tfexcept_t ¶
type Tfexcept_t = uint16
type Tfile_handle ¶
type Tfpregset_t ¶
type Tfpregset_t = uintptr
type Tfsblkcnt_t ¶
type Tfsblkcnt_t = uint64
type Tfsfilcnt_t ¶
type Tfsfilcnt_t = uint64
type Tgregset_t ¶
type Tgregset_t = [23]int64
type Tgroup_filter ¶
type Tgroup_filter = struct {
Fgf_interface Tuint32_t
Fgf_group Tsockaddr_storage
Fgf_fmode Tuint32_t
Fgf_numsrc Tuint32_t
Fgf_slist [1]Tsockaddr_storage
}
type Tgroup_req ¶
type Tgroup_req = struct {
Fgr_interface Tuint32_t
Fgr_group Tsockaddr_storage
}
type Tgroup_source_req ¶
type Tgroup_source_req = struct {
Fgsr_interface Tuint32_t
Fgsr_group Tsockaddr_storage
Fgsr_source Tsockaddr_storage
}
type Thsearch_data ¶
type Tif_nameindex ¶
type Tifaddrmsg ¶
type Tifaddrs_ctx ¶
type Tifaddrs_storage ¶
type Tifinfomsg ¶
type Tifnameindexctx ¶
type Tifnamemap ¶
type Tifreq ¶
type Tifreq = struct {
Fifr_ifrn struct {
Fifrn_name [16]int8
}
Fifr_ifru struct {
Fifru_dstaddr [0]Tsockaddr
Fifru_broadaddr [0]Tsockaddr
Fifru_netmask [0]Tsockaddr
Fifru_hwaddr [0]Tsockaddr
Fifru_flags [0]int16
Fifru_ivalue [0]int32
Fifru_mtu [0]int32
Fifru_map [0]Tifmap
Fifru_slave [0][16]int8
Fifru_newname [0][16]int8
Fifru_data [0]uintptr
Fifru_addr Tsockaddr
F__ccgo_pad12 [8]byte
}
}
type Timaxdiv_t ¶
type Tin6_pktinfo ¶
type Tin_addr ¶
type Tin_addr = struct {
Fs_addr Tin_addr_t
}
func Xinet_makeaddr ¶
func Xinet_makeaddr(tls *TLS, n Tin_addr_t, h Tin_addr_t) (r Tin_addr)
func Yinet_makeaddr ¶
func Yinet_makeaddr(tls *TLS, n Tin_addr_t, h Tin_addr_t) (r Tin_addr)
type Tin_addr_t ¶
type Tin_addr_t = uint32
func Xinet_addr ¶
func Xinet_addr(tls *TLS, p uintptr) (r Tin_addr_t)
func Xinet_lnaof ¶
func Xinet_lnaof(tls *TLS, in Tin_addr) (r Tin_addr_t)
func Xinet_netof ¶
func Xinet_netof(tls *TLS, in Tin_addr) (r Tin_addr_t)
func Xinet_network ¶
func Xinet_network(tls *TLS, p uintptr) (r Tin_addr_t)
func Yinet_addr ¶
func Yinet_addr(tls *TLS, p uintptr) (r Tin_addr_t)
func Yinet_lnaof ¶
func Yinet_lnaof(tls *TLS, in Tin_addr) (r Tin_addr_t)
func Yinet_netof ¶
func Yinet_netof(tls *TLS, in Tin_addr) (r Tin_addr_t)
func Yinet_network ¶
func Yinet_network(tls *TLS, p uintptr) (r Tin_addr_t)
type Tin_pktinfo ¶
type Tin_port_t ¶
type Tin_port_t = uint16
type Tinotify_event ¶
type Tint_fast8_t ¶
type Tint_fast8_t = int8
type Tint_fast16_t ¶
type Tint_fast16_t = int32
type Tint_fast32_t ¶
type Tint_fast32_t = int32
type Tint_fast64_t ¶
type Tint_fast64_t = int64
type Tint_least8_t ¶
type Tint_least8_t = int8
type Tint_least16_t ¶
type Tint_least16_t = int16
type Tint_least32_t ¶
type Tint_least32_t = int32
type Tint_least64_t ¶
type Tint_least64_t = int64
type Tioctl_compat_map ¶
type Tip6_mtuinfo ¶
type Tip6_mtuinfo = struct {
Fip6m_addr Tsockaddr_in6
Fip6m_mtu Tuint32_t
}
type Tip_mreq_source ¶
type Tip_msfilter ¶
type Tipc_perm1 ¶
type Tipv6_mreq ¶
type Titimerspec ¶
type Titimerval ¶
type Tk_sigaction ¶
type Tkstat ¶
type Tkstat = struct {
Fst_dev Tdev_t
Fst_ino Tino_t
Fst_nlink Tnlink_t
Fst_mode Tmode_t
Fst_uid Tuid_t
Fst_gid Tgid_t
F__pad0 uint32
Fst_rdev Tdev_t
Fst_size Toff_t
Fst_blksize Tblksize_t
Fst_blocks Tblkcnt_t
Fst_atime_sec int64
Fst_atime_nsec int64
Fst_mtime_sec int64
Fst_mtime_nsec int64
Fst_ctime_sec int64
Fst_ctime_nsec int64
F__unused [3]int64
}
type Tktimex ¶
type Tktimex = struct {
Fmodes uint32
Foffset int64
Ffreq int64
Fmaxerror int64
Festerror int64
Fstatus int32
Fconstant int64
Fprecision int64
Ftolerance int64
Ftime_sec int64
Ftime_usec int64
Ftick int64
Fppsfreq int64
Fjitter int64
Fshift int32
Fstabil int64
Fjitcnt int64
Fcalcnt int64
Ferrcnt int64
Fstbcnt int64
Ftai int32
F__padding [11]int32
}
type Tktimex64 ¶
type Tktimex64 = struct {
Fmodes uint32
F__ccgo4 uint32
Foffset int64
Ffreq int64
Fmaxerror int64
Festerror int64
Fstatus int32
F__ccgo44 uint32
Fconstant int64
Fprecision int64
Ftolerance int64
Ftime_sec int64
Ftime_usec int64
Ftick int64
Fppsfreq int64
Fjitter int64
Fshift int32
F__ccgo116 uint32
Fstabil int64
Fjitcnt int64
Fcalcnt int64
Ferrcnt int64
Fstbcnt int64
Ftai int32
F__padding [11]int32
}
type Tlconv ¶
type Tlconv = struct {
Fdecimal_point uintptr
Fthousands_sep uintptr
Fgrouping uintptr
Fint_curr_symbol uintptr
Fcurrency_symbol uintptr
Fmon_decimal_point uintptr
Fmon_thousands_sep uintptr
Fmon_grouping uintptr
Fpositive_sign uintptr
Fnegative_sign uintptr
Fint_frac_digits int8
Ffrac_digits int8
Fp_cs_precedes int8
Fp_sep_by_space int8
Fn_cs_precedes int8
Fn_sep_by_space int8
Fp_sign_posn int8
Fn_sign_posn int8
Fint_p_cs_precedes int8
Fint_p_sep_by_space int8
Fint_n_cs_precedes int8
Fint_n_sep_by_space int8
Fint_p_sign_posn int8
Fint_n_sign_posn int8
}
type Tlink_map ¶
type Tlink_map = struct {
Fl_addr TElf64_Addr
Fl_name uintptr
Fl_ld uintptr
Fl_next uintptr
Fl_prev uintptr
}
type Tlocale_t ¶
type Tlocale_t = uintptr
func X__duplocale ¶
func X__newlocale ¶
func X__uselocale ¶
func Xduplocale ¶
func Xuselocale ¶
func Y__duplocale ¶
func Y__newlocale ¶
func Y__uselocale ¶
func Yduplocale ¶
func Yuselocale ¶
type Tlog2_data ¶
type Tlog2f_data ¶
type Tlogf_data ¶
type Tmbstate_t ¶
type Tmcontext_t ¶
type Tmcontext_t = struct {
F__space [32]uint64
}
type Tmcontext_t1 ¶
type Tmcontext_t1 = struct {
Fgregs Tgregset_t
Ffpregs Tfpregset_t
F__reserved1 [8]uint64
}
type Tmsghdr ¶
type Tmsghdr = struct {
Fmsg_name uintptr
Fmsg_namelen Tsocklen_t
Fmsg_iov uintptr
Fmsg_iovlen int32
F__pad1 int32
Fmsg_control uintptr
Fmsg_controllen Tsocklen_t
F__pad2 int32
Fmsg_flags int32
}
type Tmsgqnum_t ¶
type Tmsgqnum_t = uint64
type Tneg ¶
type Tneg = struct {
Fnegate int32
Flen1 int32
Fa [64]Ttre_ctype_t
}
type Tns_cert_types ¶
type Tns_cert_types = int32
type Tns_key_types ¶
type Tns_key_types = int32
type Tns_opcode ¶
type Tns_opcode = int32
type Tns_tcp_tsig_state ¶
type Tns_tsig_key ¶
type Tns_update_operation ¶
type Tns_update_operation = int32
type Tntptimeval ¶
type Tposix_spawnattr_t ¶
type Tpow_log_data ¶
type Tpowf_log2_data ¶
type Tprctl_mm_map ¶
type Tprctl_mm_map = struct {
Fstart_code Tuint64_t
Fend_code Tuint64_t
Fstart_data Tuint64_t
Fend_data Tuint64_t
Fstart_brk Tuint64_t
Fbrk Tuint64_t
Fstart_stack Tuint64_t
Farg_start Tuint64_t
Farg_end Tuint64_t
Fenv_start Tuint64_t
Fenv_end Tuint64_t
Fauxv uintptr
Fauxv_size Tuint32_t
Fexe_fd Tuint32_t
}
type Tpthread_attr_t ¶
type Tpthread_barrier_t ¶
type Tpthread_barrierattr_t ¶
type Tpthread_barrierattr_t = struct {
F__attr uint32
}
type Tpthread_cond_t ¶
type Tpthread_condattr_t ¶
type Tpthread_condattr_t = struct {
F__attr uint32
}
type Tpthread_key_t ¶
type Tpthread_key_t = uint32
type Tpthread_mutex_t ¶
type Tpthread_mutexattr_t ¶
type Tpthread_mutexattr_t = struct {
F__attr uint32
}
type Tpthread_once_t ¶
type Tpthread_once_t = int32
type Tpthread_rwlock_t ¶
type Tpthread_rwlockattr_t ¶
type Tpthread_rwlockattr_t = struct {
F__attr [2]uint32
}
type Tpthread_spinlock_t ¶
type Tpthread_spinlock_t = int32
type Tpthread_t ¶
type Tpthread_t = uintptr
type Tptrdiff_t ¶
type Tptrdiff_t = int64
type Tr_debug ¶
type Tr_debug = struct {
Fr_version int32
Fr_map uintptr
Fr_brk TElf64_Addr
Fr_state int32
Fr_ldbase TElf64_Addr
}
type Tre_pattern_buffer ¶
type Tre_pattern_buffer = Tregex_t
type Treg_errcode_t ¶
type Treg_errcode_t = int32
type Tregmatch_t ¶
type Tres_state ¶
type Tres_state = uintptr
type Tresolvconf ¶
type Trusage ¶
type Trusage = struct {
Fru_utime Ttimeval
Fru_stime Ttimeval
Fru_maxrss int64
Fru_ixrss int64
Fru_idrss int64
Fru_isrss int64
Fru_minflt int64
Fru_majflt int64
Fru_nswap int64
Fru_inblock int64
Fru_oublock int64
Fru_msgsnd int64
Fru_msgrcv int64
Fru_nsignals int64
Fru_nvcsw int64
Fru_nivcsw int64
F__reserved [16]int64
}
type Tsa ¶
type Tsa = struct {
Fsin6 [0]Tsockaddr_in6
Fsin Tsockaddr_in
F__ccgo_pad2 [12]byte
}
type Tsa_family_t ¶
type Tsa_family_t = uint16
type Tsched_param ¶
type Tsemid_ds1 ¶
type Tsig_atomic_t ¶
type Tsig_atomic_t = int32
type Tsigaction ¶
type Tsigaltstack ¶
type Tsigaltstack = Tstack_t
type Tsigcontext ¶
type Tsigcontext = struct {
Fr8 uint64
Fr9 uint64
Fr10 uint64
Fr11 uint64
Fr12 uint64
Fr13 uint64
Fr14 uint64
Fr15 uint64
Frdi uint64
Frsi uint64
Frbp uint64
Frbx uint64
Frdx uint64
Frax uint64
Frcx uint64
Frsp uint64
Frip uint64
Feflags uint64
Fcs uint16
Fgs uint16
Ffs uint16
F__pad0 uint16
Ferr uint64
Ftrapno uint64
Foldmask uint64
Fcr2 uint64
Ffpstate uintptr
F__reserved1 [8]uint64
}
type Tsighandler_t ¶
type Tsighandler_t = uintptr
type Tsiginfo_t ¶
type Tsiginfo_t = struct {
Fsi_signo int32
Fsi_errno int32
Fsi_code int32
F__si_fields struct {
F__si_common [0]struct {
F__first struct {
F__timer [0]struct {
Fsi_timerid int32
Fsi_overrun int32
}
F__piduid struct {
Fsi_pid Tpid_t
Fsi_uid Tuid_t
}
}
F__second struct {
F__sigchld [0]struct {
Fsi_status int32
Fsi_utime Tclock_t
Fsi_stime Tclock_t
}
Fsi_value Tsigval
F__ccgo_pad2 [16]byte
}
}
F__sigfault [0]struct {
Fsi_addr uintptr
Fsi_addr_lsb int16
F__first struct {
Fsi_pkey [0]uint32
F__addr_bnd struct {
Fsi_lower uintptr
Fsi_upper uintptr
}
}
}
F__sigpoll [0]struct {
Fsi_band int64
Fsi_fd int32
}
F__sigsys [0]struct {
Fsi_call_addr uintptr
Fsi_syscall int32
Fsi_arch uint32
}
F__pad [112]int8
}
}
type Tsigjmp_buf ¶
type Tsigjmp_buf = [1]t__jmp_buf_tag
type Tsignalfd_siginfo ¶
type Tsignalfd_siginfo = struct {
Fssi_signo Tuint32_t
Fssi_errno Tint32_t
Fssi_code Tint32_t
Fssi_pid Tuint32_t
Fssi_uid Tuint32_t
Fssi_fd Tint32_t
Fssi_tid Tuint32_t
Fssi_band Tuint32_t
Fssi_overrun Tuint32_t
Fssi_trapno Tuint32_t
Fssi_status Tint32_t
Fssi_int Tint32_t
Fssi_ptr Tuint64_t
Fssi_utime Tuint64_t
Fssi_stime Tuint64_t
Fssi_addr Tuint64_t
Fssi_addr_lsb Tuint16_t
F__pad2 Tuint16_t
Fssi_syscall Tint32_t
Fssi_call_addr Tuint64_t
Fssi_arch Tuint32_t
F__pad [28]Tuint8_t
}
type Tsize_t ¶
type Tsize_t = uint64
var X__hwcap Tsize_t
var X__sysinfo Tsize_t
func UsableSize ¶
func X__builtin_object_size ¶
size_t __builtin_object_size (const void * ptr, int type)
func X__builtin_strlen ¶
func X__ctype_get_mb_cur_max ¶
func X__fbufsize ¶
func X__fpending ¶
func X__freadahead ¶
func X__stdio_write ¶
func X__stdout_write ¶
func X__strftime_l ¶
func X__wcsftime_l ¶
func Xfread_unlocked ¶
func Xfwrite_unlocked ¶
func Xmalloc_usable_size ¶
func Xmbsnrtowcs ¶
func Xmbsrtowcs ¶
func Xstrftime_l ¶
func Xwcsftime_l ¶
func Xwcsnrtombs ¶
func Xwcsrtombs ¶
func Y__builtin_object_size ¶
func Y__builtin_strlen ¶
func Y__ctype_get_mb_cur_max ¶
func Y__fbufsize ¶
func Y__fpending ¶
func Y__freadahead ¶
func Y__stdio_write ¶
func Y__stdout_write ¶
func Y__strftime_l ¶
func Y__strxfrm_l ¶
func Y__wcsftime_l ¶
func Y__wcsxfrm_l ¶
func Yfread_unlocked ¶
func Yfwrite_unlocked ¶
func Ymalloc_usable_size ¶
func Ymbsnrtowcs ¶
func Ymbsrtowcs ¶
func Ystrftime_l ¶
func Ystrxfrm_l ¶
func Ywcsftime_l ¶
func Ywcsnrtombs ¶
func Ywcsrtombs ¶
type Tsockaddr ¶
type Tsockaddr = struct {
Fsa_family Tsa_family_t
Fsa_data [14]int8
}
type Tsockaddr_in ¶
type Tsockaddr_in = struct {
Fsin_family Tsa_family_t
Fsin_port Tin_port_t
Fsin_addr Tin_addr
Fsin_zero [8]Tuint8_t
}
type Tsockaddr_in6 ¶
type Tsockaddr_in6 = struct {
Fsin6_family Tsa_family_t
Fsin6_port Tin_port_t
Fsin6_flowinfo Tuint32_t
Fsin6_addr Tin6_addr
Fsin6_scope_id Tuint32_t
}
type Tsockaddr_ll_hack ¶
type Tsockaddr_ll_hack = struct {
Fsll_family uint16
Fsll_protocol uint16
Fsll_ifindex int32
Fsll_hatype uint16
Fsll_pkttype uint8
Fsll_halen uint8
Fsll_addr [24]uint8
}
getifaddrs() reports hardware addresses with PF_PACKET that implies * struct sockaddr_ll. But e.g. Infiniband socket address length is * longer than sockaddr_ll.ssl_addr[8] can hold. Use this hack struct * to extend ssl_addr - callers should be able to still use it.
type Tsockaddr_storage ¶
type Tsockaddr_storage = struct {
Fss_family Tsa_family_t
F__ss_padding [118]int8
F__ss_align uint64
}
type Tsockany ¶
type Tsockany = struct {
Fll [0]Tsockaddr_ll_hack
Fv4 [0]Tsockaddr_in
Fv6 [0]Tsockaddr_in6
Fsa Tsockaddr
F__ccgo_pad4 [20]byte
}
type Tsocklen_t ¶
type Tsocklen_t = uint32
type Tspeed_t ¶
type Tspeed_t = uint32
func Xcfgetispeed ¶
func Xcfgetospeed ¶
func Ycfgetispeed ¶
func Ycfgetospeed ¶
type Tssize_t ¶
type Tssize_t = int64
func X__getdelim ¶
func Xcopy_file_range ¶
func Xfgetxattr ¶
func Xflistxattr ¶
func Xlgetxattr ¶
func Xllistxattr ¶
func Xprocess_vm_readv ¶
func Xprocess_vm_writev ¶
func Xreadlinkat ¶
func Xstrfmon_l ¶
func Y__getdelim ¶
func Ycopy_file_range ¶
func Yfgetxattr ¶
func Yflistxattr ¶
func Ylgetxattr ¶
func Yllistxattr ¶
func Yprocess_vm_readv ¶
func Yprocess_vm_writev ¶
func Yreadlinkat ¶
func Ystrfmon_l ¶
type Tstateful_cd ¶
type Tstatfs ¶
type Tstatfs = struct {
Ff_type uint64
Ff_bsize uint64
Ff_blocks Tfsblkcnt_t
Ff_bfree Tfsblkcnt_t
Ff_bavail Tfsblkcnt_t
Ff_files Tfsfilcnt_t
Ff_ffree Tfsfilcnt_t
Ff_fsid Tfsid_t
Ff_namelen uint64
Ff_frsize uint64
Ff_flags uint64
Ff_spare [4]uint64
}
type Tstatvfs ¶
type Tstatvfs = struct {
Ff_bsize uint64
Ff_frsize uint64
Ff_blocks Tfsblkcnt_t
Ff_bfree Tfsblkcnt_t
Ff_bavail Tfsblkcnt_t
Ff_files Tfsfilcnt_t
Ff_ffree Tfsfilcnt_t
Ff_favail Tfsfilcnt_t
Ff_fsid uint64
Ff_flag uint64
Ff_namemax uint64
Ff_type uint32
F__reserved [5]int32
}
type Tstatx ¶
type Tstatx = struct {
Fstx_mask Tuint32_t
Fstx_blksize Tuint32_t
Fstx_attributes Tuint64_t
Fstx_nlink Tuint32_t
Fstx_uid Tuint32_t
Fstx_gid Tuint32_t
Fstx_mode Tuint16_t
F__pad0 [1]Tuint16_t
Fstx_ino Tuint64_t
Fstx_size Tuint64_t
Fstx_blocks Tuint64_t
Fstx_attributes_mask Tuint64_t
Fstx_atime Tstatx_timestamp
Fstx_btime Tstatx_timestamp
Fstx_ctime Tstatx_timestamp
Fstx_mtime Tstatx_timestamp
Fstx_rdev_major Tuint32_t
Fstx_rdev_minor Tuint32_t
Fstx_dev_major Tuint32_t
Fstx_dev_minor Tuint32_t
F__pad1 [14]Tuint64_t
}
type Tstatx1 ¶
type Tstatx1 = struct {
Fstx_mask Tuint32_t
Fstx_blksize Tuint32_t
Fstx_attributes Tuint64_t
Fstx_nlink Tuint32_t
Fstx_uid Tuint32_t
Fstx_gid Tuint32_t
Fstx_mode Tuint16_t
Fpad1 Tuint16_t
Fstx_ino Tuint64_t
Fstx_size Tuint64_t
Fstx_blocks Tuint64_t
Fstx_attributes_mask Tuint64_t
Fstx_atime struct {
Ftv_sec Tint64_t
Ftv_nsec Tuint32_t
Fpad Tint32_t
}
Fstx_btime struct {
Ftv_sec Tint64_t
Ftv_nsec Tuint32_t
Fpad Tint32_t
}
Fstx_ctime struct {
Ftv_sec Tint64_t
Ftv_nsec Tuint32_t
Fpad Tint32_t
}
Fstx_mtime struct {
Ftv_sec Tint64_t
Ftv_nsec Tuint32_t
Fpad Tint32_t
}
Fstx_rdev_major Tuint32_t
Fstx_rdev_minor Tuint32_t
Fstx_dev_major Tuint32_t
Fstx_dev_minor Tuint32_t
Fspare [14]Tuint64_t
}
type Tstatx_timestamp ¶
type Tstr_mlist ¶
type Tstr_mlist = struct {
Fl_name [9]int8
}
type Tstrfdinsert ¶
type Tsuseconds_t ¶
type Tsuseconds_t = int64
type Tsyscall_arg_t ¶
type Tsyscall_arg_t = int64
type Ttimeval ¶
type Ttimeval = struct {
Ftv_sec Ttime_t
Ftv_usec Tsuseconds_t
}
type Ttimex ¶
type Ttimex = struct {
Fmodes uint32
Foffset int64
Ffreq int64
Fmaxerror int64
Festerror int64
Fstatus int32
Fconstant int64
Fprecision int64
Ftolerance int64
Ftime Ttimeval
Ftick int64
Fppsfreq int64
Fjitter int64
Fshift int32
Fstabil int64
Fjitcnt int64
Fcalcnt int64
Ferrcnt int64
Fstbcnt int64
Ftai int32
F__padding [11]int32
}
type Ttls_module ¶
type Ttnfa ¶
type Ttnfa = Ttre_tnfa_t
type Ttnfa_transition ¶
type Ttnfa_transition = Ttre_tnfa_transition_t
type Ttre_addtags_symbol_t ¶
type Ttre_addtags_symbol_t = int32
type Ttre_ast_node_t ¶
type Ttre_ast_node_t = struct {
Ftype1 Ttre_ast_type_t
Fobj uintptr
Fnullable int32
Fsubmatch_id int32
Fnum_submatches int32
Ffirstpos uintptr
Flastpos uintptr
}
C documentation
/* A generic AST node. All AST nodes consist of this node on the top level with `obj' pointing to the actual content. */
type Ttre_ast_type_t ¶
type Ttre_ast_type_t = int32
C documentation
/* The different AST node types. */
type Ttre_backtrack_item_t ¶
type Ttre_backtrack_struct ¶
type Ttre_backtrack_struct = struct {
Fitem Ttre_backtrack_item_t
Fprev uintptr
Fnext uintptr
}
type Ttre_backtrack_t ¶
type Ttre_backtrack_t = uintptr
type Ttre_catenation_t ¶
C documentation
/* A "catenation" node. These are created when two regexps are concatenated. If there are more than one subexpressions in sequence, the `left' part holds all but the last, and `right' part holds the last subexpression (catenation is left associative). */
type Ttre_char_t ¶
type Ttre_char_t = int32
type Ttre_cint_t ¶
type Ttre_cint_t = uint32
type Ttre_copyast_symbol_t ¶
type Ttre_copyast_symbol_t = int32
type Ttre_ctype_t ¶
type Ttre_ctype_t = uint64
type Ttre_expand_ast_symbol_t ¶
type Ttre_expand_ast_symbol_t = int32
type Ttre_iteration_t ¶
C documentation
/* An "iteration" node. These are created for the "*", "+", "?", and "{m,n}"
operators. */
type Ttre_list ¶
type Ttre_list = Ttre_list_t
type Ttre_list_t ¶
type Ttre_literal_t ¶
type Ttre_literal_t = struct {
Fcode_min int64
Fcode_max int64
Fposition int32
Fclass Ttre_ctype_t
Fneg_classes uintptr
}
C documentation
/* A "literal" node. These are created for assertions, back references, tags, matching parameter settings, and all expressions that match one character. */
type Ttre_mem_struct ¶
type Ttre_mem_t ¶
type Ttre_mem_t = uintptr
func X__tre_mem_new_impl ¶
func X__tre_mem_new_impl(tls *TLS, provided int32, provided_block uintptr) (r Ttre_mem_t)
C documentation
/* Returns a new memory allocator or NULL if out of memory. */
func Y__tre_mem_new_impl ¶
func Y__tre_mem_new_impl(tls *TLS, provided int32, provided_block uintptr) (r Ttre_mem_t)
type Ttre_nfl_stack_symbol_t ¶
type Ttre_nfl_stack_symbol_t = int32
type Ttre_parse_ctx_t ¶
type Ttre_parse_ctx_t = struct {
Fmem Ttre_mem_t
Fstack uintptr
Fn uintptr
Fs uintptr
Fstart uintptr
Fsubmatch_id int32
Fposition int32
Fmax_backref int32
Fcflags int32
}
C documentation
/* Parse context. */
type Ttre_pos_and_tags_t ¶
type Ttre_pos_and_tags_t = struct {
}
type Ttre_reach_pos_t ¶
type Ttre_reach_pos_t = struct {
Fpos Tregoff_t
}
type Ttre_stack_item ¶
type Ttre_stack_rec ¶
type Ttre_stack_rec = Ttre_stack_t
type Ttre_stack_t ¶
type Ttre_submatch_data ¶
type Ttre_submatch_data_t ¶
type Ttre_tag_direction_t ¶
type Ttre_tag_direction_t = int32
type Ttre_tag_states_t ¶
type Ttre_tnfa_reach_t ¶
type Ttre_tnfa_reach_t = struct {
Fstate uintptr
}
type Ttre_tnfa_t ¶
type Ttre_tnfa_t = struct {
Ftransitions uintptr
Fnum_transitions uint32
Finitial uintptr
Ffinal uintptr
Fsubmatch_data uintptr
Ffirstpos_chars uintptr
Ffirst_char int32
Fnum_submatches uint32
Ftag_directions uintptr
Fnum_minimals int32
Fend_tag int32
Fnum_states int32
Fcflags int32
Fhave_backrefs int32
Fhave_approx int32
}
type Ttre_tnfa_transition_t ¶
type Ttre_tnfa_transition_t = struct {
Fcode_min Ttre_cint_t
Fcode_max Ttre_cint_t
Fstate uintptr
Fstate_id int32
Fassertions int32
Fu struct {
Fbackref [0]int32
Fclass Ttre_ctype_t
}
Fneg_classes uintptr
}
type Tucontext ¶
type Tucontext = Tucontext_t1
type Tucontext_t ¶
type Tucontext_t1 ¶
type Tuint_fast8_t ¶
type Tuint_fast8_t = uint8
type Tuint_fast16_t ¶
type Tuint_fast16_t = uint32
type Tuint_fast32_t ¶
type Tuint_fast32_t = uint32
type Tuint_fast64_t ¶
type Tuint_fast64_t = uint64
type Tuint_least8_t ¶
type Tuint_least8_t = uint8
type Tuint_least16_t ¶
type Tuint_least16_t = uint16
type Tuint_least32_t ¶
type Tuint_least32_t = uint32
type Tuint_least64_t ¶
type Tuint_least64_t = uint64
type Tuintmax_t ¶
type Tuintmax_t = uint64
func X__strtoumax_internal ¶
func X__strtoumax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
func Xstrtoumax ¶
func Xstrtoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
func Xwcstoumax ¶
func Xwcstoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
func Y__strtoumax_internal ¶
func Y__strtoumax_internal(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
func Ystrtoumax ¶
func Ystrtoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
func Ywcstoumax ¶
func Ywcstoumax(tls *TLS, s uintptr, p uintptr, base int32) (r Tuintmax_t)
type Tuseconds_t ¶
type Tuseconds_t = uint32
type Tv4l2_event ¶
type Twctrans_t ¶
type Twctrans_t = uintptr
func X__wctrans_l ¶
func X__wctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
func Xwctrans ¶
func Xwctrans(tls *TLS, class uintptr) (r Twctrans_t)
func Xwctrans_l ¶
func Xwctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
func Y__wctrans_l ¶
func Y__wctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
func Ywctrans ¶
func Ywctrans(tls *TLS, class uintptr) (r Twctrans_t)
func Ywctrans_l ¶
func Ywctrans_l(tls *TLS, s uintptr, l Tlocale_t) (r Twctrans_t)
type Twint_t ¶
type Twint_t = uint32
func X__fgetwc_unlocked ¶
func X__towctrans_l ¶
func X__towctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
func Xfgetwc_unlocked ¶
func Xgetwc_unlocked ¶
func Xgetwchar_unlocked ¶
func Xputwchar_unlocked ¶
func Xtowctrans ¶
func Xtowctrans(tls *TLS, wc Twint_t, trans Twctrans_t) (r Twint_t)
func Xtowctrans_l ¶
func Xtowctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
func Y__fgetwc_unlocked ¶
func Y__towctrans_l ¶
func Y__towctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
func Yfgetwc_unlocked ¶
func Ygetwc_unlocked ¶
func Ygetwchar_unlocked ¶
func Yputwchar_unlocked ¶
func Ytowctrans ¶
func Ytowctrans(tls *TLS, wc Twint_t, trans Twctrans_t) (r Twint_t)
func Ytowctrans_l ¶
func Ytowctrans_l(tls *TLS, c Twint_t, t Twctrans_t, l Tlocale_t) (r Twint_t)
type Uint128 ¶
func Uint128FromFloat32 ¶
func Uint128FromFloat64 ¶
func Uint128FromInt8 ¶
func Uint128FromInt16 ¶
func Uint128FromInt32 ¶
func Uint128FromInt64 ¶
func Uint128FromInt128 ¶
func Uint128FromUint8 ¶
func Uint128FromUint16 ¶
func Uint128FromUint32 ¶
func Uint128FromUint64 ¶
Source Files
¶
- abi0_linux_amd64.go
- aliases.go
- atomic.go
- atomic64.go
- builtin.go
- builtin64.go
- capi_linux_amd64.go
- ccgo_linux_amd64.go
- etc_musl.go
- fsync.go
- int128.go
- libc_all.go
- libc_linux.go
- libc_musl.go
- libc_musl_linux_amd64.go
- mem_musl.go
- mmap_limit_linux.go
- nodmesg.go
- probes.go
- pthread_musl.go
- rtl.go
- stdatomic.go
- straceoff.go
- syscall_musl.go
- tls_linux_amd64.go
- watch.go