Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for original (0.28 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    			return nil
    		}
    
    		// For constants larger than 32 bits in size that have trailing zeros,
    		// use the value with the trailing zeros removed and then use a SLLI
    		// instruction to restore the original constant.
    		// For example:
    		// 	MOV $0x8000000000000000, X10
    		// becomes
    		// 	MOV $1, X10
    		// 	SLLI $63, X10, X10
    		var insSLLI *instruction
    		if err := immIFits(ins.imm, 32); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    type state struct {
    	str       string        // remainder of string to demangle
    	verbose   bool          // whether to use verbose demangling
    	off       int           // offset of str within original string
    	subs      substitutions // substitutions
    	templates []*Template   // templates being processed
    
    	// The number of entries in templates when we started parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    // Copyright 2014 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.
    
    // Memory allocator.
    //
    // This was originally based on tcmalloc, but has diverged quite a bit.
    // http://goog-perftools.sourceforge.net/doc/tcmalloc.html
    
    // The main allocator works in runs of pages.
    // Small allocation sizes (up to and including 32 kB) are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top