Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 140 for ss_flags (0.34 sec)

  1. src/cmd/link/internal/ld/elf.go

    		}
    	}
    
    	s = ldr.CreateSymForUpdate(".dynamic", 0)
    
    	var dtFlags1 elf.DynFlag1
    	if *flagBindNow {
    		dtFlags1 |= elf.DF_1_NOW
    		Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS, uint64(elf.DF_BIND_NOW))
    	}
    	if ctxt.BuildMode == BuildModePIE {
    		dtFlags1 |= elf.DF_1_PIE
    	}
    	Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS_1, uint64(dtFlags1))
    
    	elfverneed = nfile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	if fcs.N {
    		fc |= 1
    	}
    	if fcs.Z {
    		fc |= 2
    	}
    	if fcs.C {
    		fc |= 4
    	}
    	if fcs.V {
    		fc |= 8
    	}
    	return fc
    }
    
    // Note: addFlags(x,y) != subFlags(x,-y) in some situations:
    //  - the results of the C flag are different
    //  - the results of the V flag when y==minint are different
    
    // addFlags64 returns the flags that would be set from computing x+y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	-v
    //		print the names of packages as they are compiled.
    //	-work
    //		print the name of the temporary work directory and
    //		do not delete it when exiting.
    //	-x
    //		print the commands.
    //	-asmflags '[pattern=]arg list'
    //		arguments to pass on each go tool asm invocation.
    //	-buildmode mode
    //		build mode to use. See 'go help buildmode' for more.
    //	-buildvcs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	"syscall"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    func TestMain(m *testing.M) {
    	if Getenv("GO_OS_TEST_DRAIN_STDIN") == "1" {
    		Stdout.Close()
    		io.Copy(io.Discard, Stdin)
    		Exit(0)
    	}
    
    	log.SetFlags(log.LstdFlags | log.Lshortfile)
    
    	Exit(m.Run())
    }
    
    var dot = []string{
    	"dir_unix.go",
    	"env.go",
    	"error.go",
    	"file.go",
    	"os_test.go",
    	"types.go",
    	"stat_darwin.go",
    	"stat_linux.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	_                 [3]byte
    	bulkDataIntfName  [16]byte
    	ttlsNegCiph4      [4]byte
    	smcReason         uint32
    	lclSMCLinkId      uint32
    	rmtSMCLinkId      uint32
    	smcStatus         byte
    	smcFlags          byte
    	_                 [2]byte
    	rcvWnd            uint32
    	lclSMCBufSz       uint32
    	rmtSMCBufSz       uint32
    	ttlsSessID        [32]byte
    	ttlsSessIDLen     int16
    	_                 [1]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	case "gc":
    		fmt.Fprintf(h, "compile %s %q %q\n", b.toolID("compile"), forcedGcflags, p.Internal.Gcflags)
    		if len(p.SFiles) > 0 {
    			fmt.Fprintf(h, "asm %q %q %q\n", b.toolID("asm"), forcedAsmflags, p.Internal.Asmflags)
    		}
    
    		// GOARM, GOMIPS, etc.
    		key, val, _ := cfg.GetArchEnv()
    		fmt.Fprintf(h, "%s=%s\n", key, val)
    
    		if cfg.CleanGOEXPERIMENT != "" {
    			fmt.Fprintf(h, "GOEXPERIMENT=%q\n", cfg.CleanGOEXPERIMENT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DT_ENCODING", Const, 0},
    		{"DT_FEATURE", Const, 16},
    		{"DT_FILTER", Const, 16},
    		{"DT_FINI", Const, 0},
    		{"DT_FINI_ARRAY", Const, 0},
    		{"DT_FINI_ARRAYSZ", Const, 0},
    		{"DT_FLAGS", Const, 0},
    		{"DT_FLAGS_1", Const, 16},
    		{"DT_GNU_CONFLICT", Const, 16},
    		{"DT_GNU_CONFLICTSZ", Const, 16},
    		{"DT_GNU_HASH", Const, 16},
    		{"DT_GNU_LIBLIST", Const, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/elf, const DT_ENCODING DynTag
    pkg debug/elf, const DT_FINI DynTag
    pkg debug/elf, const DT_FINI_ARRAY DynTag
    pkg debug/elf, const DT_FINI_ARRAYSZ DynTag
    pkg debug/elf, const DT_FLAGS DynTag
    pkg debug/elf, const DT_HASH DynTag
    pkg debug/elf, const DT_HIOS DynTag
    pkg debug/elf, const DT_HIPROC DynTag
    pkg debug/elf, const DT_INIT DynTag
    pkg debug/elf, const DT_INIT_ARRAY DynTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const TF_ONE_WAY=0x01;const TF_ROOT_OBJECT=0x04;const TF_STATUS_CODE=0x08;const TF_ACCEPT_FDS=0x10;const NO_FLAGS=0;function binderFlagsToHuman(num){const flag=parseInt(num,16);let str='';if(flag&TF_ONE_WAY){str+='this is a one-way call: async, no return; ';}
    if(flag&TF_ROOT_OBJECT){str+='contents are the components root object; ';}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  10. api/go1.1.txt

    pkg debug/elf, const DT_DEBUG = 21
    pkg debug/elf, const DT_ENCODING = 32
    pkg debug/elf, const DT_FINI = 13
    pkg debug/elf, const DT_FINI_ARRAY = 26
    pkg debug/elf, const DT_FINI_ARRAYSZ = 28
    pkg debug/elf, const DT_FLAGS = 30
    pkg debug/elf, const DT_HASH = 4
    pkg debug/elf, const DT_HIOS = 1879044096
    pkg debug/elf, const DT_HIPROC = 2147483647
    pkg debug/elf, const DT_INIT = 12
    pkg debug/elf, const DT_INIT_ARRAY = 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top