Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for 0x0p1025 (0.14 sec)

  1. src/strconv/atof_test.go

    	{"-0e348", "-0", nil},
    	{"0x0p126", "0", nil},
    	{"0x0p127", "0", nil},
    	{"0x0p128", "0", nil},
    	{"0x0p129", "0", nil},
    	{"0x0p130", "0", nil},
    	{"0x0p1022", "0", nil},
    	{"0x0p1023", "0", nil},
    	{"0x0p1024", "0", nil},
    	{"0x0p1025", "0", nil},
    	{"0x0p1026", "0", nil},
    	{"-0x0p126", "-0", nil},
    	{"-0x0p127", "-0", nil},
    	{"-0x0p128", "-0", nil},
    	{"-0x0p129", "-0", nil},
    	{"-0x0p130", "-0", nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  2. src/strconv/atoc_test.go

    		// ErrRange
    		// next float64 - too large
    		{"+0x1p1024", infp0, ErrRange},
    		{"-0x1p1024", infm0, ErrRange},
    		{"+0x1p1024i", inf0p, ErrRange},
    		{"-0x1p1024i", inf0m, ErrRange},
    		{"+0x1p1024+0x1p1024i", infpp, ErrRange},
    		{"+0x1p1024-0x1p1024i", infpm, ErrRange},
    		{"-0x1p1024+0x1p1024i", infmp, ErrRange},
    		{"-0x1p1024-0x1p1024i", infmm, ErrRange},
    		// the border is ...158079
    		// borderline - okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  3. test/fixedbugs/bug296.go

    }
    
    type Int16 int16
    
    func (x Int16) m(a, b, c, d, e, f, g, h byte) {
    	check("Int16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
    }
    
    type Uint16 uint16
    
    func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
    	check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
    }
    
    type Int32 int32
    
    func (x Int32) m(a, b, c, d, e, f, g, h byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  4. src/strconv/isprint.go

    	0x010d30, 0x010d39,
    	0x010e60, 0x010ead,
    	0x010eb0, 0x010eb1,
    	0x010efd, 0x010f27,
    	0x010f30, 0x010f59,
    	0x010f70, 0x010f89,
    	0x010fb0, 0x010fcb,
    	0x010fe0, 0x010ff6,
    	0x011000, 0x01104d,
    	0x011052, 0x011075,
    	0x01107f, 0x0110c2,
    	0x0110d0, 0x0110e8,
    	0x0110f0, 0x0110f9,
    	0x011100, 0x011147,
    	0x011150, 0x011176,
    	0x011180, 0x0111f4,
    	0x011200, 0x011241,
    	0x011280, 0x0112a9,
    	0x0112b0, 0x0112ea,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/math/const.go

    	SmallestNonzeroFloat32 = 0x1p-126 * 0x1p-23            // 1.401298464324817070923729583289916131280e-45
    
    	MaxFloat64             = 0x1p1023 * (1 + (1 - 0x1p-52)) // 1.79769313486231570814527423731704356798070e+308
    	SmallestNonzeroFloat64 = 0x1p-1022 * 0x1p-52            // 4.9406564584124654417656879286822137236505980e-324
    )
    
    // Integer limit values.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/validation/vld.go

    // limitations under the License.
    
    package validation
    
    import (
    	"encoding/binary"
    	"unsafe"
    )
    
    var nativeByteOrder binary.ByteOrder
    
    func init() {
    	var x uint16 = 0x0102
    	lowerByte := *(*byte)(unsafe.Pointer(&x))
    	switch lowerByte {
    	case 0x01:
    		nativeByteOrder = binary.BigEndian
    	case 0x02:
    		nativeByteOrder = binary.LittleEndian
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 17:28:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

         */
        static long mapInformationLevel ( int il ) {
            switch ( il ) {
            case FileInformation.FILE_BASIC_INFO:
                return 0x0101;
            case FileInformation.FILE_STANDARD_INFO:
                return 0x0102;
            case FileInformation.FILE_ENDOFFILE_INFO:
                return 0x0104;
            }
            throw new IllegalArgumentException("Unsupported information level " + il);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/mips64.s

    	BFPT	label4	// BFPT 24			// 4501fffd00000000
    
    //inst:
    //
    // load ints and bytes
    //
    //	LMOVV rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVV	R25, R17	// 00198825
    	MOVV	R1, R2		// 00011025
    	MOVV	LO, R1		// 00000812
    	MOVV	HI, R1		// 00000810
    	MOVV	R1, LO		// 00200013
    	MOVV	R1, HI		// 00200011
    
    
    //	LMOVW rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVW	R1, R2		// 00011004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/syscall/types_windows.go

    	DNS_TYPE_NXT     = 0x001e
    	DNS_TYPE_EID     = 0x001f
    	DNS_TYPE_NIMLOC  = 0x0020
    	DNS_TYPE_SRV     = 0x0021
    	DNS_TYPE_ATMA    = 0x0022
    	DNS_TYPE_NAPTR   = 0x0023
    	DNS_TYPE_KX      = 0x0024
    	DNS_TYPE_CERT    = 0x0025
    	DNS_TYPE_A6      = 0x0026
    	DNS_TYPE_DNAME   = 0x0027
    	DNS_TYPE_SINK    = 0x0028
    	DNS_TYPE_OPT     = 0x0029
    	DNS_TYPE_DS      = 0x002B
    	DNS_TYPE_RRSIG   = 0x002E
    	DNS_TYPE_NSEC    = 0x002F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_arm64.go

    	SO_RCVLOWAT                       = 0x1004
    	SO_RCVTIMEO                       = 0x1006
    	SO_REUSEADDR                      = 0x4
    	SO_REUSEPORT                      = 0x200
    	SO_REUSESHAREUID                  = 0x1025
    	SO_SNDBUF                         = 0x1001
    	SO_SNDLOWAT                       = 0x1003
    	SO_SNDTIMEO                       = 0x1005
    	SO_TIMESTAMP                      = 0x400
    	SO_TIMESTAMP_MONOTONIC            = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
Back to top