Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for addrsize (0.15 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	Opcode   uint32   // Encoded opcode bits, left aligned (first byte is Opcode>>24, etc)
    	Args     Args     // Instruction arguments, in Intel order
    	Mode     int      // processor mode in bits: 16, 32, or 64
    	AddrSize int      // address size in bits: 16, 32, or 64
    	DataSize int      // operand size in bits: 16, 32, or 64
    	MemBytes int      // size of memory argument in bytes: 1, 2, 4, 8, 16, and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    		// versions.
    		return DecodeError{"line", hdrOffset, fmt.Sprintf("unknown line table version %d", r.version)}
    	}
    	if r.version >= 5 {
    		r.addrsize = int(buf.uint8())
    		r.segmentSelectorSize = int(buf.uint8())
    	} else {
    		r.addrsize = buf.format.addrsize()
    		r.segmentSelectorSize = 0
    	}
    	var headerLength Offset
    	if dwarf64 {
    		headerLength = Offset(buf.uint64())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    				}
    			}
    			inst.Op = MOVNTSS
    		}
    	}
    
    	// Add implicit arguments.
    	switch inst.Op {
    	case MONITOR:
    		inst.Args[0] = EDX
    		inst.Args[1] = ECX
    		inst.Args[2] = EAX
    		if inst.AddrSize == 16 {
    			inst.Args[2] = AX
    		}
    
    	case MWAIT:
    		if inst.Mode == 64 {
    			inst.Args[0] = RCX
    			inst.Args[1] = RAX
    		} else {
    			inst.Args[0] = ECX
    			inst.Args[1] = EAX
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/debug/dwarf/entry.go

    	for len(buf.data) > 0 {
    		low := buf.addr()
    		high := buf.addr()
    
    		if low == 0 && high == 0 {
    			break
    		}
    
    		if low == ^uint64(0)>>uint((8-u.addrsize())*8) {
    			base = high
    		} else {
    			ret = append(ret, [2]uint64{base + low, base + high})
    		}
    	}
    
    	return ret, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  5. cmd/site-replication-metrics.go

    			Bytes: rt.SinceUptime.Bytes,
    		},
    		ErrCounts: errCounts,
    	}
    }
    
    func (rt *RTimedMetrics) addsize(size int64, err error) {
    	// failures seen since uptime
    	atomic.AddInt64(&rt.SinceUptime.Bytes, size)
    	atomic.AddInt64(&rt.SinceUptime.Count, 1)
    	rt.LastMinute.addsize(size)
    	rt.LastHour.addsize(size)
    	if err != nil && minio.ToErrorResponse(err).Code == "AccessDenied" {
    		if rt.ErrCounts == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/runtime/profbuf.go

    	skip := 0
    	if wd+2+int(b.hdrsize)+len(stk) > len(b.data) {
    		b.data[wd] = 0
    		skip = len(b.data) - wd
    		nd -= skip
    		wd = 0
    	}
    	data := b.data[wd:]
    	data[0] = uint64(2 + b.hdrsize + uintptr(len(stk))) // length
    	data[1] = uint64(now)                               // time stamp
    	// header, zero-padded
    	i := copy(data[2:2+b.hdrsize], hdr)
    	clear(data[2+i : 2+b.hdrsize])
    	for i, pc := range stk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. cmd/bucket-stats.go

    		bs.ReplicatedSize > 0 ||
    		bs.ReplicaSize > 0
    }
    
    func (bs *BucketReplicationStat) updateXferRate(sz int64, duration time.Duration) {
    	if sz > minLargeObjSize {
    		bs.XferRateLrg.addSize(sz, duration)
    	} else {
    		bs.XferRateSml.addSize(sz, duration)
    	}
    }
    
    // RMetricName - name of replication metric
    type RMetricName string
    
    const (
    	// Large - objects larger than 128MiB
    	Large RMetricName = "Large"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		return &cost
    	case "containsIP":
    		if len(args) >= 2 {
    			cidrSize := actualSize(args[0])
    			otherSize := actualSize(args[1])
    
    			// This is the base cost of comparing two byte lists.
    			// We will compare only up to the length of the CIDR prefix in bytes, so use the cidrSize twice.
    			cost := uint64(math.Ceil(float64(cidrSize+cidrSize) * common.StringTraversalCostFactor))
    
    			if overloadId == "cidr_contains_ip_string" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/debug/plan9obj/file.go

    		Bss:         ph.Bss,
    		Entry:       uint64(ph.Entry),
    		PtrSize:     4,
    		LoadAddress: 0x1000,
    		HdrSize:     4 * 8,
    	}}
    
    	if ph.Magic&Magic64 != 0 {
    		if err := binary.Read(sr, binary.BigEndian, &f.Entry); err != nil {
    			return nil, err
    		}
    		f.PtrSize = 8
    		f.LoadAddress = 0x200000
    		f.HdrSize += 8
    	}
    
    	var sects = []struct {
    		name string
    		size uint32
    	}{
    		{"text", ph.Text},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/internal/xcoff/ar.go

    	Flfstmoff  [20]byte      // First member offset
    	Fllstmoff  [20]byte      // Last member offset
    	Flfreeoff  [20]byte      // First member on free list offset
    }
    
    type bigarMemberHeader struct {
    	Arsize   [20]byte // File member size
    	Arnxtmem [20]byte // Next member pointer
    	Arprvmem [20]byte // Previous member pointer
    	Ardate   [12]byte // File member date
    	Aruid    [12]byte // File member uid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top