Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Dword2 (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/reflect/type.go

    		if etyp.Pointers() {
    			emitGCMask(mask, base, etyp, abi.MapBucketCount)
    		}
    		base += abi.MapBucketCount * etyp.Size_ / goarch.PtrSize
    
    		word := base
    		mask[word/8] |= 1 << (word % 8)
    		gcdata = &mask[0]
    		ptrdata = (word + 1) * goarch.PtrSize
    
    		// overflow word must be last
    		if ptrdata != size {
    			panic("reflect: bad layout computation in MapOf")
    		}
    	}
    
    	b := &abi.Type{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    	{AMOVBU, C_TLS_IE, C_NONE, C_NONE, C_REG, C_NONE, 57, 16, 0, 0},
    	{AMOVWU, C_TLS_IE, C_NONE, C_NONE, C_REG, C_NONE, 57, 16, 0, 0},
    
    	{AWORD, C_LCON, C_NONE, C_NONE, C_NONE, C_NONE, 40, 4, 0, 0},
    	{AWORD, C_DCON, C_NONE, C_NONE, C_NONE, C_NONE, 61, 4, 0, 0},
    
    	{AMOVV, C_GOTADDR, C_NONE, C_NONE, C_REG, C_NONE, 65, 8, 0, 0},
    
    	{ATEQ, C_SCON, C_REG, C_NONE, C_REG, C_NONE, 15, 8, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/asm0.go

    	{AMOVW, C_REG, C_NONE, C_MREG, 37, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_MREG, 37, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_MREG, C_NONE, C_REG, 38, 4, 0, 0, 0},
    	{AMOVV, C_MREG, C_NONE, C_REG, 38, 4, 0, sys.MIPS64, 0},
    
    	{AWORD, C_LCON, C_NONE, C_NONE, 40, 4, 0, 0, 0},
    
    	{AMOVW, C_REG, C_NONE, C_FCREG, 41, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_FCREG, 41, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_FCREG, C_NONE, C_REG, 42, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    /*
     * ELF definitions that are independent of architecture or word size.
     */
    
    /*
     * Note header.  The ".note" section contains an array of notes.  Each
     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
     * padded to a word boundary.  The values of n_namesz and n_descsz do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top