Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 16x16 (0.06 sec)

  1. src/sync/atomic/atomic_test.go

    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    		old := uint32(addr.Swap(int32(new)))
    		if old>>16 != old<<16>>16 {
    			panic(fmt.Sprintf("SwapInt32 is not atomic: %v", old))
    		}
    	}
    }
    
    func hammerSwapUint32(addr *uint32, count int) {
    	seed := int(uintptr(unsafe.Pointer(&count)))
    	for i := 0; i < count; i++ {
    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    		old := SwapUint32(addr, new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %2 = "tf.TensorListStack"(%1#2, %cst_0) {device = "/job:localhost/replica:0/task:0/device:CPU:0", num_elements = 16 : i64} : (tensor<!tf_type.variant<tensor<*xf32>>>, tensor<2xi32>) -> tensor<16x16x?xf32>
      return %2 : tensor<16x16x?xf32>
    }
    // CHECK-LABEL: tf.NestedWhileRegion1_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    # monitored resource to ingest logs against.
    # Json Log Example:
    # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
    # CRI Log Example:
    # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
    <source>
      @type tail
      path /var/log/containers/*.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    		o1 = c.oprrr(p.As)
    
    	case 6: /* beq r1,[r2],sbra */
    		v := int32(0)
    		if p.To.Target() == nil {
    			v = int32(-4) >> 2
    		} else {
    			v = int32(p.To.Target().Pc-p.Pc-4) >> 2
    		}
    		if (v<<16)>>16 != v {
    			c.ctxt.Diag("short branch too far\n%v", p)
    		}
    		o1 = OP_IRR(c.opirr(p.As), uint32(v), p.From.Reg, p.Reg)
    		// for ABFPT and ABFPF only: always fill delay slot with 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)
  5. src/fmt/fmt_test.go

    	{"%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"},
    	{"%d", renamedBytes([]byte{1, 2, 15}), `[1 2 15]`},
    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/runtime/asm_amd64.s

    DEBUG_CALL_FN(debugCall16384<>, 16384)
    DEBUG_CALL_FN(debugCall32768<>, 32768)
    DEBUG_CALL_FN(debugCall65536<>, 65536)
    
    // func debugCallPanicked(val interface{})
    TEXT runtimeĀ·debugCallPanicked(SB),NOSPLIT,$16-16
    	// Copy the panic value to the top of stack.
    	MOVQ	val_type+0(FP), AX
    	MOVQ	AX, 0(SP)
    	MOVQ	val_data+8(FP), AX
    	MOVQ	AX, 8(SP)
    	MOVQ	$2, R12
    	BYTE	$0xcc
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    		switch width {
    		case 21:
    			if (v<<11)>>11 != v {
    				c.ctxt.Diag("21 bit-width, short branch too far\n%v", p)
    			}
    			o1 = OP_16IR_5I(c.opirr(as), uint32(v), uint32(rj))
    		case 16:
    			if (v<<16)>>16 != v {
    				c.ctxt.Diag("16 bit-width, short branch too far\n%v", p)
    			}
    			o1 = OP_16IRR(c.opirr(as), uint32(v), uint32(rj), uint32(rd))
    		default:
    			c.ctxt.Diag("unexpected branch encoding\n%v", p)
    		}
    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/compile/internal/ssa/_gen/AMD64.rules

    // Special-case bit patterns on first/last bit.
    // generic.rules changes ANDs of high-part/low-part masks into a couple of shifts,
    // for instance:
    //    x & 0xFFFF0000 -> (x >> 16) << 16
    //    x & 0x80000000 -> (x >> 31) << 31
    //
    // In case the mask is just one bit (like second example above), it conflicts
    // with the above rules to detect bit-testing / bit-clearing of first/last bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top