Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 167 for original (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// We may thus be trying to produce object paths for any of these objects.
    	//
    	// S[A].Foo and S[B].Bar are the origin methods, and their paths are S.Foo
    	// and S.Bar, which are the paths that this function naturally produces.
    	//
    	// S[A].Bar, S[B].Foo, and both methods on S[int] are instantiations that
    	// don't correspond to the origin methods. For S[int], this is significant.
    	// The most precise object path for S[int].Foo, for example, is Alias.Foo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    //
    // RSA is a single, fundamental operation that is used in this package to
    // implement either public-key encryption or public-key signatures.
    //
    // The original specification for encryption and signatures with RSA is PKCS #1
    // and the terms "RSA encryption" and "RSA signatures" by default refer to
    // PKCS #1 version 1.5. However, that specification has flaws and new designs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/net/tcpsock.go

    // Closing l does not affect f, and closing f does not affect l.
    //
    // The returned os.File's file descriptor is different from the
    // connection's. Attempting to change properties of the original
    // using this duplicate may or may not have the desired effect.
    func (l *TCPListener) File() (f *os.File, err error) {
    	if !l.ok() {
    		return nil, syscall.EINVAL
    	}
    	f, err = l.file()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/dwarfgen/dwinl.go

    package dwarfgen
    
    import (
    	"fmt"
    	"strings"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/internal/dwarf"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    )
    
    // To identify variables by original source position.
    type varPos struct {
    	DeclName string
    	DeclFile string
    	DeclLine uint
    	DeclCol  uint
    }
    
    // This is the main entry point for collection of raw material to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/sym.go

    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    		// any original entries with the same name (all DWARFVAR symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/encoding/binary/binary.go

    		return 4 * len(data), nil
    	case []float64:
    		return 8 * len(data), nil
    	}
    	return 0, nil
    }
    
    // ensure grows buf to length len(buf) + n and returns the grown buffer
    // and a slice starting at the original length of buf (that is, buf2[len(buf):]).
    func ensure(buf []byte, n int) (buf2, pos []byte) {
    	l := len(buf)
    	buf = slices.Grow(buf, n)[:l+n]
    	return buf, buf[l:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall<ABIInternal>(SB),NOSPLIT,$0-20
    	// R3 = fn
    	// R4 = arg
    
    	MOVD	R1, R7		// save original stack pointer
    	CMP	$0, g
    	BEQ	nosave
    	MOVD	g, R5
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    		// scanDir ignores files with import "C" when collecting the list
    		// of imports unless the "cgo" tag is provided. The following comment
    		// is copied from the original.
    		//
    		// import "C" is implicit requirement of cgo tag.
    		// When listing files on the command line (explicitFiles=true)
    		// we do not apply build tag filtering but we still do apply
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/go/types/stmt.go

    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, token.EQL, true)
    		if res.mode == invalid {
    			continue L
    		}
    		if v.mode != constant_ {
    			continue L // we're done
    		}
    		// look for duplicate values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_ppc64x.s

    #define BLK_IDX    R7
    #define IDX        R8
    #define IN_LEN     R9
    #define COUNTER    R10
    #define CONPTR     R14
    #define MASK       V5
    
    // Implementation of the counterCrypt function in assembler.
    // Original loop is unrolled to allow for multiple encryption
    // streams to be done in parallel, which is achieved by interleaving
    // vcipher instructions from each stream. This is also referred to as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top