Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for 432 (0.26 sec)

  1. src/reflect/asm_loong64.s

    // 32 (args of callReflect) + 8 (bool + padding) + 392 (abi.RegArgs) = 432.
    
    // makeFuncStub is the code half of the function returned by MakeFunc.
    // See the comment on the declaration of makeFuncStub in makefunc.go
    // for more details.
    // No arg size here, runtime pulls arg map out of the func value.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$432
    	NO_LOCAL_POINTERS
    	ADDV	$LOCAL_REGARGS, R3, R25 // spillArgs using R25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/preempt_riscv64.s

    	MOVD F22, 384(X2)
    	MOVD F23, 392(X2)
    	MOVD F24, 400(X2)
    	MOVD F25, 408(X2)
    	MOVD F26, 416(X2)
    	MOVD F27, 424(X2)
    	MOVD F28, 432(X2)
    	MOVD F29, 440(X2)
    	MOVD F30, 448(X2)
    	MOVD F31, 456(X2)
    	CALL ·asyncPreempt2(SB)
    	MOVD 456(X2), F31
    	MOVD 448(X2), F30
    	MOVD 440(X2), F29
    	MOVD 432(X2), F28
    	MOVD 424(X2), F27
    	MOVD 416(X2), F26
    	MOVD 408(X2), F25
    	MOVD 400(X2), F24
    	MOVD 392(X2), F23
    	MOVD 384(X2), F22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue15002.go

    		if s != "runtime error: index out of range [1] with length 1" {
    			panic("bad panic: " + s)
    		}
    	}()
    	return uint64(x[0]) | uint64(x[1])<<8 | uint64(x[2])<<16 | uint64(x[3])<<24 |
    		uint64(x[4])<<32 | uint64(x[5])<<40 | uint64(x[6])<<48 | uint64(x[7])<<56
    }
    
    func test64i(x []byte, i int) uint64 {
    	defer func() {
    		r := recover()
    		if r == nil {
    			panic("no fault or bounds check failure happened")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/preempt_loong64.s

    	MOVD F24, 408(R3)
    	MOVD F25, 416(R3)
    	MOVD F26, 424(R3)
    	MOVD F27, 432(R3)
    	MOVD F28, 440(R3)
    	MOVD F29, 448(R3)
    	MOVD F30, 456(R3)
    	MOVD F31, 464(R3)
    	MOVV FCC0, R4
    	MOVV R4, 472(R3)
    	CALL ·asyncPreempt2(SB)
    	MOVV 472(R3), R4
    	MOVV R4, FCC0
    	MOVD 464(R3), F31
    	MOVD 456(R3), F30
    	MOVD 448(R3), F29
    	MOVD 440(R3), F28
    	MOVD 432(R3), F27
    	MOVD 424(R3), F26
    	MOVD 416(R3), F25
    	MOVD 408(R3), F24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 19:29:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/hash/maphash/maphash_purego.go

    			p = p[16:]
    		}
    	}
    	switch {
    	case i == 0:
    		return seed
    	case i < 4:
    		a = r3(p, i)
    	default:
    		n := (i >> 3) << 2
    		a = r4(p)<<32 | r4(p[n:])
    		b = r4(p[i-4:])<<32 | r4(p[i-4-n:])
    	}
    	return mix(m5^len, mix(a^m2, b^seed))
    }
    
    func r3(p []byte, k uint64) uint64 {
    	return (uint64(p[0]) << 16) | (uint64(p[k>>1]) << 8) | uint64(p[k-1])
    }
    
    func r4(p []byte) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/pprof/vminfo_darwin.go

    		}
    		addr += memRegionSize
    	}
    }
    
    func read64(p *[8]byte) uint64 {
    	// all supported darwin platforms are little endian
    	return uint64(p[0]) | uint64(p[1])<<8 | uint64(p[2])<<16 | uint64(p[3])<<24 | uint64(p[4])<<32 | uint64(p[5])<<40 | uint64(p[6])<<48 | uint64(p[7])<<56
    }
    
    func regionFilename(address uint64) string {
    	buf := make([]byte, _MAXPATHLEN)
    	r := proc_regionfilename(
    		os.Getpid(),
    		address,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/route/binary.go

    }
    
    func (binaryLittleEndian) Uint64(b []byte) uint64 {
    	_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    type binaryBigEndian struct{}
    
    func (binaryBigEndian) Uint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/dlpack_test.cc

      TFE_DeleteContextOptions(opts);
    
      TestHandleFromDLPack(status, ctx, {}, {});
      TestHandleFromDLPack(status, ctx, {4}, {});
      TestHandleFromDLPack(status, ctx, {4}, {1});
      TestHandleFromDLPack(status, ctx, {4, 3, 2}, {});
      TestHandleFromDLPack(status, ctx, {4, 3, 2}, {6, 2, 1});
      // Test that dims with size=1 can have any stride.
      TestHandleFromDLPack(status, ctx, {1}, {1});
      TestHandleFromDLPack(status, ctx, {1}, {0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 30 03:04:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/dirent.go

    	case 8:
    		_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    			uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    	default:
    		panic("syscall: readInt with unsupported size")
    	}
    }
    
    // ParseDirent parses up to max directory entries in buf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/binary.go

    }
    
    func (binaryLittleEndian) Uint64(b []byte) uint64 {
    	_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
    		uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    }
    
    func (binaryLittleEndian) PutUint64(b []byte, v uint64) {
    	_ = b[7] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top