Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for iota (0.04 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	}
    	log.Fatalf("Error no pfxstore for %v\n", a)
    	return 0, 0
    }
    
    func oclass(a *obj.Addr) int {
    	return int(a.Class) - 1
    }
    
    const (
    	D_FORM = iota
    	DS_FORM
    )
    
    // This function determines when a non-indexed load or store is D or
    // DS form for use in finding the size of the offset field in the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	sizeSS2  = 6
    	sizeSS3  = 6
    	sizeSS4  = 6
    	sizeSS5  = 6
    	sizeSS6  = 6
    	sizeSSE  = 6
    	sizeSSF  = 6
    )
    
    // instruction format variations
    type form int
    
    const (
    	_a form = iota
    	_b
    	_c
    	_d
    	_e
    	_f
    )
    
    func zE(op uint32, asm *[]byte) {
    	*asm = append(*asm, uint8(op>>8), uint8(op))
    }
    
    func zI(op, i1 uint32, asm *[]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func MOVCONST(d int64, s int, rt int) uint32 {
    	return uint32(((d>>uint(s*16))&0xFFFF)<<5) | uint32(s)&3<<21 | uint32(rt&31)
    }
    
    const (
    	// Optab.flag
    	LFROM        = 1 << iota // p.From uses constant pool
    	LTO                      // p.To uses constant pool
    	NOTUSETMP                // p expands to multiple instructions, but does NOT use REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    func BenchmarkServerHandlerTypeLen(b *testing.B) {
    	benchmarkHandler(b, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Content-Type", "text/html")
    		w.Header().Set("Content-Length", strconv.Itoa(len(response)))
    		w.Write(response)
    	}))
    }
    
    // A Content-Type is set, but no length. No sniffing, but will count the Content-Length.
    func BenchmarkServerHandlerNoLen(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    func allowedVersion(v string) bool {
    	// Special case: no requirement.
    	if v == "" {
    		return true
    	}
    	return gover.Compare(gover.Local(), v) >= 0
    }
    
    const (
    	needBuild uint32 = 1 << iota
    	needCgoHdr
    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    // build is the action for building a single package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    		B string
    		C int32
    	}
    	var (
    		gotA  padded
    		gotB  uint32
    		wantA = padded{"3", 4}
    		wantB = uint32(5)
    	)
    	f := func(a padded, b uint32) {
    		gotA, gotB = a, b
    	}
    	ValueOf(f).Call([]Value{ValueOf(wantA), ValueOf(wantB)})
    	if gotA != wantA || gotB != wantB {
    		t.Errorf("function called with (%v, %v), want (%v, %v)", gotA, gotB, wantA, wantB)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top