Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for Dword2 (0.29 sec)

  1. src/runtime/runtime2.go

    //
    // We tried using special assignment functions invoked only when not
    // holding a running P, but then some updates to a particular memory
    // word went through write barriers and some did not. This breaks the
    // write barrier shadow checking mode, and it is also scary: better to have
    // a word that is completely ignored by the GC than to have one for which
    // only a few updates are ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    	if nameAddr.Sym.ABI() == obj.ABIInternal && flag&obj.NOSPLIT == 0 {
    		p.errorf("TEXT %q: ABIInternal requires NOSPLIT", name)
    	}
    
    	// Next operand is the frame and arg size.
    	// Bizarre syntax: $frameSize-argSize is two words, not subtraction.
    	// Both frameSize and argSize must be simple integers; only frameSize
    	// can be negative.
    	// The "-argSize" may be missing; if so, set it to objabi.ArgsSizeUnknown.
    	// Parse left to right.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    // facilitate reviewing the implementation against the NIST FIPS 203 ipd
    // document.
    //
    // Reviewers unfamiliar with polynomials or linear algebra might find the
    // background at https://words.filippo.io/kyber-math/ useful.
    
    import (
    	"crypto/rand"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    
    	"golang.org/x/crypto/sha3"
    )
    
    const (
    	// ML-KEM global constants.
    	n = 256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    		&URL{
    			Path: "a/b/c",
    		},
    		"a/b/c",
    	},
    	// escaped '?' in username and password
    	{
    		"http://%3Fam:******@****.***",
    		&URL{
    			Scheme: "http",
    			User:   UserPassword("?am", "pa?sword"),
    			Host:   "google.com",
    		},
    		"",
    	},
    	// host subcomponent; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1",
    			Path:   "/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K 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/cmd/internal/obj/link.go

    //			offset = ±integer value
    //
    //	*<mem>
    //		Indirect reference through memory reference <mem>, defined above.
    //		Only used on x86 for CALL/JMP *sym(SB), which calls/jumps to a function
    //		pointer stored in the data word sym(SB), not a function named sym(SB).
    //		Encoding: same as above, but type = TYPE_INDIR.
    //
    //	$*$<mem>
    //		No longer used.
    //		On machines with actual SB registers, $*$<mem> forced the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    		if updatedNetwork != nil {
    			proxier.network = *updatedNetwork
    		}
    		return
    	}
    
    	// We assume that if this was called, we really want to sync them,
    	// even if nothing changed in the meantime. In other words, callers are
    	// responsible for detecting no-op changes and not calling this function.
    	serviceUpdateResult := proxier.svcPortMap.Update(proxier.serviceChanges)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    		case sys.AMD64:
    			ml := newMachoLoad(ctxt.Arch, LC_UNIXTHREAD, 42+2)
    			ml.data[0] = 4                           /* thread type */
    			ml.data[1] = 42                          /* word count */
    			ml.data[2+32] = uint32(Entryvalue(ctxt)) /* start pc */
    			ml.data[2+32+1] = uint32(Entryvalue(ctxt) >> 32)
    
    		case sys.ARM64:
    			ml := newMachoLoad(ctxt.Arch, LC_MAIN, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    the "Classpath" exception as provided by Oracle in the LICENSE file
    that accompanied this code."
    
    You should also note that Oracle includes multiple, independent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In other words, you can only use one or the other in Groovy for any given method.
    
    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top