Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 218 for original (0.43 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		BodyBase
    		Match, Cond, Result string // top comments
    		Check               string // top-level boolean expression
    
    		Alloc        int    // for unique var names
    		Loc          string // file name & line number of the original rule
    		CommuteDepth int    // used to track depth of commute loops
    	}
    	Declare struct {
    		Name  string
    		Value ast.Expr
    	}
    	CondBreak struct {
    		Cond              ast.Expr
    		InsideCommuteLoop bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. 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)
  6. src/go/types/unify.go

    		}
    
    	case *Named:
    		// Two named types unify if their type names originate in the same type declaration.
    		// If they are instantiated, their type argument lists must unify.
    		if y := asNamed(y); y != nil {
    			// Check type arguments before origins so they unify
    			// even if the origins don't match; for better error
    			// messages (see go.dev/issue/53692).
    			xargs := x.TypeArgs().list()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/go/doc/reader.go

    		switch {
    		case m.Decl == nil:
    			// exclude conflict entry
    		case allMethods, m.Level == 0, !token.IsExported(removeStar(m.Orig)):
    			// forced inclusion, method not embedded, or method
    			// embedded but original receiver type not exported
    			list[i] = m
    			i++
    		}
    	}
    	list = list[0:i]
    	slices.SortFunc(list, func(a, b *Func) int {
    		return strings.Compare(a.Name, b.Name)
    	})
    	return list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K 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