Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for 111111112 (0.11 sec)

  1. src/go/printer/testdata/expressions.input

    	_ = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx)
    
    	// test case for issue 8021
    	// want:
    	//  ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    	_ = ([]bool{})[([]int{})[((1) + (((((1) + (((((((1) * (((((1) + (1))) + (1))))) + (1))) * (1))))) + (1))))]]
    
    	// the parser does not restrict expressions that may appear as statements
    	true
    	42
    	"foo"
    	x
    	(x)
    	a+b
    	a+b+c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_ordinv.go

    	p256OrdSqr(x, _10101, 1)     // _101010
    	p256OrdMul(_101111, _101, x) // _101111
    	p256OrdMul(x, _10101, x)     // _111111 = x6
    	p256OrdSqr(t, x, 2)          // _11111100
    	p256OrdMul(t, t, _11)        // _11111111 = x8
    	p256OrdSqr(x, t, 8)          // _ff00
    	p256OrdMul(x, x, t)          // _ffff = x16
    	p256OrdSqr(t, x, 16)         // _ffff0000
    	p256OrdMul(t, t, x)          // _ffffffff = x32
    
    	p256OrdSqr(x, t, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/lazy/lazy_test.go

    			resCh <- res
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	close(resCh)
    	for r := range resCh {
    		results = append(results, r)
    	}
    	slices.Sort(results)
    	assert.Equal(t, results, []int32{1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.golden

    	_ = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx)
    
    	// test case for issue 8021
    	// want:
    	//  ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    	_ = ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    
    	// the parser does not restrict expressions that may appear as statements
    	true
    	42
    	"foo"
    	x
    	(x)
    	a + b
    	a + b + c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/expressions.raw

    	_ = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx)
    
    	// test case for issue 8021
    	// want:
    	//  ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    	_ = ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    
    	// the parser does not restrict expressions that may appear as statements
    	true
    	42
    	"foo"
    	x
    	(x)
    	a + b
    	a + b + c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256.go

    	//
    	//	_10       = 2*1
    	//	_11       = 1 + _10
    	//	_1100     = _11 << 2
    	//	_1111     = _11 + _1100
    	//	_11110000 = _1111 << 4
    	//	_11111111 = _1111 + _11110000
    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	return      ((x32 << 32 + 1) << 96 + 1) << 94
    	//
    	var t0 = new(fiat.P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	t0.Square(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/utf8.go

    	mask4 = 0x07 // 0000 0111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0x80 // 1000 0000
    	hicb = 0xBF // 1011 1111
    )
    
    // countrunes returns the number of runes in s.
    func countrunes(s string) int {
    	n := 0
    	for range s {
    		n++
    	}
    	return n
    }
    
    // decoderune returns the non-ASCII rune at the start of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            1      | Fruit.apples  | 3      | Fruit.apples     | 0.333333
            2      | Fruit.apples  | 3      | Fruit.apples     | 0.666667
            4      | Fruit.apples  | 1.2    | Fruit.oranges    | 1.111111
            125    | Fruit.oranges | 23.4   | Fruit.grapefruit | 3.205128
        }
    
        def "can multiply amount by a unitless value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm.go

    	//
    	//	_10       = 2*1
    	//	_11       = 1 + _10
    	//	_1100     = _11 << 2
    	//	_1111     = _11 + _1100
    	//	_11110000 = _1111 << 4
    	//	_11111111 = _1111 + _11110000
    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	return      ((x32 << 32 + 1) << 96 + 1) << 94
    	//
    	p256Sqr(t0, x, 1)
    	p256Mul(t0, x, t0)
    	p256Sqr(t1, t0, 2)
    	p256Mul(t0, t0, t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p384.go

    	//	_110     = 2*_11
    	//	_111     = 1 + _110
    	//	_111000  = _111 << 3
    	//	_111111  = _111 + _111000
    	//	_1111110 = 2*_111111
    	//	_1111111 = 1 + _1111110
    	//	x12      = _1111110 << 5 + _111111
    	//	x24      = x12 << 12 + x12
    	//	x31      = x24 << 7 + _1111111
    	//	x32      = 2*x31 + 1
    	//	x63      = x32 << 31 + x31
    	//	x126     = x63 << 63 + x63
    	//	x252     = x126 << 126 + x126
    	//	x255     = x252 << 3 + _111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
Back to top