OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
vendor
/
golang.org
/
x
/
sys
/
cpu
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
asm_aix_ppc64.s
420 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
byteorder.go
1.82 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu.go
11.87 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_aix.go
619 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_arm.go
2.11 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_arm64.go
3.53 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_arm64.s
771 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gc_arm64.go
269 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gc_s390x.go
687 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gc_x86.go
541 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gccgo_arm64.go
315 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gccgo_s390x.go
1.02 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gccgo_x86.c
1.07 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_gccgo_x86.go
840 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux.go
361 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_arm.go
1.36 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_arm64.go
2.1 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_mips64x.go
522 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_noinit.go
351 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_ppc64x.go
815 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_linux_s390x.go
890 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_loong64.go
260 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_mips64x.go
346 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_mipsx.go
270 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_netbsd_arm64.go
4.26 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_other_arm.go
239 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_other_arm64.go
260 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_other_mips64x.go
299 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_ppc64x.go
384 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_riscv64.go
259 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_s390x.go
4.88 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_s390x.s
1.97 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_wasm.go
454 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_x86.go
4.64 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_x86.s
642 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_zos.go
223 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
cpu_zos_s390x.go
643 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
hwcap_linux.go
1.23 KB
12/01/2022 06:13:01 PM
rw-r--r--
📄
syscall_aix_gccgo.go
746 bytes
12/01/2022 06:13:01 PM
rw-r--r--
📄
syscall_aix_ppc64_gc.go
1011 bytes
12/01/2022 06:13:01 PM
rw-r--r--
Editing: cpu_linux_arm.go
Close
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cpu func doinit() { ARM.HasSWP = isSet(hwCap, hwcap_SWP) ARM.HasHALF = isSet(hwCap, hwcap_HALF) ARM.HasTHUMB = isSet(hwCap, hwcap_THUMB) ARM.Has26BIT = isSet(hwCap, hwcap_26BIT) ARM.HasFASTMUL = isSet(hwCap, hwcap_FAST_MULT) ARM.HasFPA = isSet(hwCap, hwcap_FPA) ARM.HasVFP = isSet(hwCap, hwcap_VFP) ARM.HasEDSP = isSet(hwCap, hwcap_EDSP) ARM.HasJAVA = isSet(hwCap, hwcap_JAVA) ARM.HasIWMMXT = isSet(hwCap, hwcap_IWMMXT) ARM.HasCRUNCH = isSet(hwCap, hwcap_CRUNCH) ARM.HasTHUMBEE = isSet(hwCap, hwcap_THUMBEE) ARM.HasNEON = isSet(hwCap, hwcap_NEON) ARM.HasVFPv3 = isSet(hwCap, hwcap_VFPv3) ARM.HasVFPv3D16 = isSet(hwCap, hwcap_VFPv3D16) ARM.HasTLS = isSet(hwCap, hwcap_TLS) ARM.HasVFPv4 = isSet(hwCap, hwcap_VFPv4) ARM.HasIDIVA = isSet(hwCap, hwcap_IDIVA) ARM.HasIDIVT = isSet(hwCap, hwcap_IDIVT) ARM.HasVFPD32 = isSet(hwCap, hwcap_VFPD32) ARM.HasLPAE = isSet(hwCap, hwcap_LPAE) ARM.HasEVTSTRM = isSet(hwCap, hwcap_EVTSTRM) ARM.HasAES = isSet(hwCap2, hwcap2_AES) ARM.HasPMULL = isSet(hwCap2, hwcap2_PMULL) ARM.HasSHA1 = isSet(hwCap2, hwcap2_SHA1) ARM.HasSHA2 = isSet(hwCap2, hwcap2_SHA2) ARM.HasCRC32 = isSet(hwCap2, hwcap2_CRC32) } func isSet(hwc uint, value uint) bool { return hwc&value != 0 }