Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for REVERSED (0.11 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

       */
      public static InetAddress fromLittleEndianByteArray(byte[] addr) throws UnknownHostException {
        byte[] reversed = new byte[addr.length];
        for (int i = 0; i < addr.length; i++) {
          reversed[i] = addr[addr.length - i - 1];
        }
        return InetAddress.getByAddress(reversed);
      }
    
      /**
       * Returns a new InetAddress that is one less than the passed in address. This method works for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    			//     for i := len(n)-1; i >= 0; i--
    			init, inc, nxt = parseIndVar(limit)
    			if init == nil {
    				// No recognized induction variable on either operand
    				continue
    			}
    
    			// Ok, the arguments were reversed. Swap them, and remember that we're
    			// looking at an ind >/>= loop (so the induction must be decrementing).
    			ind, limit = limit, ind
    			less = false
    		}
    
    		if ind.Block != b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            for (file in files) {
                val packageParts = file.packageName.takeIf { it.isNotEmpty() }?.split('.') ?: emptyList()
                var javaDir: PsiDirectory? = file.parent
                for (part in packageParts.reversed()) {
                    if (javaDir?.name == part) {
                        javaDir = javaDir.parent
                    } else {
                        // Error(ish): file package does not match file path.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    	for i := range tt {
    		b := tt[i] & 0xff
    		tt[c[b]] |= uint32(i) << 8
    		c[b]++
    	}
    
    	return tt[origPtr] >> 8
    }
    
    // This is a standard CRC32 like in hash/crc32 except that all the shifts are reversed,
    // causing the bits in the input to be processed in the reverse of the usual order.
    
    var crctab [256]uint32
    
    func init() {
    	const poly = 0x04C11DB7
    	for i := range crctab {
    		crc := uint32(i) << 24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[REVERSED:.*]] = "mhlo.reverse"(%[[BOUNDED]])
        // CHECK-SAME: {dimensions = dense<0> : tensor<1xi64>}
        // CHECK-SAME: (tensor<?xf32, #mhlo.type_extensions<bounds = [4]>>) -> tensor<?xf32, #mhlo.type_extensions<bounds = [4]>>
        %1 = "tf.ReverseV2"(%0, %axis) : (tensor<?xf32>, tensor<1xi32>) -> tensor<?xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVHBRstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVHBR", typ: "Mem"}, // store half word reversed byte using index reg
    		{name: "MOVWBRstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVWBR", typ: "Mem"}, // store word reversed byte using index reg
    		{name: "MOVDBRstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVDBR", typ: "Mem"}, // store double word reversed byte using index reg
    
    		// The following ops store 0 into arg0+aux+auxint arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InetAddresses.java

       */
      public static InetAddress fromLittleEndianByteArray(byte[] addr) throws UnknownHostException {
        byte[] reversed = new byte[addr.length];
        for (int i = 0; i < addr.length; i++) {
          reversed[i] = addr[addr.length - i - 1];
        }
        return InetAddress.getByAddress(reversed);
      }
    
      /**
       * Returns a new InetAddress that is one less than the passed in address. This method works for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    type gcm struct {
    	cipher    Block
    	nonceSize int
    	tagSize   int
    	// productTable contains the first sixteen powers of the key, H.
    	// However, they are in bit reversed order. See NewGCMWithNonceSize.
    	productTable [16]gcmFieldElement
    }
    
    // NewGCM returns the given 128-bit, block cipher wrapped in Galois Counter Mode
    // with the standard nonce length.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     * intermediate certificate, "Entrust Certification Authority - L1M". The intermediate certificate
     * is used to verify the signature of the "www.squareup.com" certificate.
     *
     * This roles are reversed for client authentication. In that case the client has a private key and
     * a chain of certificates. The server uses a set of trusted root certificates to authenticate the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/deployment_util_test.go

    			false,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.Name, func(t *testing.T) {
    			runTest := func(t1, t2 *v1.PodTemplateSpec, reversed bool) {
    				reverseString := ""
    				if reversed {
    					reverseString = " (reverse order)"
    				}
    				// Run
    				equal := EqualIgnoreHash(t1, t2)
    				if equal != test.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
Back to top