Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for tabu (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SO_TXTIME                        = 0x3d
    	SO_TYPE                          = 0x3
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	TAB1                             = 0x800
    	TAB2                             = 0x1000
    	TAB3                             = 0x1800
    	TABDLY                           = 0x1800
    	TCFLSH                           = 0x540b
    	TCGETA                           = 0x5405
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	SO_TXTIME                        = 0x3d
    	SO_TYPE                          = 0x3
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	TAB1                             = 0x800
    	TAB2                             = 0x1000
    	TAB3                             = 0x1800
    	TABDLY                           = 0x1800
    	TCFLSH                           = 0x540b
    	TCGETA                           = 0x5405
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	SO_TXTIME                        = 0x3d
    	SO_TYPE                          = 0x3
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	TAB1                             = 0x800
    	TAB2                             = 0x1000
    	TAB3                             = 0x1800
    	TABDLY                           = 0x1800
    	TCFLSH                           = 0x540b
    	TCGETA                           = 0x5405
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	SO_TXTIME                        = 0x3d
    	SO_TYPE                          = 0x1008
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	TAB1                             = 0x800
    	TAB2                             = 0x1000
    	TAB3                             = 0x1800
    	TABDLY                           = 0x1800
    	TCFLSH                           = 0x5407
    	TCGETA                           = 0x5401
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	SO_TXTIME                        = 0x3d
    	SO_TYPE                          = 0x3
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	TAB1                             = 0x400
    	TAB2                             = 0x800
    	TAB3                             = 0xc00
    	TABDLY                           = 0xc00
    	TCFLSH                           = 0x2000741f
    	TCGETA                           = 0x40147417
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	SO_TYPE                          = 0x3
    	SO_WIFI_STATUS                   = 0x29
    	SO_ZEROCOPY                      = 0x3c
    	SVE_MAGIC                        = 0x53564501
    	TAB1                             = 0x800
    	TAB2                             = 0x1000
    	TAB3                             = 0x1800
    	TABDLY                           = 0x1800
    	TCFLSH                           = 0x540b
    	TCGETA                           = 0x5405
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/scoring.go

    	} else {
    		if len(scoreCallsCache.tab) != 0 {
    			panic("missing call to ScoreCallsCleanup")
    		}
    		if scoreCallsCache.tab == nil {
    			scoreCallsCache.tab = make(CallSiteTab)
    		}
    		if debugTrace&debugTraceScoring != 0 {
    			fmt.Fprintf(os.Stderr, "=-= building cstab for non-inl func %s\n",
    				ir.FuncName(fn))
    		}
    		cstab = computeCallSiteTable(fn, fn.Body, scoreCallsCache.tab, nil, 0,
    			nameFinder)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	n = unsafe.Sizeof(uname.Version)
    	if err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil && !errors.Is(err, ENOMEM) {
    		return err
    	}
    
    	// The version might have newlines or tabs in it, convert them to
    	// spaces.
    	for i, b := range uname.Version {
    		if b == '\n' || b == '\t' {
    			if i == len(uname.Version)-1 {
    				uname.Version[i] = 0
    			} else {
    				uname.Version[i] = ' '
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	}
    
    	mib = []_C_int{CTL_KERN, KERN_VERSION}
    	n = unsafe.Sizeof(uname.Version)
    	if err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {
    		return err
    	}
    
    	// The version might have newlines or tabs in it, convert them to
    	// spaces.
    	for i, b := range uname.Version {
    		if b == '\n' || b == '\t' {
    			if i == len(uname.Version)-1 {
    				uname.Version[i] = 0
    			} else {
    				uname.Version[i] = ' '
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // interface switches
    func interfaceSwitch(s *byte, t *byte) (int, *byte)
    
    // interface equality. Type/itab pointers are already known to be equal, so
    // we only need to pass one.
    func ifaceeq(tab *uintptr, x, y unsafe.Pointer) (ret bool)
    func efaceeq(typ *uintptr, x, y unsafe.Pointer) (ret bool)
    
    // panic for various rangefunc iterator errors
    func panicrangestate(state int)
    
    // defer in range over func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top