package kernels
import "unsafe"
func _multiply_constant_int32_int32_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func multiplyConstantInt32Int32SSE4(in []int32 , out []int32 , factor int64 ) {
_multiply_constant_int32_int32_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _multiply_constant_int32_int64_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func multiplyConstantInt32Int64SSE4(in []int32 , out []int64 , factor int64 ) {
_multiply_constant_int32_int64_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _multiply_constant_int64_int32_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func multiplyConstantInt64Int32SSE4(in []int64 , out []int32 , factor int64 ) {
_multiply_constant_int64_int32_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _multiply_constant_int64_int64_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func multiplyConstantInt64Int64SSE4(in []int64 , out []int64 , factor int64 ) {
_multiply_constant_int64_int64_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _divide_constant_int32_int32_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func divideConstantInt32Int32SSE4(in []int32 , out []int32 , factor int64 ) {
_divide_constant_int32_int32_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _divide_constant_int32_int64_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func divideConstantInt32Int64SSE4(in []int32 , out []int64 , factor int64 ) {
_divide_constant_int32_int64_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _divide_constant_int64_int32_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func divideConstantInt64Int32SSE4(in []int64 , out []int32 , factor int64 ) {
_divide_constant_int64_int32_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
func _divide_constant_int64_int64_sse4(src , dest unsafe .Pointer , len int , factor int64 )
func divideConstantInt64Int64SSE4(in []int64 , out []int64 , factor int64 ) {
_divide_constant_int64_int64_sse4 (unsafe .Pointer (&in [0 ]), unsafe .Pointer (&out [0 ]), len (out ), factor )
}
The pages are generated with Golds v0.8.2 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .