Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 157 for Globl (0.05 sec)

  1. src/runtime/rt0_android_amd64.s

    DATA _rt0_amd64_android_argv+0x08(SB)/8,$0 // end argv
    DATA _rt0_amd64_android_argv+0x10(SB)/8,$0 // end envv
    DATA _rt0_amd64_android_argv+0x18(SB)/8,$0 // end auxv
    GLOBL _rt0_amd64_android_argv(SB),NOPTR,$0x20
    
    DATA _rt0_amd64_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 754 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/duperror.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    TEXT foo(SB), 0, $0
    	RET
    TEXT foo(SB), 0, $0 // ERROR "symbol foo redeclared"
    	RET
    
    GLOBL bar(SB), 0, $8
    GLOBL bar(SB), 0, $8 // ERROR "symbol bar redeclared"
    
    DATA bar+0(SB)/8, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 23:21:07 UTC 2022
    - 404 bytes
    - Viewed (0)
  3. src/math/log_s390x.s

    DATA ·logrodataL21<> + 80(SB)/8, $-1.0
    GLOBL ·logrodataL21<> + 0(SB), RODATA, $88
    
    // Constants
    DATA ·logxminf<> + 0(SB)/8, $0xfff0000000000000
    GLOBL ·logxminf<> + 0(SB), RODATA, $8
    DATA ·logxnan<> + 0(SB)/8, $0x7ff8000000000000
    GLOBL ·logxnan<> + 0(SB), RODATA, $8
    DATA ·logx43f<> + 0(SB)/8, $0x43f0000000000000
    GLOBL ·logx43f<> + 0(SB), RODATA, $8
    DATA ·logxl2<> + 0(SB)/8, $0x3fda7aecbeba4e46
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. src/math/tan_s390x.s

    DATA ·tanrodataL13<> + 88(SB)/8, $0.636619772367581341e+00
    GLOBL ·tanrodataL13<> + 0(SB), RODATA, $96
    
    // Constants
    DATA ·tanxnan<> + 0(SB)/8, $0x7ff8000000000000
    GLOBL ·tanxnan<> + 0(SB), RODATA, $8
    DATA ·tanxlim<> + 0(SB)/8, $0x432921fb54442d19
    GLOBL ·tanxlim<> + 0(SB), RODATA, $8
    DATA ·tanxadd<> + 0(SB)/8, $0xc338000000000000
    GLOBL ·tanxadd<> + 0(SB), RODATA, $8
    
    // Tan returns the tangent of the radian argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 23:30:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/math/expm1_s390x.s

    DATA ·expm1rodataL22<> + 96(SB)/8, $704.0E+00
    GLOBL ·expm1rodataL22<> + 0(SB), RODATA, $104
    
    DATA ·expm1xmone<> + 0(SB)/8, $0xbff0000000000000
    GLOBL ·expm1xmone<> + 0(SB), RODATA, $8
    DATA ·expm1xinf<> + 0(SB)/8, $0x7ff0000000000000
    GLOBL ·expm1xinf<> + 0(SB), RODATA, $8
    DATA ·expm1x4ff<> + 0(SB)/8, $0x4ff0000000000000
    GLOBL ·expm1x4ff<> + 0(SB), RODATA, $8
    DATA ·expm1x2ff<> + 0(SB)/8, $0x2ff0000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4618.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"testing"
    )
    
    type T struct { int }
    
    var globl *T
    
    func F() {
    	t := &T{}
    	globl = t
    }
    
    func G() {
    	t := &T{}
    	_ = t
    }
    
    func main() {
    	nf := testing.AllocsPerRun(100, F)
    	ng := testing.AllocsPerRun(100, G)
    	if int(nf) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 652 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/bench_test.go

    // license that can be found in the LICENSE file.
    
    package test
    
    import "testing"
    
    var globl int64
    var globl32 int32
    
    func BenchmarkLoadAdd(b *testing.B) {
    	x := make([]int64, 1024)
    	y := make([]int64, 1024)
    	for i := 0; i < b.N; i++ {
    		var s int64
    		for i := range x {
    			s ^= x[i] + y[i]
    		}
    		globl = s
    	}
    }
    
    // Added for ppc64 extswsli on power9
    func BenchmarkExtShift(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 08 03:27:59 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/tls_arm64.s

    	RET
    
    #ifdef TLSG_IS_VARIABLE
    #ifdef GOOS_android
    // Use the free TLS_SLOT_APP slot #2 on Android Q.
    // Earlier androids are set up in gcc_android.c.
    DATA runtime·tls_g+0(SB)/8, $16
    #endif
    GLOBL runtime·tls_g+0(SB), NOPTR, $8
    #else
    GLOBL runtime·tls_g+0(SB), TLSBSS, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/math/atan_s390x.s

    DATA ·atanrodataL8<> + 152(SB)/8, $-.154797890856877418E-03
    GLOBL ·atanrodataL8<> + 0(SB), RODATA, $160
    
    DATA ·atanxpi2h<> + 0(SB)/8, $0x3ff330e4e4fa7b1b
    DATA ·atanxpi2h<> + 8(SB)/8, $0xbff330e4e4fa7b1b
    DATA ·atanxpi2h<> + 16(SB)/8, $0x400330e4e4fa7b1b
    DATA ·atanxpi2h<> + 24(SB)/4, $0xc00330e4e4fa7b1b
    GLOBL ·atanxpi2h<> + 0(SB), RODATA, $32
    DATA ·atanxpim<> + 0(SB)/8, $0x3ff4f42b00000000
    GLOBL ·atanxpim<> + 0(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. src/runtime/rt0_android_386.s

    DATA _rt0_386_android_argv+0x08(SB)/4,$0  // envp terminate
    DATA _rt0_386_android_argv+0x0c(SB)/4,$0  // auxv terminate
    GLOBL _rt0_386_android_argv(SB),NOPTR,$0x10
    
    // TODO: wire up necessary VDSO (see os_linux_386.go)
    
    DATA _rt0_386_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
Back to top