Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 26bit (0.92 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm.go

    		{Name: "vfpv3", Feature: &ARM.HasVFPv3},
    		{Name: "vfpv3d16", Feature: &ARM.HasVFPv3D16},
    		{Name: "vfpv4", Feature: &ARM.HasVFPv4},
    		{Name: "half", Feature: &ARM.HasHALF},
    		{Name: "26bit", Feature: &ARM.Has26BIT},
    		{Name: "fastmul", Feature: &ARM.HasFASTMUL},
    		{Name: "fpa", Feature: &ARM.HasFPA},
    		{Name: "edsp", Feature: &ARM.HasEDSP},
    		{Name: "java", Feature: &ARM.HasJAVA},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. src/strconv/atoi_test.go

    	})
    }
    
    type benchCase struct {
    	name string
    	num  int64
    }
    
    func benchmarkParseInt(b *testing.B, neg int) {
    	cases := []benchCase{
    		{"7bit", 1<<7 - 1},
    		{"26bit", 1<<26 - 1},
    		{"31bit", 1<<31 - 1},
    		{"56bit", 1<<56 - 1},
    		{"63bit", 1<<63 - 1},
    	}
    	for _, cs := range cases {
    		b.Run(cs.name, func(b *testing.B) {
    			s := fmt.Sprintf("%d", cs.num*int64(neg))
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/encoding/base64/base64.go

    		for si < len(src) && (src[si] == '\n' || src[si] == '\r') {
    			si++
    		}
    		if si < len(src) {
    			// trailing garbage
    			err = CorruptInputError(si)
    		}
    		dlen = j
    		break
    	}
    
    	// Convert 4x 6bit source bytes into 3 bytes
    	val := uint(dbuf[0])<<18 | uint(dbuf[1])<<12 | uint(dbuf[2])<<6 | uint(dbuf[3])
    	dbuf[2], dbuf[1], dbuf[0] = byte(val>>0), byte(val>>8), byte(val>>16)
    	switch dlen {
    	case 4:
    		dst[2] = dbuf[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    			t.Errorf("%v:\n\t     %v\n\t-    %v\n\t=    %v\n\twant %v",
    				mode, x, x, got, want)
    		}
    	}
    }
    
    // TestFloatAdd32 tests that Float.Add/Sub of numbers with
    // 24bit mantissa behaves like float32 addition/subtraction
    // (excluding denormal numbers).
    func TestFloatAdd32(t *testing.T) {
    	// chose base such that we cross the mantissa precision limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top