Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for gcbits (1.6 sec)

  1. src/runtime/mcheckmark.go

    }
    
    // setCheckmark throws if marking object is a checkmarks violation,
    // and otherwise sets obj's checkmark. It returns true if obj was
    // already checkmarked.
    func setCheckmark(obj, base, off uintptr, mbits markBits) bool {
    	if !mbits.isMarked() {
    		printlock()
    		print("runtime: checkmarks found unexpected unmarked object obj=", hex(obj), "\n")
    		print("runtime: found obj at *(", hex(base), "+", hex(off), ")\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/traceallocfree.go

    		if s.state.get() != mSpanInUse {
    			continue
    		}
    
    		// Find all allocated objects.
    		abits := s.allocBitsForIndex(0)
    		for i := uintptr(0); i < uintptr(s.nelems); i++ {
    			if abits.index < uintptr(s.freeindex) || abits.isMarked() {
    				x := s.base() + i*s.elemsize
    				trace.HeapObjectExists(x, s.typePointersOfUnchecked(x).typ)
    			}
    			abits.advance()
    		}
    	}
    
    	// Write out all the goroutine stacks.
    	forEachGRace(func(gp *g) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/runtime/defs_dragonfly_amd64.go

    }
    
    type lwpparams struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack      uintptr
    	tid1       unsafe.Pointer // *int32
    	tid2       unsafe.Pointer // *int32
    }
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type stackt struct {
    	ss_sp     uintptr
    	ss_size   uintptr
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_errno  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true activation-number-of-bits=16" -cse | FileCheck %s
    
    // CHECK-LABEL: QuantizeUnidirectionalLstmFullPerTensor
    func.func @QuantizeUnidirectionalLstmFullPerTensor(%arg0: tensor<1x2x3xf32>) -> (tensor<1x2x3xf32>) {
      %input = "quantfork.stats"(%arg0) {layerStats = dense<[0.0, 1.0]> : tensor<2xf32>} : (tensor<1x2x3xf32>) -> tensor<1x2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. test/shift1.go

    		m int   = 1.0 << s       // 1.0 has type int
    		n       = 1.0<<s != i    // 1.0 has type int; n == false if ints are 32bits in size
    		o       = 1<<s == 2<<s   // 1 and 2 have type int; o == true if ints are 32bits in size
    		// next test only fails on 32bit systems
    		// p = 1<<s == 1<<33  // illegal if ints are 32bits in size: 1 has type int, but 1<<33 overflows int
    		u          = 1.0 << s    // ERROR "non-integer|float64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 9.4K bytes
    - Viewed (0)
  6. src/syscall/dir_plan9.go

    // returning the remaining slice of b..
    func pstring(b []byte, s string) []byte {
    	b = pbit16(b, uint16(len(s)))
    	n := copy(b, s)
    	return b[n:]
    }
    
    // gbit8 reads an 8-bit number from b and returns it with the remaining slice of b.
    func gbit8(b []byte) (uint8, []byte) {
    	return uint8(b[0]), b[1:]
    }
    
    // gbit16 reads a 16-bit number in little-endian order from b and returns it with the remaining slice of b.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/runtime/defs1_netbsd_arm.go

    	_EV_RECEIPT   = 0
    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/math/big/floatmarsh_test.go

    					if err != nil {
    						t.Errorf("parsing of %s (%dbits, %v) failed (invalid test case): %v", x, prec, mode, err)
    						continue
    					}
    
    					// If tx was set to prec == 0, tx.Parse(x, 0) assumes precision 64. Correct it.
    					if prec == 0 {
    						tx.SetPrec(0)
    					}
    
    					if err := enc.Encode(&tx); err != nil {
    						t.Errorf("encoding of %v (%dbits, %v) failed: %v", &tx, prec, mode, err)
    						continue
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 18:18:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/runtime/defs1_netbsd_386.go

    	_EV_RECEIPT   = 0
    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo  int32
    	_code   int32
    	_errno  int32
    	_reason [20]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/runtime/defs1_netbsd_amd64.go

    	_EV_RECEIPT   = 0
    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo  int32
    	_code   int32
    	_errno  int32
    	_pad    int32
    	_reason [24]byte
    }
    
    type stackt struct {
    	ss_sp     uintptr
    	ss_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top