Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for iword (0.17 sec)

  1. src/cmd/internal/obj/loong64/anames.go

    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    	"DBAR",
    	"SYSCALL",
    	"TEQ",
    	"TNE",
    	"WORD",
    	"XOR",
    	"MASKEQZ",
    	"MASKNEZ",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"ROTRV",
    	"DIVV",
    	"DIVVU",
    	"REMV",
    	"REMVU",
    	"MULV",
    	"MULVU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/arena.go

    		h.mask |= bits << h.valid
    		h.valid += valid
    		return h
    	}
    	// Too many bits to fit in this word. Write the current word
    	// out and move on to the next word.
    
    	data := h.mask | bits<<h.valid       // mask for this word
    	h.mask = bits >> (ptrBits - h.valid) // leftover for next word
    	h.valid += valid - ptrBits           // have h.valid+valid bits, writing ptrBits of them
    
    	// Flush mask to the memory bitmap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX5124VNNIW     bool // Advanced vector extension 512 Vector Neural Network Instructions Word variable precision
    	HasAVX5124FMAPS     bool // Advanced vector extension 512 Fused Multiply Accumulation Packed Single precision
    	HasAVX512VPOPCNTDQ  bool // Advanced vector extension 512 Double and quad word population count instructions
    	HasAVX512VPCLMULQDQ bool // Advanced vector extension 512 Vector carry-less multiply operations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

    // created and it does not perform any graph transformation. If `exported_names`
    // is std::nullopt, all signatures will be imported. Otherwise, only names
    // in `exported_names` are imported.
    //
    // Note that the word `Lite` means it is a lighter version compared to
    // ConvertSavedModelV1ToMlir(), and is not related to TFLite.
    //
    // TODO(b/179683149): Rename this class to avoid confusion with TFLite.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm.go

    }
    
    // mul sets y to y*H, where H is the GCM key, fixed during NewGCMWithNonceSize.
    func (g *gcm) mul(y *gcmFieldElement) {
    	var z gcmFieldElement
    
    	for i := 0; i < 2; i++ {
    		word := y.high
    		if i == 1 {
    			word = y.low
    		}
    
    		// Multiplication works by multiplying z by 16 and adding in
    		// one of the precomputed multiples of H.
    		for j := 0; j < 64; j += 4 {
    			msw := z.high & 0xf
    			z.high >>= 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/base.css

        border-bottom-right-radius: 0;
    }
    
    *:not(pre) > code {
        font-size: 0.9375em;
        letter-spacing: 0;
        padding: 0.1em 0.5ex;
        text-rendering: optimizeSpeed;
        word-spacing: -0.15em;
        word-wrap: break-word;
    }
    
    pre {
        line-height: 1.45;
        margin-top: 0;
        margin-bottom: 1.5em;
        padding: 1rem;
    }
    
    pre code {
        background-color: transparent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVHstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVH", typ: "Mem"},     // store half word
    		{name: "MOVWstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVW", typ: "Mem"},     // store word
    		{name: "MOVDstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVD", typ: "Mem"},     // store double word
    		{name: "FMOVDstoreidx", argLength: 4, reg: fpstoreidx, asm: "FMOVD", typ: "Mem"},   // store double float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/cpuprof.go

    	// profBufWordCount is the size of the CPU profile buffer's storage for the
    	// header and stack of each sample, measured in 64-bit words. Every sample
    	// has a required header of two words. With a small additional header (a
    	// word or two) and stacks at the profiler's maximum length of 64 frames,
    	// that capacity can support 1900 samples or 19 thread-seconds at a 100 Hz
    	// sample rate, at a cost of 1 MiB.
    	profBufWordCount = 1 << 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    			T[n+i], c = bits.Add(c1, c2, c)
    		}
    		copy(x.reset(n).limbs, T[n:])
    		x.maybeSubtractModulus(choice(c), m)
    	}
    
    	return x
    }
    
    // addMulVVW multiplies the multi-word value x by the single-word value y,
    // adding the result to the multi-word value z and returning the final carry.
    // It can be thought of as one row of a pen-and-paper column multiplication.
    func addMulVVW(z, x []uint, y uint) (carry uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top