Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for dword (0.05 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

      .label {
        position: absolute;
        color: gray;
        right: 6px;
        top: 4px;
        font-size: 12px;
      }
    }
    /*
     * Styles for table width wrap
     */
    th,td {
        word-wrap: break-word;
    }
    table {
        table-layout: fixed;
        width: 100%;
    }
    /*
     * Styles for the menu
     */
    .ui-menu {
        background-color: var(--search-input-background-color);
    }
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    		}
    		y := unhex(c)
    		if x < 0 || y < 0 {
    			break
    		}
    		return x*16 + y, t, nil
    
    	// C escapes. There is no case 'b', to avoid misparsing
    	// the Perl word-boundary \b as the C backspace \b
    	// when in POSIX mode. In Perl, /\b/ means word-boundary
    	// but /[\b]/ means backspace. We don't support that.
    	// If you want a backspace, embed a literal backspace
    	// character or use \x08.
    	case 'a':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // investigated, I think it would be different.
    //
    //
    // Vector multiply word
    //
    //	VMLF  x0, x1, out_low
    //	VMLHF x0, x1, out_hi
    #define VMULT(x1, x2, out_low, out_hi) \
    	VMULEUW x1, x2, TMP1; \
    	VMULOUW x1, x2, TMP2; \
    	VMRGEW TMP1, TMP2, out_hi; \
    	VMRGOW TMP1, TMP2, out_low
    
    //
    // Vector multiply add word
    //
    //	VMALF  x0, x1, y, out_low
    //	VMALHF x0, x1, y, out_hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	return r
    }
    
    // uaddOvf reports whether unsigned a+b would overflow.
    func uaddOvf(a, b int64) bool {
    	return uint64(a)+uint64(b) < uint64(a)
    }
    
    // loadLSymOffset simulates reading a word at an offset into a
    // read-only symbol's runtime memory. If it would read a pointer to
    // another symbol, that symbol is returned. Otherwise, it returns nil.
    func loadLSymOffset(lsym *obj.LSym, offset int64) *obj.LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		}
    	}
    	if !minSizeForMallocHeaderIsSizeClass {
    		throw("min size of malloc header is not a size class boundary")
    	}
    	// Check that the pointer bitmap for all small sizes without a malloc header
    	// fits in a word.
    	if minSizeForMallocHeader/goarch.PtrSize > 8*goarch.PtrSize {
    		throw("max pointer/scan bitmap size for headerless objects is too large")
    	}
    
    	if minTagBits > taggedPointerBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    		dwarf.Uleb128put(d, fsd, int64(0))                  // ...is CFA+0.
    	} else {
    		dwarf.Uleb128put(d, fsd, int64(d.arch.PtrSize)) // ...plus the word size (because the call instruction implicitly adds one word to the frame).
    
    		fsu.AddUint8(dwarf.DW_CFA_offset_extended)                           // The previous value...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // UTF16PtrToString takes a pointer to a UTF-16 sequence and returns the corresponding UTF-8 encoded string.
    // If the pointer is nil, it returns the empty string. It assumes that the UTF-16 sequence is terminated
    // at a zero word; if the zero word is not present, the program may crash.
    func UTF16PtrToString(p *uint16) string {
    	if p == nil {
    		return ""
    	}
    	if *p == 0 {
    		return ""
    	}
    
    	// Find NUL terminator.
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	ABEXTI & obj.AMask: iIEncoding,
    	ABINV & obj.AMask:  rIIIEncoding,
    	ABINVI & obj.AMask: iIEncoding,
    	ABSET & obj.AMask:  rIIIEncoding,
    	ABSETI & obj.AMask: iIEncoding,
    
    	// Escape hatch
    	AWORD & obj.AMask: rawEncoding,
    
    	// Pseudo-operations
    	obj.AFUNCDATA: pseudoOpEncoding,
    	obj.APCDATA:   pseudoOpEncoding,
    	obj.ATEXT:     pseudoOpEncoding,
    	obj.ANOP:      pseudoOpEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "description": "message is a human-readable message indicating details about last transition.",
              "type": "string"
            },
            "reason": {
              "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
              "type": "string"
            },
            "status": {
              "description": "status is the status of the condition. Can be True, False, Unknown.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top