Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for word65 (0.11 sec)

  1. src/runtime/mbitmap.go

    	// addr is the address the iterator is currently working from and describes
    	// the address of the first word referenced by mask.
    	addr uintptr
    
    	// mask is a bitmask where each bit corresponds to pointer-words after addr.
    	// Bit 0 is the pointer-word at addr, Bit 1 is the next word, and so on.
    	// If a bit is 1, then there is a pointer at that word.
    	// nextFast and next mask out bits in this mask as their pointers are processed.
    	mask uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	}
    
    	for i := uintptr(0); i < n; i += goarch.PtrSize {
    		if ptrmask != nil {
    			word := i / goarch.PtrSize
    			bits := *addb(ptrmask, word/8)
    			if bits == 0 {
    				// Skip 8 words (the loop increment will do the 8th)
    				//
    				// This must be the first time we've
    				// seen this word of ptrmask, so i
    				// must be 8-word-aligned, but check
    				// our reasoning just in case.
    				if i%(goarch.PtrSize*8) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return FormatType.LABEL;
            }
            if ("popular-words".equals(type)) {
                return FormatType.POPULARWORD;
            }
            if ("favorites".equals(type)) {
                return FormatType.FAVORITES;
            }
            if ("health".equals(type)) {
                return FormatType.PING;
            }
            if ("suggest-words".equals(type)) {
                return FormatType.SUGGEST;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // Operation: http://publibfp.boulder.ibm.com/epubs/pdf/dz9zr010.pdf
    //
    // Suffixes encode the bit width of pseudo-instructions.
    // D (double word)  = 64 bit (frequently omitted)
    // W (word)         = 32 bit
    // H (half word)    = 16 bit
    // B (byte)         = 8 bit
    // S (single prec.) = 32 bit (double precision is omitted)
    
    // copied from ../../s390x/reg.go
    var regNamesS390X = []string{
    	"R0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	if x<<z1 != 0 {
    		// After shifting out z1 bits, we still have 1s,
    		// so the run ends inside this word.
    		run = uint(sys.LeadingZeros64(x << z1))
    	} else {
    		// After shifting out z1 bits, we have no more 1s.
    		// This means the run extends to the bottom of the
    		// word so it may extend into further words.
    		run = 64 - z1
    		for j := i - 1; j >= 0; j-- {
    			x := fillAligned(m.scavenged[j]|m.pallocBits[j], uint(minimum))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	font-style: normal !important;
    	letter-spacing: 0;
    	padding: 0.1em 0.5ex;
    	word-spacing: -0.15em;
    	background-color: var(--code-color);
    	-webkit-border-radius: 4px;
    	border-radius: 4px;
    	line-height: 1.45;
    	text-rendering: optimizeSpeed;
    	word-wrap: break-word;
    }
    
    *:not(pre)>code.nobreak {
    	word-wrap: normal;
    }
    
    *:not(pre)>code.nowrap {
    	white-space: nowrap;
    }
    
    pre,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    func decodeValue(ctxt *obj.Link, word uint64) (ID, ID) {
    	if ctxt.Arch.PtrSize == 8 {
    		b, v := ID(word>>32), ID(word)
    		//ctxt.Logf("%#x -> b %#x (%d) v %#x (%d)\n", word, b, b, v, v)
    		return b, v
    	}
    	if ctxt.Arch.PtrSize != 4 {
    		panic("unexpected pointer size")
    	}
    	return ID(word >> 16), ID(int16(word))
    }
    
    // Append a pointer-sized uint to buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // parseWord skips any leading spaces or comments in data
    // and then parses the beginning of data as an identifier or keyword,
    // returning that word and what remains after the word.
    func parseWord(data []byte) (word, rest []byte) {
    	data = skipSpaceOrComment(data)
    
    	// Parse past leading word characters.
    	rest = data
    	for {
    		r, size := utf8.DecodeRune(rest)
    		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    // slice which consists of the first word from each line.
    func getFirstColumn(r io.Reader) ([]string, error) {
    	b, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	lines := strings.Split(string(b), "\n")
    	words := make([]string, 0, len(lines))
    	for i := range lines {
    		fields := strings.Fields(lines[i])
    		if len(fields) > 0 {
    			words = append(words, fields[0])
    		}
    	}
    	return words, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		}
    		n += copy(buf[addr%SizeofPtr:], data)
    		word := *((*uintptr)(unsafe.Pointer(&buf[0])))
    		err = ptrace(pokeReq, pid, addr-addr%SizeofPtr, word)
    		if err != nil {
    			return 0, err
    		}
    		data = data[n:]
    	}
    
    	// Interior.
    	for len(data) > SizeofPtr {
    		word := *((*uintptr)(unsafe.Pointer(&data[0])))
    		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
    		if err != nil {
    			return n, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top