Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Prog64 (0.19 sec)

  1. src/cmd/internal/buildid/buildid_test.go

    				t.Error(err)
    				continue
    			}
    
    			phoff := hdr.Phoff
    			phnum := int(hdr.Phnum)
    			phsize := uint64(hdr.Phentsize)
    
    			for i := 0; i < phnum; i++ {
    				var phdr elf.Prog64
    				if err := binary.Read(bytes.NewReader(data[phoff:]), order, &phdr); err != nil {
    					t.Error(err)
    					continue
    				}
    
    				if elf.ProgType(phdr.Type) == elf.PT_NOTE {
    					// Increase the size so we keep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/list9.go

    	if a >= C_NONE && a <= C_NCLASS {
    		s = cnames9[a]
    	}
    	var fp string
    	fp += s
    	return fp
    }
    
    func ConstantToCRbit(c int64) (int16, bool) {
    	reg64 := REG_CRBIT0 + c
    	success := reg64 >= REG_CR0LT && reg64 <= REG_CR7SO
    	return int16(reg64), success
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. test/codegen/rotate.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    import "math/bits"
    
    // ------------------- //
    //    const rotates    //
    // ------------------- //
    
    func rot64(x uint64) uint64 {
    	var a uint64
    
    	// amd64:"ROLQ\t[$]7"
    	// ppc64x:"ROTL\t[$]7"
    	// loong64: "ROTRV\t[$]57"
    	// riscv64: "RORI\t[$]57"
    	a += x<<7 | x>>57
    
    	// amd64:"ROLQ\t[$]8"
    	// arm64:"ROR\t[$]56"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/lca.go

    	// on the tour from p1 to p2.  We've precomputed minimum
    	// depth blocks for powers-of-two subsequences of the tour.
    	// Combine the right two precomputed values to get the answer.
    	logS := uint(log64(int64(p2 - p1)))
    	bid1 := lca.rangeMin[logS][p1]
    	bid2 := lca.rangeMin[logS][p2-1<<logS+1]
    	if lca.blocks[bid1].depth < lca.blocks[bid2].depth {
    		return lca.blocks[bid1].b
    	}
    	return lca.blocks[bid2].b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top