Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for blsi32 (0.14 sec)

  1. test/codegen/bmi.go

    	// amd64/v3:"ANDNQ"
    	return x &^ y
    }
    
    func andn32(x, y int32) int32 {
    	// amd64/v3:"ANDNL"
    	return x &^ y
    }
    
    func blsi64(x int64) int64 {
    	// amd64/v3:"BLSIQ"
    	return x & -x
    }
    
    func blsi32(x int32) int32 {
    	// amd64/v3:"BLSIL"
    	return x & -x
    }
    
    func blsmsk64(x int64) int64 {
    	// amd64/v3:"BLSMSKQ"
    	return x ^ (x - 1)
    }
    
    func blsmsk32(x int32) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/encoding/base32/base32.go

    // license that can be found in the LICENSE file.
    
    // Package base32 implements base32 encoding as specified by RFC 4648.
    package base32
    
    import (
    	"io"
    	"slices"
    	"strconv"
    )
    
    /*
     * Encodings
     */
    
    // An Encoding is a radix 32 encoding/decoding scheme, defined by a
    // 32-character alphabet. The most common is the "base32" encoding
    // introduced for SASL GSSAPI and standardized in RFC 4648.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/amd64/versions_test.go

    	// native objdump doesn't include [QL] on linux.
    	"popcnt": {"popcntq", "popcntl", "popcnt"},
    	"bmi1": {
    		"andnq", "andnl", "andn",
    		"blsiq", "blsil", "blsi",
    		"blsmskq", "blsmskl", "blsmsk",
    		"blsrq", "blsrl", "blsr",
    		"tzcntq", "tzcntl", "tzcnt",
    	},
    	"bmi2": {
    		"sarxq", "sarxl", "sarx",
    		"shlxq", "shlxl", "shlx",
    		"shrxq", "shrxl", "shrx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        testEncodingWithCasing(base32(), "", "");
        testEncodingWithCasing(base32(), "f", "MY======");
        testEncodingWithCasing(base32(), "fo", "MZXQ====");
        testEncodingWithCasing(base32(), "foo", "MZXW6===");
        testEncodingWithCasing(base32(), "foob", "MZXW6YQ=");
        testEncodingWithCasing(base32(), "fooba", "MZXW6YTB");
        testEncodingWithCasing(base32(), "foobar", "MZXW6YTBOI======");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  5. src/encoding/base32/example_test.go

    package base32_test
    
    import (
    	"encoding/base32"
    	"fmt"
    	"os"
    )
    
    func ExampleEncoding_EncodeToString() {
    	data := []byte("any + old & data")
    	str := base32.StdEncoding.EncodeToString(data)
    	fmt.Println(str)
    	// Output:
    	// MFXHSIBLEBXWYZBAEYQGIYLUME======
    }
    
    func ExampleEncoding_Encode() {
    	data := []byte("Hello, world!")
    	dst := make([]byte, base32.StdEncoding.EncodedLen(len(data)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 16:54:36 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

      private static final int INPUTS_COUNT = 0x1000;
      private static final int INPUTS_MASK = 0xFFF;
    
      enum EncodingOption {
        BASE64(BaseEncoding.base64()),
        BASE64_URL(BaseEncoding.base64Url()),
        BASE32(BaseEncoding.base32()),
        BASE32_HEX(BaseEncoding.base32Hex()),
        BASE16(BaseEncoding.base16());
    
        final BaseEncoding encoding;
    
        EncodingOption(BaseEncoding encoding) {
          this.encoding = encoding;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.2K bytes
    - Viewed (0)
  7. api/go1.9.txt

    pkg encoding/asn1, const TagNull ideal-int
    pkg encoding/asn1, var NullBytes []uint8
    pkg encoding/asn1, var NullRawValue RawValue
    pkg encoding/base32, const NoPadding = -1
    pkg encoding/base32, const NoPadding int32
    pkg encoding/base32, const StdPadding = 61
    pkg encoding/base32, const StdPadding int32
    pkg encoding/base32, method (Encoding) WithPadding(int32) *Encoding
    pkg encoding/csv, type Reader struct, ReuseRecord bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  8. src/encoding/base64/example_test.go

    // Copyright 2012 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.
    
    // Keep in sync with ../base32/example_test.go.
    
    package base64_test
    
    import (
    	"encoding/base64"
    	"fmt"
    	"os"
    )
    
    func Example() {
    	msg := "Hello, 世界"
    	encoded := base64.StdEncoding.EncodeToString([]byte(msg))
    	fmt.Println(encoded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 19 08:44:22 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

                final List<String> wrongPgpKeys = pgpKeys
                    .stream()
                    // The key is 160 bits long, encoded in base32 (case-insensitive characters).
                    //
                    // Base32 gives us 4 bits per character, so the whole fingerprint will be:
                    // (160 bits) / (4 bits / character) = 40 characters
                    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/BaseEncoding.java

       */
      public static BaseEncoding base64Url() {
        return BASE64_URL;
      }
    
      private static final BaseEncoding BASE32 =
          new StandardBaseEncoding("base32()", "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", '=');
    
      /**
       * The "base32" encoding specified by <a href="http://tools.ietf.org/html/rfc4648#section-6">RFC
       * 4648 section 6</a>, Base 32 Encoding. (This is the same as the base 32 encoding from <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top