Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for 0xF (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	AF_DECnet                         = 0xc
    	AF_DLI                            = 0xd
    	AF_E164                           = 0x1a
    	AF_ECMA                           = 0x8
    	AF_HYLINK                         = 0xf
    	AF_IEEE80211                      = 0x20
    	AF_IMPLINK                        = 0x3
    	AF_INET                           = 0x2
    	AF_INET6                          = 0x18
    	AF_IPX                            = 0x17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go

    	AF_DECnet                         = 0xc
    	AF_DLI                            = 0xd
    	AF_E164                           = 0x1a
    	AF_ECMA                           = 0x8
    	AF_HYLINK                         = 0xf
    	AF_IEEE80211                      = 0x20
    	AF_IMPLINK                        = 0x3
    	AF_INET                           = 0x2
    	AF_INET6                          = 0x18
    	AF_IPX                            = 0x17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  3. src/runtime/defs_dragonfly_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: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_ppc64le.go

    	IFLA_COST           = 0x8
    	IFLA_PRIORITY       = 0x9
    	IFLA_MASTER         = 0xa
    	IFLA_WIRELESS       = 0xb
    	IFLA_PROTINFO       = 0xc
    	IFLA_TXQLEN         = 0xd
    	IFLA_MAP            = 0xe
    	IFLA_WEIGHT         = 0xf
    	IFLA_OPERSTATE      = 0x10
    	IFLA_LINKMODE       = 0x11
    	IFLA_LINKINFO       = 0x12
    	IFLA_NET_NS_PID     = 0x13
    	IFLA_IFALIAS        = 0x14
    	IFLA_MAX            = 0x22
    	RT_SCOPE_UNIVERSE   = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/path.go

    	const hex = "0123456789abcdef"
    	p := make([]byte, 0, len(s)+2*n)
    	for r := 0; r < len(s); r++ {
    		if c := s[r]; c <= ' ' || (c == '.' && r > slash) || c == '%' || c == '"' || c >= 0x7F {
    			p = append(p, '%', hex[c>>4], hex[c&0xF])
    		} else {
    			p = append(p, c)
    		}
    	}
    
    	return string(p)
    }
    
    // PrefixToPath is the inverse of PathToPrefix, replacing escape sequences with
    // the original character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
            outData[outIndex] = (byte) (b0 << 2 & 0xfc | b1 >> 4 & 0x3);
            outData[outIndex + 1] = (byte) (b1 << 4 & 0xf0 | b2 >> 2 & 0xf);
            outData[outIndex + 2] = (byte) (b2 << 6 & 0xc0 | b3 & 0x3f);
        }
    
        private static void decode1byte(final String inData, final int inIndex, final byte[] outData, final int outIndex) {
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_loong64.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
    	_SA_RESTORER = 0x0
    
    	_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.4K bytes
    - Viewed (0)
  8. src/runtime/defs_openbsd_386.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
    - 2.9K bytes
    - Viewed (0)
  9. src/runtime/defs_openbsd_riscv64.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
    - 2.9K bytes
    - Viewed (0)
  10. src/log/slog/json_handler.go

    				char('n')
    			case '\r':
    				char('r')
    			case '\t':
    				char('t')
    			default:
    				// This encodes bytes < 0x20 except for \t, \n and \r.
    				str(`u00`)
    				char(hex[b>>4])
    				char(hex[b&0xF])
    			}
    			i++
    			start = i
    			continue
    		}
    		c, size := utf8.DecodeRuneInString(s[i:])
    		if c == utf8.RuneError && size == 1 {
    			if start < i {
    				str(s[start:i])
    			}
    			str(`\ufffd`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top