Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for rousing (0.21 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Usage of rounding with invalid operands.
    	VADDPD.RU_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RD_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RZ_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RN_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RU_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 14 00:03:57 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/line_test.go

    		{"VADDPD.Z.Z X0, X1, X2", `Z suffix should be the last; duplicate suffix "Z"`},
    		{"VADDPD.SAE.BCST X0, X1, X2", `can't combine rounding/SAE and broadcast`},
    		{"VADDPD.BCST.SAE X0, X1, X2", `can't combine rounding/SAE and broadcast`},
    		{"VADDPD.BCST.Z.SAE X0, X1, X2", `Z suffix should be the last; can't combine rounding/SAE and broadcast`},
    		{"VADDPD.SAE.SAE X0, X1, X2", `duplicate suffix "SAE"`},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/2-unique.md

    ### New unique package
    
    The new [unique](/pkg/unique) package provides facilities for
    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 13:37:36 GMT 2024
    - 579 bytes
    - Viewed (0)
  4. doc/go_spec.html

    </pre>
    
    <p>
    Implementation restriction: A compiler may use rounding while
    computing untyped floating-point or complex constant expressions; see
    the implementation restriction in the section
    on <a href="#Constants">constants</a>.  This rounding may cause a
    floating-point constant expression to be invalid in an integer
    context, even if it would be integral when calculated using infinite
    precision, and vice versa.
    </p>
    
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. src/bytes/bytes.go

    	// is too large we are basically just thrashing the CPU D-cache.
    	// So if the result length is larger than an empirically-found
    	// limit (8KB), we stop growing the source string once the limit
    	// is reached and keep reusing the same source string - that
    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    	// This yields significant speedups (up to +100%) in cases where
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    		}
    		for {
    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    						p.errorf("instruction suffix expected identifier, found %s", str)
    					}
    					cond = cond + "." + str
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const IPPROTO_RAW = 255
    pkg syscall (darwin-386), const IPPROTO_RCCMON = 10
    pkg syscall (darwin-386), const IPPROTO_RDP = 27
    pkg syscall (darwin-386), const IPPROTO_ROUTING = 43
    pkg syscall (darwin-386), const IPPROTO_RSVP = 46
    pkg syscall (darwin-386), const IPPROTO_RVD = 66
    pkg syscall (darwin-386), const IPPROTO_SATEXPAK = 64
    pkg syscall (darwin-386), const IPPROTO_SATMON = 69
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const IPPROTO_RAW ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_RCCMON ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_RDP ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_ROUTING ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_RSVP ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_RVD ideal-int
    pkg syscall (freebsd-386-cgo), const IPPROTO_SATEXPAK ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. src/archive/zip/reader.go

    	if b.uint32() != f.CRC32 {
    		return ErrChecksum
    	}
    
    	// The two sizes that follow here can be either 32 bits or 64 bits
    	// but the spec is not very clear on this and different
    	// interpretations has been made causing incompatibilities. We
    	// already have the sizes from the central directory so we can
    	// just ignore these.
    
    	return nil
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IPPROTO_RDP = 27 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_RDP ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ROUTING = 43 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ROUTING ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_RSVP = 46 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_RSVP ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top