Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for barmod (0.36 sec)

  1. src/crypto/internal/bigmod/nat_test.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bigmod
    
    import (
    	"fmt"
    	"math/big"
    	"math/bits"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    	"testing/quick"
    )
    
    func (n *Nat) String() string {
    	var limbs []string
    	for i := range n.limbs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/go/types/stdlib_test.go

    var excluded = map[string]bool{
    	"builtin": true,
    
    	// See go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. hack/unwanted-dependencies.json

          "cloud.google.com/go/storage": "cloud dependency",
          "github.com/GoogleCloudPlatform/k8s-cloud-provider": "cloud dependency",
          "github.com/PuerkitoBio/urlesc": "unmaintained, archive mode",
          "github.com/armon/consul-api": "MPL license not in CNCF allowlist",
          "github.com/bketelsen/crypt": "unused, crypto",
          "github.com/form3tech-oss/jwt-go": "unmaintained, archive mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    var excluded = map[string]bool{
    	"builtin": true,
    
    	// go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. go.mod

    	github.com/VividCortex/ewma v1.2.0 // indirect
    	github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
    	github.com/apache/thrift v0.20.0 // indirect
    	github.com/armon/go-metrics v0.4.0 // indirect
    	github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
    	github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. test/codegen/arithmetic.go

    func CapDiv(a []int) int {
    	// 386:"SHRL\t[$]12"
    	// amd64:"SHRQ\t[$]12"
    	// arm64:"LSR\t[$]12",-"SDIV"
    	// arm:"SRL\t[$]12",-".*udiv"
    	// ppc64x:"SRD\t[$]12"
    	return cap(a) / ((1 << 11) + 2048)
    }
    
    func CapMod(a []int) int {
    	// 386:"ANDL\t[$]4095"
    	// amd64:"ANDL\t[$]4095"
    	// arm64:"AND\t[$]4095",-"SDIV"
    	// arm/6:"AND",-".*udiv"
    	// arm/7:"BFC",-".*udiv",-"AND"
    	// ppc64x:"RLDICL"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	< crypto/internal/boring/bbig
    	< crypto/rand
    	< crypto/internal/mlkem768
    	< crypto/ed25519
    	< encoding/asn1
    	< golang.org/x/crypto/cryptobyte/asn1
    	< golang.org/x/crypto/cryptobyte
    	< crypto/internal/bigmod
    	< crypto/dsa, crypto/elliptic, crypto/rsa
    	< crypto/ecdsa
    	< CRYPTO-MATH;
    
    	CGO, net !< CRYPTO-MATH;
    
    	# TLS, Prince of Dependencies.
    	CRYPTO-MATH, NET, container/list, encoding/hex, encoding/pem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat_amd64.s

    // Code generated by command: go run nat_amd64_asm.go -out ../nat_amd64.s -pkg bigmod. DO NOT EDIT.
    
    //go:build !purego
    
    // func addMulVVW1024(z *uint, x *uint, y uint) (c uint)
    // Requires: ADX, BMI2
    TEXT ·addMulVVW1024(SB), $0-32
    	CMPB ·supportADX+0(SB), $0x01
    	JEQ  adx
    	MOVQ z+0(FP), CX
    	MOVQ x+8(FP), BX
    	MOVQ y+16(FP), SI
    	XORQ DI, DI
    
    	// Iteration 0
    	MOVQ (BX), AX
    	MULQ SI
    	ADDQ (CX), AX
    	ADCQ $0x00, DX
    	ADDQ DI, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    package spdy
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    
    	"github.com/armon/go-socks5"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnettesting "k8s.io/apimachinery/pkg/util/net/testing"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    kanoya.kagoshima.jp kanra.gunma.jp kanuma.tochigi.jp kanzaki.saga.jp kapsi.fi karacol.su karaganda.su karasjohka.no karasjok.no karasuyama.tochigi.jp karate.museum karatsu.saga.jp karelia.su karikatur.museum kariwa.niigata.jp kariya.aichi.jp karlsoy.no karmoy.no karmøy.no karpacz.pl kartuzy.pl karuizawa.nagano.jp karumai.iwate.jp kasahara.gifu.jp kasai.hyogo.jp kasama.ibaraki.jp kasamatsu.gifu.jp kasaoka.okayama.jp kashiba.nara.jp kashihara.nara.jp kashima.ibaraki.jp kashima.saga.jp kashiwa.chiba.jp kashiwara.osaka.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top