Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0x7FC00000 (0.1 sec)

  1. src/cmd/compile/internal/test/float_test.go

    	{
    		const nan = uint32(0xffbfffff) // sNaN
    		if x := math.Float32bits(math.Float32frombits(nan)); x != nan {
    			t.Errorf("got %#x, want %#x", x, nan)
    		}
    	}
    
    	// quiet NaNs
    	{
    		const nan = uint32(0x7fc00000) // qNaN
    		if x := math.Float32bits(math.Float32frombits(nan)); x != nan {
    			t.Errorf("got %#x, want %#x", x, nan)
    		}
    	}
    	{
    		const nan = uint32(0x7fffffff) // qNaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. src/compress/flate/huffman_bit_writer_test.go

    	want        string // File name of data with the expected output with input available.
    	wantNoInput string // File name of the expected output when no input is available.
    }
    
    const ml = 0x7fc00000 // Maximum length token. Used to reduce the size of writeBlockTests
    
    var writeBlockTests = []huffTest{
    	{
    		input:       "testdata/huffman-null-max.in",
    		want:        "testdata/huffman-null-max.%s.expect",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 40.3K bytes
    - Viewed (0)
  3. src/syscall/zerrors_aix_ppc64.go

    	IPV6_PRIORITY_15              = 0xf000000
    	IPV6_PRIORITY_8               = 0x8000000
    	IPV6_PRIORITY_9               = 0x9000000
    	IPV6_PRIORITY_BULK            = 0x4000000
    	IPV6_PRIORITY_CONTROL         = 0x7000000
    	IPV6_PRIORITY_FILLER          = 0x1000000
    	IPV6_PRIORITY_INTERACTIVE     = 0x6000000
    	IPV6_PRIORITY_RESERVED1       = 0x3000000
    	IPV6_PRIORITY_RESERVED2       = 0x5000000
    	IPV6_PRIORITY_UNATTENDED      = 0x2000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  4. src/image/png/reader_test.go

    			continue
    		} else if cfg.Height != tc.height {
    			t.Errorf("i=%d: height: got %d, want %d", i, cfg.Height, tc.height)
    			continue
    		}
    
    		if nPixels := int64(cfg.Width) * int64(cfg.Height); nPixels > 0x7f000000 {
    			// In theory, calling Decode would succeed, given several gigabytes
    			// of memory. In practice, trying to make a []uint8 big enough to
    			// hold all of the pixels can often result in OOM (out of memory).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    		return false
    	}
    	v := p.From.Val.(float64)
    	if float64(float32(v)) != v {
    		return false
    	}
    	// Secondly, is this value a normal value?
    	ival := int64(math.Float32bits(float32(v)))
    	isDenorm := ival&0x7F800000 == 0 && ival&0x007FFFFF != 0
    	if !isDenorm {
    		p.As = AXXSPLTIDP
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = ival
    		// Convert REG_Fx into equivalent REG_VSx
    		p.To.Reg = REG_VS0 + (p.To.Reg & 31)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top