Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for mask (0.26 sec)

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

    	// AVX2GATHER mask/index/dest #UD cases.
    	VPGATHERQQ Y2, (BP)(X2*2), Y2   // ERROR "mask, index, and destination registers should be distinct"
    	VPGATHERQQ Y2, (BP)(X2*2), Y7   // ERROR "mask, index, and destination registers should be distinct"
    	VPGATHERQQ Y2, (BP)(X7*2), Y2   // ERROR "mask, index, and destination registers should be distinct"
    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. api/go1.1.txt

    pkg syscall (freebsd-386), const BPF_T_FAST ideal-int
    pkg syscall (freebsd-386), const BPF_T_FLAG_MASK = 768
    pkg syscall (freebsd-386), const BPF_T_FLAG_MASK ideal-int
    pkg syscall (freebsd-386), const BPF_T_FORMAT_MASK = 3
    pkg syscall (freebsd-386), const BPF_T_FORMAT_MASK ideal-int
    pkg syscall (freebsd-386), const BPF_T_MICROTIME = 0
    pkg syscall (freebsd-386), const BPF_T_MICROTIME ideal-int
    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)
  3. api/go1.3.txt

    pkg syscall (freebsd-386), const MAP_ALIGNED_SUPER = 16777216
    pkg syscall (freebsd-386), const MAP_ALIGNED_SUPER ideal-int
    pkg syscall (freebsd-386), const MAP_ALIGNMENT_MASK = -16777216
    pkg syscall (freebsd-386), const MAP_ALIGNMENT_MASK ideal-int
    pkg syscall (freebsd-386), const MAP_ALIGNMENT_SHIFT = 24
    pkg syscall (freebsd-386), const MAP_ALIGNMENT_SHIFT ideal-int
    pkg syscall (freebsd-386), const MSG_CMSG_CLOEXEC = 262144
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <pre>
    const (
    	bit0, mask0 = 1 &lt;&lt; iota, 1&lt;&lt;iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <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

    				b = append(b, replacement...)
    			}
    			continue
    		}
    		invalid = false
    		b = append(b, s[i:i+wid]...)
    		i += wid
    	}
    	return b
    }
    
    // isSeparator reports whether the rune could mark a word boundary.
    // TODO: update when package unicode captures more of the properties.
    func isSeparator(r rune) bool {
    	// ASCII alphanumerics and underscore are not separators
    	if r <= 0x7F {
    		switch {
    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. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_T_FAST ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_T_FLAG_MASK = 768 #53466
    pkg syscall (freebsd-riscv64), const BPF_T_FLAG_MASK ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_T_FORMAT_MASK = 3 #53466
    pkg syscall (freebsd-riscv64), const BPF_T_FORMAT_MASK ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_T_MICROTIME = 0 #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)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IPV6_FAITH ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK = 4294967055
    pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWINFO_MASK ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK = 4294905600
    pkg syscall (netbsd-arm64-cgo), const IPV6_FLOWLABEL_MASK ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPV6_FRAGTTL = 120
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  8. doc/asm.html

    and declares <code>runtime·tlsoffset</code>, a 4-byte, implicitly zeroed variable that
    contains no pointers.
    </p>
    
    <p>
    There may be one or two arguments to the directives.
    If there are two, the first is a bit mask of flags,
    which can be written as numeric expressions, added or or-ed together,
    or can be set symbolically for easier absorption by a human.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  9. src/archive/tar/strconv.go

    	if len(b) > 0 && b[0]&0x80 != 0 {
    		// Handling negative numbers relies on the following identity:
    		//	-a-1 == ^a
    		//
    		// If the number is negative, we use an inversion mask to invert the
    		// data bytes and treat the value as an unsigned number.
    		var inv byte // 0x00 if positive or zero, 0xff if negative
    		if b[0]&0x40 != 0 {
    			inv = 0xff
    		}
    
    		var x uint64
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_T_FAST ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_FLAG_MASK = 768
    pkg syscall (freebsd-arm64), const BPF_T_FLAG_MASK ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_FORMAT_MASK = 3
    pkg syscall (freebsd-arm64), const BPF_T_FORMAT_MASK ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME = 0
    pkg syscall (freebsd-arm64), const BPF_T_MICROTIME ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top