Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for original (0.18 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    // Copyright 2016 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.
    
    // This file was originally from https://golang.org/cl/24717 by Vlad Krasnov of CloudFlare.
    
    //go:build gc && !purego
    
    #include "textflag.h"
    // General register allocation
    #define oup DI
    #define inp SI
    #define inl BX
    #define adp CX // free to reuse, after we hash the additional data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// But there might be an x.go in the original dir too, and if it
    	// uses cgo as well, cgo will be processing both and will
    	// translate both into x.cgo1.go in the objdir, overwriting one.
    	// Rename x.go to _x_swig.go to avoid this problem.
    	// We ignore files in the original dir that begin with underscore
    	// so _x_swig.go cannot conflict with an original file we were
    	// going to compile.
    	goFile = objdir + goFile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    // the frame structure (to preserve the outputs).
    //
    // Originally reflect.call did not distinguish inputs from outputs: both memmoves
    // were for the full stack frame. However, in the case where the called function was
    // one of these wrappers, the rewritten receiver is almost certainly a different type
    // than the original receiver. This is not a problem on the stack, where we use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    <pre>
    type Point3D struct { x, y, z float64 }
    type Line struct { p, q Point3D }
    </pre>
    
    <p>
    one may write
    </p>
    
    <pre>
    origin := Point3D{}                            // zero value for Point3D
    line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
    </pre>
    
    <p>
    For array and slice literals the following rules apply:
    </p>
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    			if !strings.HasPrefix(sname, "__imp_") {
    				return fmt.Errorf("internal error in windynrelocsym: redirect GOT token applied to non-import symbol %s", sname)
    			}
    
    			// Locate underlying symbol (which originally had type
    			// SDYNIMPORT but has since been retyped to SWINDOWS).
    			ds, err := loadpe.LookupBaseFromImport(targ, ctxt.loader, ctxt.Arch)
    			if err != nil {
    				return err
    			}
    			dstyp := ctxt.loader.SymType(ds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top