Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for 0x7fff (0.13 sec)

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

    	SOCK_CLOEXEC                     = 0x80000
    	SOCK_DGRAM                       = 0x1
    	SOCK_NONBLOCK                    = 0x80
    	SOCK_STREAM                      = 0x2
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x1009
    	SO_ATTACH_BPF                    = 0x32
    	SO_ATTACH_REUSEPORT_CBPF         = 0x33
    	SO_ATTACH_REUSEPORT_EBPF         = 0x34
    	SO_BINDTODEVICE                  = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    		start := f.fset.Position(block.startByte)
    		end := f.fset.Position(block.endByte)
    
    		start, end = dedup(start, end)
    
    		fmt.Fprintf(w, "\t\t%d, %d, %#x, // [%d]\n", start.Line, end.Line, (end.Column&0xFFFF)<<16|(start.Column&0xFFFF), i)
    	}
    
    	// Close the position array.
    	fmt.Fprintf(w, "\t},\n")
    
    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tNumStmt: [%d]uint16{\n", len(f.blocks))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	SOCK_CLOEXEC                     = 0x80000
    	SOCK_DGRAM                       = 0x1
    	SOCK_NONBLOCK                    = 0x80
    	SOCK_STREAM                      = 0x2
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x1009
    	SO_ATTACH_BPF                    = 0x32
    	SO_ATTACH_REUSEPORT_CBPF         = 0x33
    	SO_ATTACH_REUSEPORT_EBPF         = 0x34
    	SO_BINDTODEVICE                  = 0x19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/strconv/quote.go

    	case '\t':
    		buf = append(buf, `\t`...)
    	case '\v':
    		buf = append(buf, `\v`...)
    	default:
    		switch {
    		case r < ' ' || r == 0x7f:
    			buf = append(buf, `\x`...)
    			buf = append(buf, lowerhex[byte(r)>>4])
    			buf = append(buf, lowerhex[byte(r)&0xF])
    		case !utf8.ValidRune(r):
    			r = 0xFFFD
    			fallthrough
    		case r < 0x10000:
    			buf = append(buf, `\u`...)
    			for s := 12; s >= 0; s -= 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/math/big/nat_test.go

    	{"375", "249", "388", "175"},
    	{"375", "18446744073709551801", "388", "175"},
    	{"0", "0x40000000000000", "0x200", "0"},
    	{"0xeffffff900002f00", "0x40000000000000", "0x200", "0"},
    	{"5", "1435700818", "72", "49"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    	}
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeFrameAt(pos, size uint64) bool {
    	l.data.b[pos%uint64(len(l.data.b))] = uint8(size)
    	l.data.b[(pos+1)%uint64(len(l.data.b))] = uint8(size >> 8)
    	return size <= 0xFFFF
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeSync(tick, nano uint64) {
    	l.tick, l.nano = tick, nano
    	l.ensure(debugLogHeaderSize)
    	l.writeFrameAt(l.write, 0)
    	l.write += debugLogHeaderSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	SOCK_CLOEXEC                     = 0x400000
    	SOCK_DGRAM                       = 0x2
    	SOCK_NONBLOCK                    = 0x4000
    	SOCK_STREAM                      = 0x1
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x8000
    	SO_ATTACH_BPF                    = 0x34
    	SO_ATTACH_REUSEPORT_CBPF         = 0x35
    	SO_ATTACH_REUSEPORT_EBPF         = 0x36
    	SO_BINDTODEVICE                  = 0xd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    }
    
    func countPrefix(inst *Inst, target Prefix) int {
    	n := 0
    	for _, p := range inst.Prefix {
    		if p&0xFF == target&0xFF {
    			n++
    		}
    	}
    	return n
    }
    
    func markLastImplicit(inst *Inst, prefix Prefix) bool {
    	for i := len(inst.Prefix) - 1; i >= 0; i-- {
    		p := inst.Prefix[i]
    		if p&0xFF == prefix {
    			inst.Prefix[i] |= PrefixImplicit
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            if ( localHostname == null || localHostname.length() == 0 ) {
                byte[] addr = localInetAddress.getAddress();
                localHostname = "JCIFS" + ( addr[ 2 ] & 0xFF ) + "_" + ( addr[ 3 ] & 0xFF ) + "_"
                        + Hexdump.toHexString((int) ( Math.random() * 0xFF ), 2);
            }
    
            /*
             * Create an NbtAddress for the local interface with
             * the name deduced above possibly with scope applied and
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  10. src/encoding/xml/xml_test.go

    		}
    	}
    }
    
    func TestIsInCharacterRange(t *testing.T) {
    	invalid := []rune{
    		utf8.MaxRune + 1,
    		0xD800, // surrogate min
    		0xDFFF, // surrogate max
    		-1,
    	}
    	for _, r := range invalid {
    		if isInCharacterRange(r) {
    			t.Errorf("rune %U considered valid", r)
    		}
    	}
    }
    
    var procInstTests = []struct {
    	input  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top