Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for addr1 (0.06 sec)

  1. src/debug/elf/elf.go

    // ELF32 Section header.
    type Section32 struct {
    	Name      uint32 /* Section name (index into the section header string table). */
    	Type      uint32 /* Section type. */
    	Flags     uint32 /* Section flags. */
    	Addr      uint32 /* Address in memory image. */
    	Off       uint32 /* Offset in file. */
    	Size      uint32 /* Size in bytes. */
    	Link      uint32 /* Index of a related section. */
    	Info      uint32 /* Depends on section type. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    				count += len(ss.Addresses)
    				for i := range ss.Addresses {
    					if len(list) == max {
    						more = true
    						// the next loop is redundant
    						break
    					}
    					addr := &ss.Addresses[i]
    					hostPort := net.JoinHostPort(addr.IP, strconv.Itoa(int(port.Port)))
    					list = append(list, hostPort)
    				}
    			}
    		}
    	}
    
    	ret := strings.Join(list, ",")
    	if more {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	case OpZeroExt8to64:
    		v.Op = OpRISCV64MOVBUreg
    		return true
    	}
    	return false
    }
    func rewriteValueRISCV64_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVaddr {sym} [0] base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpRISCV64MOVaddr)
    		v.AuxInt = int32ToAuxInt(0)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top