Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bytereg (0.14 sec)

  1. src/net/lookup_plan9.go

    // Copyright 2011 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 net
    
    import (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/stringslite"
    	"io"
    	"os"
    )
    
    // cgoAvailable set to true to indicate that the cgo resolver
    // is available on Plan 9. Note that on Plan 9 the cgo resolver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    // prefix).
    //
    // Compared to the [net.IP] type, [Addr] type takes less memory, is immutable,
    // and is comparable (supports == and being a map key).
    package netip
    
    import (
    	"cmp"
    	"errors"
    	"internal/bytealg"
    	"internal/byteorder"
    	"internal/itoa"
    	"math"
    	"strconv"
    	"unique"
    )
    
    // Sizes: (64-bit)
    //   net.IP:     24 byte slice header + {4, 16} = 28 to 40 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		switch header.Typeflag {
    		case tar.TypeDir:
    			if _, err := os.Stat(dest); err != nil {
    				if err := os.Mkdir(dest, 0o755); err != nil {
    					return fmt.Errorf("mkdir: %v", err)
    				}
    			}
    		case tar.TypeReg:
    			// Create containing folder if not present
    			dir := path.Dir(dest)
    			if _, err := os.Stat(dir); err != nil {
    				if err := os.MkdirAll(dir, 0o755); err != nil {
    					return err
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    func isRuntimeDepPkg(pkg string) bool {
    	switch pkg {
    	case "runtime",
    		"sync/atomic",          // runtime may call to sync/atomic, due to go:linkname
    		"internal/abi",         // used by reflectcall (and maybe more)
    		"internal/bytealg",     // for IndexByte
    		"internal/chacha8rand", // for rand
    		"internal/cpu":         // for cpu features
    		return true
    	}
    	return strings.HasPrefix(pkg, "runtime/internal/") && !strings.HasSuffix(pkg, "_test")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // of a function, before the frame has been constructed, so the standard
    // addressing for the parameters will be wrong.
    func SpillSlotAddr(spill ssa.Spill, baseReg int16, extraOffset int64) obj.Addr {
    	return obj.Addr{
    		Name:   obj.NAME_NONE,
    		Type:   obj.TYPE_MEM,
    		Reg:    baseReg,
    		Offset: spill.Offset + extraOffset,
    	}
    }
    
    var (
    	BoundsCheckFunc [ssa.BoundsKindCount]*obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top