Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 283 for Universe (0.46 sec)

  1. src/compress/bzip2/bzip2.go

    	}
    
    	// We have completed the entropy decoding. Now we can perform the
    	// inverse BWT and setup the RLE buffer.
    	bz2.preRLE = bz2.tt[:bufIndex]
    	bz2.preRLEUsed = 0
    	bz2.tPos = inverseBWT(bz2.preRLE, origPtr, bz2.c[:])
    	bz2.lastByte = -1
    	bz2.byteRepeats = 0
    	bz2.repeats = 0
    
    	return nil
    }
    
    // inverseBWT implements the inverse Burrows-Wheeler transform as described in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/math/ldexp.go

    // Copyright 2009 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 math
    
    // Ldexp is the inverse of [Frexp].
    // It returns frac × 2**exp.
    //
    // Special cases are:
    //
    //	Ldexp(±0, exp) = ±0
    //	Ldexp(±Inf, exp) = ±Inf
    //	Ldexp(NaN, exp) = NaN
    func Ldexp(frac float64, exp int) float64 {
    	if haveArchLdexp {
    		return archLdexp(frac, exp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/package-info.java

     *       as that of its keys. This is sometimes called an "invertible map," since the restriction on
     *       values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
     *       instance of {@code BiMap}.
     *   <dt>{@link Table}
     *   <dd>A new type, which is similar to {@link java.util.Map}, but which indexes its values by an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/package-info.java

     *       as that of its keys. This is sometimes called an "invertible map," since the restriction on
     *       values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
     *       instance of {@code BiMap}.
     *   <dt>{@link Table}
     *   <dd>A new type, which is similar to {@link java.util.Map}, but which indexes its values by an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/path.go

    			p = append(p, '%', hex[c>>4], hex[c&0xF])
    		} else {
    			p = append(p, c)
    		}
    	}
    
    	return string(p)
    }
    
    // PrefixToPath is the inverse of PathToPrefix, replacing escape sequences with
    // the original character.
    func PrefixToPath(s string) (string, error) {
    	percent := strings.IndexByte(s, '%')
    	if percent == -1 {
    		return s, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/permutation_test.cc

          Permute<int>(single_element_array, permutation);
      EXPECT_THAT(permutation_result, ElementsAre(8));
    }
    
    TEST(PermutationTest, PermuteFourElements) {
      const SmallVector<int> arr = {0, 3, 1, 2};
      // Permutation inverse of {0, 3, 1, 2}.
      const SmallVector<int64_t> permutation = {0, 2, 3, 1};
    
      const SmallVector<int> permutation_result = Permute<int>(arr, permutation);
      EXPECT_THAT(permutation_result, ElementsAre(0, 1, 2, 3));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 00:14:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       */
      @Override
      public ImmutableSetMultimap<V, K> inverse() {
        ImmutableSetMultimap<V, K> result = inverse;
        return (result == null) ? (inverse = invert()) : result;
      }
    
      private ImmutableSetMultimap<V, K> invert() {
        Builder<V, K> builder = builder();
        for (Entry<K, V> entry : entries()) {
          builder.put(entry.getValue(), entry.getKey());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    		return
    	}
    	b.AddASN1(asn1.INTEGER, func(c *cryptobyte.Builder) {
    		if bytes[0]&0x80 != 0 {
    			c.AddUint8(0)
    		}
    		c.AddBytes(bytes)
    	})
    }
    
    // inverse sets kInv to the inverse of k modulo the order of the curve.
    func inverse[Point nistPoint[Point]](c *nistCurve[Point], kInv, k *bigmod.Nat) {
    	if c.curve.Params().Name == "P-256" {
    		kBytes, err := nistec.P256OrdInverse(k.Bytes(c.N))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/crypto/des/const.go

    	7, 15, 23, 31, 39, 47, 55, 63,
    	5, 13, 21, 29, 37, 45, 53, 61,
    	3, 11, 19, 27, 35, 43, 51, 59,
    	1, 9, 17, 25, 33, 41, 49, 57,
    }
    
    // Used to perform a final permutation of a 4-bit preoutput block. This is the
    // inverse of initialPermutation
    var finalPermutation = [64]byte{
    	24, 56, 16, 48, 8, 40, 0, 32,
    	25, 57, 17, 49, 9, 41, 1, 33,
    	26, 58, 18, 50, 10, 42, 2, 34,
    	27, 59, 19, 51, 11, 43, 3, 35,
    	28, 60, 20, 52, 12, 44, 4, 36,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/UndirectedNetworkConnections.java

        return Collections.unmodifiableSet(((BiMap<E, N>) incidentEdgeMap).values());
      }
    
      @Override
      public Set<E> edgesConnecting(N node) {
        return new EdgesConnecting<>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top