Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for NZ (0.03 sec)

  1. test/abi/f_ret_z_not.go

    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type Z struct {
    }
    
    type NZ struct {
    	x, y int
    }
    
    //go:noinline
    func f(x, y int) (Z, NZ, Z) {
    	var z Z
    	return z, NZ{x, y}, z
    }
    
    //go:noinline
    func g() (Z, NZ, Z) {
    	a, b, c := f(3, 4)
    	return c, b, a
    }
    
    func main() {
    	_, b, _ := g()
    	fmt.Println(b.x + b.y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 616 bytes
    - Viewed (0)
  2. src/runtime/malloc_test.go

    	fields := map[string][]func(any) error{
    		"Alloc": {nz, le(1e10)}, "TotalAlloc": {nz, le(1e11)}, "Sys": {nz, le(1e10)},
    		"Lookups": {eq(uint64(0))}, "Mallocs": {nz, le(1e10)}, "Frees": {nz, le(1e10)},
    		"HeapAlloc": {nz, le(1e10)}, "HeapSys": {nz, le(1e10)}, "HeapIdle": {le(1e10)},
    		"HeapInuse": {nz, le(1e10)}, "HeapReleased": {le(1e10)}, "HeapObjects": {nz, le(1e10)},
    		"StackInuse": {nz, le(1e10)}, "StackSys": {nz, le(1e10)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/math/fma.go

    	} else {
    		// Subtracting (pm1:pm2) - (zm1:zm2)
    		// TODO: should we special-case cancellation?
    		pm2, c = bits.Sub64(pm2, zm2, 0)
    		pm1, _ = bits.Sub64(pm1, zm1, c)
    		nz := lz(pm1, pm2)
    		pe -= nz
    		m, pm2 = shl(pm1, pm2, uint(nz-1))
    		m |= nonzero(pm2)
    	}
    
    	// Round and break ties to even
    	if pe > 1022+bias || pe == 1022+bias && (m+1<<9)>>63 == 1 {
    		// rounded value overflows exponent range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/image/jpeg/scan.go

    	return nil
    }
    
    // refineNonZeroes refines non-zero entries of b in zig-zag order. If nz >= 0,
    // the first nz zero entries are skipped over.
    func (d *decoder) refineNonZeroes(b *block, zig, zigEnd, nz, delta int32) (int32, error) {
    	for ; zig <= zigEnd; zig++ {
    		u := unzig[zig]
    		if b[u] == 0 {
    			if nz == 0 {
    				break
    			}
    			nz--
    			continue
    		}
    		bit, err := d.decodeBit()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/edwards25519_test.go

    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("X, Y, and Z do not specify a point on the curve\nX = %v\nY = %v\nZ = %v", p.x, p.y, p.z)
    		}
    		// xy = T/Z
    		lhs.Multiply(&p.x, &p.y)
    		rhs.Multiply(&p.z, &p.t)
    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("point %d is not valid\nX = %v\nY = %v\nZ = %v", i, p.x, p.y, p.z)
    		}
    	}
    }
    
    func TestGenerator(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. src/regexp/syntax/prog_test.go

    package syntax
    
    import "testing"
    
    var compileTests = []struct {
    	Regexp string
    	Prog   string
    }{
    	{"a", `  0	fail
      1*	rune1 "a" -> 2
      2	match
    `},
    	{"[A-M][n-z]", `  0	fail
      1*	rune "AM" -> 2
      2	rune "nz" -> 3
      3	match
    `},
    	{"", `  0	fail
      1*	nop -> 2
      2	match
    `},
    	{"a?", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 1, 3
      3	match
    `},
    	{"a??", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 3, 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tools/go-compile-verbose

    START="$(date -u +%s.%N)"
    
    # Output a message, with a timestamp matching istio log format
    function log() {
      delta=$(date +%s.%N --date="$START seconds ago")
      echo -e "$(date -u '+%Y-%m-%dT%H:%M:%S.%NZ')\t${delta}\t$*" >&2 >> /tmp/golog
    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. lib/time/zoneinfo.zip

    Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte Mexico/BajaSur Mexico/General NZ NZ-CHAT Navajo PRC PST8PDT Pacific/Apia Pacific/Auckland Pacific/Bougainville Pacific/Chatham Pacific/Chuuk Pacific/Easter Pacific/Efate Pacific/Enderbury Pacific/Fakaofo Pacific/Fiji Pacific/Funafuti Pacific/Galapagos Pacific/Gambier Pacific/Guadalcanal...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  9. src/debug/gosym/symtab.go

    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	var t Table
    	if pcln.isGo12() {
    		t.go12line = pcln
    	}
    	fname := make(map[uint16]string)
    	t.Syms = make([]Sym, 0, n)
    	nf := 0
    	nz := 0
    	lasttyp := uint8(0)
    	err = walksymtab(symtab, func(s sym) error {
    		n := len(t.Syms)
    		t.Syms = t.Syms[0 : n+1]
    		ts := &t.Syms[n]
    		ts.Type = s.typ
    		ts.Value = s.value
    		ts.GoType = s.gotype
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    ntdll.top ntr.br ntt nu nu.ca nu.it numata.gunma.jp numata.hokkaido.jp numazu.shizuoka.jp nuoro.it nv.us nx.cn ny-1.paas.massivegrid.net ny-2.paas.massivegrid.net ny.us nyaa.am nyan.to nyc nyc.mn nyc.museum nyny.museum nysa.pl nyuzen.toyama.jp nz nz.basketball nz.eu.org návuotna.no nååmesjevuemie.no nærøy.no nøtterøy.no o.bg o.se oamishirasato.chiba.jp oarai.ibaraki.jp obama.fukui.jp obama.nagasaki.jp obanazawa.yamagata.jp obi obihiro.hokkaido.jp obira.hokkaido.jp obninsk.su observer obu.aichi.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top