Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 236 for 0x7fff (0.09 sec)

  1. src/runtime/defs_arm_linux.go

    	SIGSYS    = C.SIGSYS
    
    	FPE_INTDIV = C.FPE_INTDIV & 0xFFFF
    	FPE_INTOVF = C.FPE_INTOVF & 0xFFFF
    	FPE_FLTDIV = C.FPE_FLTDIV & 0xFFFF
    	FPE_FLTOVF = C.FPE_FLTOVF & 0xFFFF
    	FPE_FLTUND = C.FPE_FLTUND & 0xFFFF
    	FPE_FLTRES = C.FPE_FLTRES & 0xFFFF
    	FPE_FLTINV = C.FPE_FLTINV & 0xFFFF
    	FPE_FLTSUB = C.FPE_FLTSUB & 0xFFFF
    
    	BUS_ADRALN = C.BUS_ADRALN & 0xFFFF
    	BUS_ADRERR = C.BUS_ADRERR & 0xFFFF
    	BUS_OBJERR = C.BUS_OBJERR & 0xFFFF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: 0x7fff < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVHreg || !(0x7fff < c) {
    			break
    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_LANG_lo_user = 0x8000
    	DW_LANG_hi_user = 0xffff
    )
    
    // Table 32
    const (
    	DW_ID_case_sensitive   = 0x00
    	DW_ID_up_case          = 0x01
    	DW_ID_down_case        = 0x02
    	DW_ID_case_insensitive = 0x03
    )
    
    // Table 33
    const (
    	DW_CC_normal  = 0x01
    	DW_CC_program = 0x02
    	DW_CC_nocall  = 0x03
    	DW_CC_lo_user = 0x40
    	DW_CC_hi_user = 0xff
    )
    
    // Table 34
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  4. src/image/color/ycbcr.go

    	// returns values in the range [0, 0xffff] instead of [0, 0xff].
    
    	w := 0xffff - uint32(c.K)*0x101
    	r := (0xffff - uint32(c.C)*0x101) * w / 0xffff
    	g := (0xffff - uint32(c.M)*0x101) * w / 0xffff
    	b := (0xffff - uint32(c.Y)*0x101) * w / 0xffff
    	return r, g, b, 0xffff
    }
    
    // CMYKModel is the [Model] for CMYK colors.
    var CMYKModel Model = ModelFunc(cmykModel)
    
    func cmykModel(c Color) Color {
    	if _, ok := c.(CMYK); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. cni/pkg/iptables/testdata/default.golden

    iptables -t mangle -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    iptables -t nat -A ISTIO_OUTPUT ! -o lo -p udp -m udp --dport 53 -j REDIRECT --to-port 15053
    iptables -t nat -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue9604.go

    package main
    
    var x uint16 = 0xffff
    var y uint16 = 0xfffe
    var a uint16 = 0x7000
    var b uint16 = 0x9000
    
    func main() {
    	// Make sure we truncate to smaller-width types after evaluating expressions.
    	// This is a problem for arm where there is no 16-bit comparison op.
    	if ^x != 0 {
    		panic("^uint16(0xffff) != 0")
    	}
    	if ^y != 1 {
    		panic("^uint16(0xfffe) != 1")
    	}
    	if -x != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 15 23:50:01 UTC 2015
    - 631 bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_386.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

        val flags = buf.readShort().toInt() and 0xffff
        require(flags shr 15 != 0) { "not a response" }
    
        val responseCode = flags and 0xf
    
        if (responseCode == NXDOMAIN) {
          throw UnknownHostException("$hostname: NXDOMAIN")
        } else if (responseCode == SERVFAIL) {
          throw UnknownHostException("$hostname: SERVFAIL")
        }
    
        val questionCount = buf.readShort().toInt() and 0xffff
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_arm.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (ANDconst [c] y:(MOVHZreg _))
    	// cond: c&0xFFFF == 0xFFFF
    	// result: y
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		y := v_0
    		if y.Op != OpPPC64MOVHZreg || !(c&0xFFFF == 0xFFFF) {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (ANDconst [0xFFFF] (MOVHreg x))
    	// result: (MOVHZreg x)
    	for {
    		if auxIntToInt64(v.AuxInt) != 0xFFFF || v_0.Op != OpPPC64MOVHreg {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top