Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for MemBytes (0.21 sec)

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

    	switch last & 0xFF {
    	case 0, 0x66, 0x67:
    		// ignore
    	default:
    		prefix += last.String() + " "
    	}
    
    	op := inst.Op.String()
    	if plan9Suffix[inst.Op] {
    		s := inst.DataSize
    		if inst.MemBytes != 0 {
    			s = inst.MemBytes * 8
    		} else if inst.Args[1] == nil { // look for register-only 64-bit instruction, like PUSHQ AX
    			if r, ok := inst.Args[0].(Reg); ok && RAX <= r && r <= R15 {
    				s = 64
    			}
    		}
    		switch s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    				op += byteSizeSuffix(inst.DataSize / 8)
    			} else if inst.Mode == 64 {
    				op += "q"
    			} else {
    				op += byteSizeSuffix(inst.MemBytes)
    			}
    
    		default:
    			if isFloat(inst.Op) {
    				// I can't explain any of this, but it's what libopcodes does.
    				switch inst.MemBytes {
    				default:
    					if (inst.Op == FLD || inst.Op == FSTP) && isMem(inst.Args[0]) {
    						op += "t"
    					}
    				case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			xArgM80bcd,
    			xArgM80dec,
    			xArgM80fp,
    			xArgM94108byte,
    			xArgMem:
    			if !haveMem {
    				inst.Op = 0
    				break Decode
    			}
    			inst.Args[narg] = mem
    			inst.MemBytes = int(memBytes[decodeOp(x)])
    			if mem.Base == RIP {
    				inst.PCRel = displen
    				inst.PCRelOff = dispoff
    			}
    			narg++
    
    		case xArgPtr16colon16:
    			inst.Args[narg] = Imm(immc >> 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    	return int64(r.MemAllocs) / int64(r.N)
    }
    
    // AllocedBytesPerOp returns the "B/op" metric,
    // which is calculated as r.MemBytes / r.N.
    func (r BenchmarkResult) AllocedBytesPerOp() int64 {
    	if v, ok := r.Extra["B/op"]; ok {
    		return int64(v)
    	}
    	if r.N <= 0 {
    		return 0
    	}
    	return int64(r.MemBytes) / int64(r.N)
    }
    
    // String returns a summary of the benchmark results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	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.
    	Len      int      // length of encoded instruction in bytes
    	PCRel    int      // length of PC-relative address in instruction encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/testing/sub_test.go

    			// simply verify the lower bound.
    			if got := b.result.MemAllocs; got < 2 {
    				t.Errorf("MemAllocs was %v; want 2", got)
    			}
    			if got := b.result.MemBytes; got < 2*bufSize {
    				t.Errorf("MemBytes was %v; want %v", got, 2*bufSize)
    			}
    		},
    	}, {
    		desc: "cleanup is called",
    		f: func(b *B) {
    			var calls, cleanups, innerCalls, innerCleanups int
    			b.Run("", func(b *B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    func (ws *workerServer) minimizeInput(ctx context.Context, vals []any, mem *sharedMem, args minimizeArgs) (success bool, retErr error) {
    	keepCoverage := args.KeepCoverage
    	memBytes := mem.valueRef()
    	bPtr := &memBytes
    	count := &mem.header().count
    	shouldStop := func() bool {
    		return ctx.Err() != nil ||
    			(args.Limit > 0 && *count >= args.Limit)
    	}
    	if shouldStop() {
    		return false, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. pkg/apis/certificates/helpers.go

    	"errors"
    	"fmt"
    	"reflect"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // ParseCSR extracts the CSR from the bytes and decodes it.
    func ParseCSR(pemBytes []byte) (*x509.CertificateRequest, error) {
    	block, _ := pem.Decode(pemBytes)
    	if block == nil || block.Type != "CERTIFICATE REQUEST" {
    		return nil, errors.New("PEM block type must be CERTIFICATE REQUEST")
    	}
    	csr, err := x509.ParseCertificateRequest(block.Bytes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	client := &http.Client{
    		Transport: http.DefaultTransport.(*http.Transport).Clone(),
    	}
    
    	pemBytes, err := os.ReadFile(certFile)
    	if err != nil {
    		return nil, err
    	}
    
    	certpool := x509.NewCertPool()
    	if !certpool.AppendCertsFromPEM(pemBytes) {
    		return nil, fmt.Errorf("no certificates found in %s", certFile)
    	}
    	client.Transport.(*http.Transport).TLSClientConfig = &tls.Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Benchmark", Func, 0},
    		{"BenchmarkResult", Type, 0},
    		{"BenchmarkResult.Bytes", Field, 0},
    		{"BenchmarkResult.Extra", Field, 13},
    		{"BenchmarkResult.MemAllocs", Field, 1},
    		{"BenchmarkResult.MemBytes", Field, 1},
    		{"BenchmarkResult.N", Field, 0},
    		{"BenchmarkResult.T", Field, 0},
    		{"Cover", Type, 2},
    		{"Cover.Blocks", Field, 2},
    		{"Cover.Counters", Field, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top