Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for _b (0.08 sec)

  1. src/math/big/arith.go

    		r0 -= d
    	}
    	return Word(qq), Word(r0 >> s)
    }
    
    // reciprocalWord return the reciprocal of the divisor. rec = floor(( _B^2 - 1 ) / u - _B). u = d1 << nlz(d1).
    func reciprocalWord(d1 Word) Word {
    	u := uint(d1 << nlz(d1))
    	x1 := ^u
    	x0 := uint(_M)
    	rec, _ := bits.Div(x1, x0, u) // (_B^2-1)/U-_B = (_B*(_M-C)+_M)/U
    	return Word(rec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/annotate-parameter-replication.mlir

      // CHECK-LABEL: func @annotate_broadcast_values
      func.func @annotate_broadcast_values(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        %0 = "tf._A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %1 = "tf._B"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %5:2 = tf_device.replicate([%0, %arg0] as %ri_0: tensor<?xi32>) {n = 2 : i32} {
          %2 = "tf._F"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 25 02:54:34 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/import.input

    )
    
    // Test deduping and extended sorting
    import (
    	"B" // B
    	a "A" // aA
    	b "A" // bA2
    	b "A" // bA1
    	. "B" // .B
    	. "B"
    	"C"
    	"C"
    	"C"
    	a "D" // aD
    	"B"
    	_ "B" // _b
    )
    
    import (
    	"dedup_by_group"
    	"dedup_by_group"
    
    	"dedup_by_group"
    )
    
    import (
    	/* comment */ io1 "io"
    	"fmt" // for Printf
    	/* comment */ "log"
    	/* comment */ io2 "io"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/import.golden

    	"io"  // for Reader
    	"log" // for Fatal
    	"math"
    )
    
    // Test deduping and extended sorting
    import (
    	a "A" // aA
    	b "A" // bA1
    	b "A" // bA2
    	"B"   // B
    	. "B" // .B
    	_ "B" // _b
    	"C"
    	a "D" // aD
    )
    
    import (
    	"dedup_by_group"
    
    	"dedup_by_group"
    )
    
    import (
    	"fmt" // for Printf
    	/* comment */ io1 "io"
    	/* comment */ io2 "io"
    	/* comment */ "log"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

            def e = thrown(IllegalArgumentException)
            e.message == "Identity may contain only letters and digits, received: $identity"
    
            where:
            identity << ['%$#$#^!@', '', ' ', 'a ', 'a b', '$a', '_b', 'c!', '-42', null]
        }
    
        def "describes missing properties"() {
            given:
            providerFactory.gradleProperty('myServiceUsername') >> Providers.notDefined()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. pkg/apis/policy/validation/validation_test.go

    		"a.abc*",
    		"a.b.*",
    		"a/b/c/d",
    		"a/*",
    		"a/b/*",
    		"a.b/c*",
    		"a.b/c.d",
    		"a/b.c/d",
    	}
    	invalid := []string{
    		"",
    		"รค",
    		"a_",
    		"_",
    		"_a",
    		"_a._b",
    		"__",
    		"-",
    		".",
    		"a.",
    		".a",
    		"a.b.",
    		"a*.b",
    		"a*b",
    		"*a",
    		"Abc",
    		"/",
    		"a/",
    		"/a",
    		"a*/b",
    		func(n int) string {
    			x := make([]byte, n)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. src/internal/chacha8rand/chacha8_generic.go

    		// them here first to make the next swap get the right answer.
    		for i, x := range buf {
    			buf[i] = x>>32 | x<<32
    		}
    	}
    }
    
    // qr is the (inlinable) ChaCha8 quarter round.
    func qr(a, b, c, d uint32) (_a, _b, _c, _d uint32) {
    	a += b
    	d ^= a
    	d = d<<16 | d>>16
    	c += d
    	b ^= c
    	b = b<<12 | b>>20
    	a += b
    	d ^= a
    	d = d<<8 | d>>24
    	c += d
    	b ^= c
    	b = b<<7 | b>>25
    	return a, b, c, d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-ExportKeyingMaterial

    00000400  e7 e7 fa 1b 2c 69 0c 30  75 a1 81 5a e6 e6 ab c5  |....,i.0u..Z....|
    00000410  22 b0 7d e1 ba 4f d7 75  89 88 23 35 be 36 9d 64  |".}..O.u..#5.6.d|
    00000420  3e 16 8d 5f 42 0f 6f 9a  78 8f 45 df 21 3e 4b 34  |>.._B.o.x.E.!>K4|
    00000430  6c ae ea c6 4a 71 0b d8  fd 70 f3 ac ce 68 3d f8  |l...Jq...p...h=.|
    00000440  62 d4 86 1e ac 3f ab 7d  36 83 80 4f c6 be 54 b7  |b....?.}6..O..T.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-ALPN-Fallback

    00000120  1f 96 8f 84 96 a6 94 f0  a0 9e 03 04 67 a2 e9 e3  |............g...|
    00000130  38 0c cd f3 af 45 77 65  33 06 e7 aa cf a0 e6 01  |8....Ewe3.......|
    00000140  a7 5f 62 95 32 18 b9 58  03 db 9c ca c7 50 80 cf  |._b.2..X.....P..|
    00000150  15 1c b0 7e 97 30 bb e2  bf d5 67 f4 e1 87 1e 07  |...~.0....g.....|
    00000160  71 2f f5 31 7e 7e 05 8a  cb a1 98 83 de de aa 87  |q/.1~~..........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top