Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for 16x16 (0.07 sec)

  1. src/runtime/sys_linux_amd64.s

    	JLS	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    // Call the function stored in _cgo_munmap using the GCC calling convention.
    // This must be called on the system stack.
    TEXT runtime·callCgoMunmap(SB),NOSPLIT,$16-16
    	MOVQ	addr+0(FP), DI
    	MOVQ	n+8(FP), SI
    	MOVQ	_cgo_munmap(SB), AX
    	MOVQ	SP, BX
    	ANDQ	$~15, SP	// alignment as per amd64 psABI
    	MOVQ	BX, 0(SP)
    	CALL	AX
    	MOVQ	0(SP), SP
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. test/live_regabi.go

    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    func ddd2(a ...*int) { // ERROR "live at entry to ddd2: a$"
    	sink = a[0]
    }
    
    // issue 16016: autogenerated wrapper should have arguments live
    type T struct{}
    
    func (*T) Foo(ptr *int) {}
    
    type R struct{ *T }
    
    // issue 18860: output arguments must be live all the time if there is a defer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K 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. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

    // This filesystem will support `gs://` URI schemes.
    namespace gcs = google::cloud::storage;
    
    // The environment variable that overrides the block size for aligned reads from
    // GCS. Specified in MB (e.g. "16" = 16 x 1024 x 1024 = 16777216 bytes).
    constexpr char kBlockSize[] = "GCS_READ_CACHE_BLOCK_SIZE_MB";
    constexpr size_t kDefaultBlockSize = 64 * 1024 * 1024;
    // The environment variable that overrides the max size of the LRU cache of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/types/testdata/check/builtins0.go

    }                // 16
    
    type S4 struct { // offset
    	S3       //  0
    	int32    // 12
    }                // 24
    
    type S5 struct {   // offset
    	a [3]int32 //  0
    	b int32    // 16
    }                  // 16
    
    func (S2) m() {}
    
    func Alignof1() {
    	var x int
    	_ = unsafe.Alignof() // ERROR "not enough arguments"
    	_ = unsafe.Alignof(1, 2) // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	// A nice long list of positions. Each position is encoded as follows to reduce size:
    	// - 32-bit starting line number
    	// - 32-bit ending line number
    	// - (16 bit ending column number << 16) | (16-bit starting column number).
    	for i, block := range f.blocks {
    		start := f.fset.Position(block.startByte)
    		end := f.fset.Position(block.endByte)
    
    		start, end = dedup(start, end)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/runtime/map_test.go

    		cnt++
    		if math.Copysign(1.0, k.x) < 0 {
    			if v&16 == 0 {
    				t.Error("key/value not updated together 1")
    			}
    			negcnt++
    			s |= v & 15
    		} else {
    			if v&16 == 16 {
    				t.Error("key/value not updated together 2", k, v)
    			}
    			s |= v
    		}
    		if growflag {
    			// force a hashtable resize
    			for i := 0; i < 100; i++ {
    				m[FloatInt{3.0, i}] = 0
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_table_ppc64le.s

    	/* x^158784 mod p(x), x^158720 mod p(x) */
    DATA ·IEEEConst+1600(SB)/8,$0x00000001ef0e3640
    DATA ·IEEEConst+1608(SB)/8,$0x00000000e3fccf68
    
    	/* x^157760 mod p(x), x^157696 mod p(x) */
    DATA ·IEEEConst+1616(SB)/8,$0x00000001006d2d26
    DATA ·IEEEConst+1624(SB)/8,$0x00000000d513ed24
    
    	/* x^156736 mod p(x), x^156672 mod p(x) */
    DATA ·IEEEConst+1632(SB)/8,$0x00000001170d56d6
    DATA ·IEEEConst+1640(SB)/8,$0x00000000141beada
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    				opshift -= 8
    			}
    			mod = modrm >> 6
    			regop = (modrm >> 3) & 07
    			rm = modrm & 07
    			if rex&PrefixREXR != 0 {
    				rexUsed |= PrefixREXR
    				regop |= 8
    			}
    			if addrMode == 16 {
    				// 16-bit modrm form
    				if mod != 3 {
    					haveMem = true
    					mem = addr16[rm]
    					if rm == 6 && mod == 0 {
    						mem.Base = 0
    					}
    
    					// Consume disp16 if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top