Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for 1486 (0.22 sec)

  1. test/codegen/memcombine.go

    	// ppc64le:`MOVH\s`
    	// ppc64:`MOVHBR`
    	b[idx+1], b[idx+0] = byte(val>>8), byte(val)
    }
    
    func store_le_byte_2_idx_inv(b []byte, idx int, val uint16) {
    	_, _ = b[idx+0], b[idx+1]
    	// 386:`MOVW\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+`,-`MOVB`
    	// ppc64le:`MOVH\s`
    	// ppc64:`MOVHBR`
    	b[idx+0], b[idx+1] = byte(val), byte(val>>8)
    }
    
    func store_le_byte_4_idx(b []byte, idx int, val uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	MOVOU (11*16)(inp), D0; PXOR D0, D2; MOVOU D2, (11*16)(oup)
    	MOVOU (12*16)(inp), D0; PXOR D0, A3; MOVOU A3, (12*16)(oup)
    	MOVOU (13*16)(inp), D0; PXOR D0, B3; MOVOU B3, (13*16)(oup)
    	MOVOU (14*16)(inp), D0; PXOR D0, C3; MOVOU C3, (14*16)(oup)
    	MOVOU (15*16)(inp), D0; PXOR tmpStore, D0; MOVOU D0, (15*16)(oup)
    	LEAQ  256(inp), inp
    	LEAQ  256(oup), oup
    	SUBQ  $256, inl
    	JMP   openSSEMainLoop
    
    openSSEMainLoopDone:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %12 = stablehlo.convolution(%10, %11)  // q2 * z1
    // %13 = stablehlo.subtract %7, %12  // q1 * q2 - q2 * z1
    // %14 = stablehlo.constant  // Merged scale s1 * s2, precalculated.
    // %15 = stablehlo.broadcast_in_dim %14
    // %16 = stablehlo.multiply %13 %15  // r3 = s1 s2 (q1 q2 - q2 z1)
    //
    // The following quant -> dequant pattern is a no-op, but is required to
    // retrieve the quantization parameters for the output tensor.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    		str, _ := getString(strdata, int(sym.Name))
    		symbols[i].Name = str
    		symbols[i].Info = sym.Info
    		symbols[i].Other = sym.Other
    		symbols[i].Section = SectionIndex(sym.Shndx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%d", renamedInt8(-9), "-9"},
    	{"%v", renamedInt16(10), "10"},
    	{"%v", renamedInt32(-11), "-11"},
    	{"%X", renamedInt64(255), "FF"},
    	{"%v", renamedUint(13), "13"},
    	{"%o", renamedUint8(14), "16"},
    	{"%X", renamedUint16(15), "F"},
    	{"%d", renamedUint32(16), "16"},
    	{"%X", renamedUint64(17), "11"},
    	{"%o", renamedUintptr(18), "22"},
    	{"%x", renamedString("thing"), "7468696e67"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	if err != nil {
    		return nil, err
    	}
    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	// The host's colon:port should be normalized. See Issue 14836.
    	u.Host = removeEmptyPort(u.Host)
    	req := &Request{
    		ctx:        ctx,
    		Method:     method,
    		URL:        u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(Header),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/go122.test

    	pc=5079772 func=146 file=85 line=90
    	pc=5079785 func=59 file=36 line=90
    Stack id=38 nframes=2
    	pc=4310679 func=72 file=73 line=914
    	pc=4316644 func=107 file=73 line=1469
    Stack id=52 nframes=3
    	pc=4708004 func=147 file=148 line=81
    	pc=5079238 func=149 file=148 line=87
    	pc=5079164 func=71 file=36 line=41
    Stack id=20 nframes=3
    	pc=4708004 func=147 file=148 line=81
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    // sparseValues: 1483 entries, 5932 bytes
    var sparseValues = [1483]valueRange{
    	// Block 0x0, offset 0x0
    	{value: 0x0004, lo: 0xa8, hi: 0xa8},
    	{value: 0x0012, lo: 0xaa, hi: 0xaa},
    	{value: 0x0014, lo: 0xad, hi: 0xad},
    	{value: 0x0004, lo: 0xaf, hi: 0xaf},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    		// pla rX, x@tprel
    
    		const OP_MASK_PFX = 0xFFFFFFFF        // Discard prefix word
    		const OP_MASK = (0x3F << 26) | 0xFFFF // Preserve RT, RA
    		const OP_PFX = 1<<26 | 2<<24
    		const OP_PLA = 14 << 26
    		mask := packInstPair(target, OP_MASK_PFX, OP_MASK)
    		pla_op := packInstPair(target, OP_PFX, OP_PLA)
    		val &^= mask
    		val |= pla_op
    		fallthrough
    
    	case objabi.R_POWER_TLS_LE_TPREL34:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	141: {From: 0x2e65, To: 0x2282},
    	142: {From: 0x2e97, To: 0x1a4},
    	143: {From: 0x2ea0, To: 0x2e9b},
    	144: {From: 0x2eef, To: 0x2ed7},
    	145: {From: 0x3193, To: 0x3c4},
    	146: {From: 0x3366, To: 0x338e},
    	147: {From: 0x342a, To: 0x3dc},
    	148: {From: 0x34ee, To: 0x18d0},
    	149: {From: 0x35c8, To: 0x2c9b},
    	150: {From: 0x35e6, To: 0x412},
    	151: {From: 0x35f5, To: 0x24b},
    	152: {From: 0x360d, To: 0x1dc},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top