Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for 432 (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    	SYS_IO_URING_REGISTER       = 427
    	SYS_OPEN_TREE               = 428
    	SYS_MOVE_MOUNT              = 429
    	SYS_FSOPEN                  = 430
    	SYS_FSCONFIG                = 431
    	SYS_FSMOUNT                 = 432
    	SYS_FSPICK                  = 433
    	SYS_PIDFD_OPEN              = 434
    	SYS_CLONE3                  = 435
    	SYS_CLOSE_RANGE             = 436
    	SYS_OPENAT2                 = 437
    	SYS_PIDFD_GETFD             = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_linux_loong64.go

    	SYS_IO_URING_REGISTER       = 427
    	SYS_OPEN_TREE               = 428
    	SYS_MOVE_MOUNT              = 429
    	SYS_FSOPEN                  = 430
    	SYS_FSCONFIG                = 431
    	SYS_FSMOUNT                 = 432
    	SYS_FSPICK                  = 433
    	SYS_PIDFD_OPEN              = 434
    	SYS_CLOSE_RANGE             = 436
    	SYS_OPENAT2                 = 437
    	SYS_PIDFD_GETFD             = 438
    	SYS_FACCESSAT2              = 439
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VMOVDQU AA2, (0*32)(oup); VMOVDQU BB2, (1*32)(oup); VMOVDQU CC2, (2*32)(oup); VMOVDQU DD2, (3*32)(oup)
    	LEAQ    (4*32)(inp), inp
    	LEAQ    (4*32)(oup), oup
    	SUBQ    $4*32, inl
    
    	JMP openAVX2TailLoop
    
    // ----------------------------------------------------------------------------
    // Special optimization for the last 384 bytes of ciphertext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. src/internal/byteorder/byteorder.go

    		byte(v>>24),
    	)
    }
    
    func LeUint64(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 LePutUint64(b []byte, v uint64) {
    	_ = b[7] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go

    	SYS_IO_URING_REGISTER       = 427
    	SYS_OPEN_TREE               = 428
    	SYS_MOVE_MOUNT              = 429
    	SYS_FSOPEN                  = 430
    	SYS_FSCONFIG                = 431
    	SYS_FSMOUNT                 = 432
    	SYS_FSPICK                  = 433
    	SYS_PIDFD_OPEN              = 434
    	SYS_CLONE3                  = 435
    	SYS_CLOSE_RANGE             = 436
    	SYS_OPENAT2                 = 437
    	SYS_PIDFD_GETFD             = 438
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top