Avoid is_constant calls in vectorizable_bswap
[official-gcc.git] / libgo / go / syscall / syscall_freebsd.go
blobc67550a011d3589eddcc79cd75f679923190848c
1 // Copyright 2009,2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package syscall
7 import "unsafe"
9 func direntIno(buf []byte) (uint64, bool) {
10 return readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))
13 func direntReclen(buf []byte) (uint64, bool) {
14 return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
17 func direntNamlen(buf []byte) (uint64, bool) {
18 return readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))