Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for 0xF (0.07 sec)

  1. src/cmd/asm/internal/arch/arm.go

    	if !ok {
    		return false
    	}
    	/* hack to make B.NE etc. work: turn it into the corresponding conditional */
    	if prog.As == arm.AB {
    		prog.As = bcode[(bits^arm.C_SCOND_XOR)&0xf]
    		bits = (bits &^ 0xf) | arm.C_SCOND_NONE
    	}
    	prog.Scond = bits
    	return true
    }
    
    // ParseARMCondition parses the conditions attached to an ARM instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/runtime/defs_linux_s390x.go

    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

        val buf = Buffer()
        buf.write(byteString)
        buf.readShort() // query id
    
        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")
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd_amd64.go

    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x10
    	_SIGSTOP   = 0x11
    	_SIGTSTP   = 0x12
    	_SIGCONT   = 0x13
    	_SIGCHLD   = 0x14
    	_SIGTTIN   = 0x15
    	_SIGTTOU   = 0x16
    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/defs1_netbsd_arm64.go

    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGEMT    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    	_SIGBUS    = 0xa
    	_SIGSEGV   = 0xb
    	_SIGSYS    = 0xc
    	_SIGPIPE   = 0xd
    	_SIGALRM   = 0xe
    	_SIGTERM   = 0xf
    	_SIGURG    = 0x10
    	_SIGSTOP   = 0x11
    	_SIGTSTP   = 0x12
    	_SIGCONT   = 0x13
    	_SIGCHLD   = 0x14
    	_SIGTTIN   = 0x15
    	_SIGTTOU   = 0x16
    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/runtime/defs_linux_arm.go

    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART     = 0x10000000
    	_SA_ONSTACK     = 0x8000000
    	_SA_RESTORER    = 0 // unused on ARM
    	_SA_SIGINFO     = 0x4
    	_SI_KERNEL      = 0x80
    	_SI_TIMER       = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/runtime/defs_aix_ppc64.go

    	_SIGURG     = 0x10
    	_SIGXCPU    = 0x18
    	_SIGXFSZ    = 0x19
    	_SIGVTALRM  = 0x22
    	_SIGPROF    = 0x20
    	_SIGWINCH   = 0x1c
    	_SIGIO      = 0x17
    	_SIGPWR     = 0x1d
    	_SIGSYS     = 0xc
    	_SIGTERM    = 0xf
    	_SIGEMT     = 0x7
    	_SIGWAITING = 0x27
    
    	_FPE_INTDIV = 0x14
    	_FPE_INTOVF = 0x15
    	_FPE_FLTDIV = 0x16
    	_FPE_FLTOVF = 0x17
    	_FPE_FLTUND = 0x18
    	_FPE_FLTRES = 0x19
    	_FPE_FLTINV = 0x1a
    	_FPE_FLTSUB = 0x1b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/defs_linux_arm64.go

    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x0 // Only used on intel
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_ppc64.go

    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_riscv64.go

    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x0
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top