Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for memhash (0.14 sec)

  1. src/runtime/asm_amd64.s

    	// Using MFENCE;LFENCE here aligns the serializing properties without
    	// runtime detection of CPU manufacturer.
    	MFENCE
    	LFENCE
    	RDTSC
    	JMP done
    
    // func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    // hash function using AES hardware instructions
    TEXT runtime·memhash<ABIInternal>(SB),NOSPLIT,$0-32
    	// AX = ptr to data
    	// BX = seed
    	// CX = size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

        int hash = original.getHash();
        return segmentFor(hash).copyEntry(original, newNext);
      }
    
      int hash(Object key) {
        int h = keyEquivalence.hash(key);
        return rehash(h);
      }
    
      void reclaimValue(WeakValueReference<K, V, E> valueReference) {
        E entry = valueReference.getEntry();
        int hash = entry.getHash();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        int hash = original.getHash();
        return segmentFor(hash).copyEntry(original, newNext);
      }
    
      int hash(Object key) {
        int h = keyEquivalence.hash(key);
        return rehash(h);
      }
    
      void reclaimValue(WeakValueReference<K, V, E> valueReference) {
        E entry = valueReference.getEntry();
        int hash = entry.getHash();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    private final java.io.File projectDirectory; public void PathAssembler(java.io.File, java.io.File); public PathAssembler$LocalDistribution getDistribution(WrapperConfiguration); private String rootDirName(String, WrapperConfiguration); private String getHash(String); private String removeExtension(String); private String getDistName(java.net.URI); private java.io.File getBaseDir(String); } org/gradle/wrapper/SystemPropertiesHand.class package org.gradle.wrapper; public synchronized class SystemPropertiesHand...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    				timeout: 300 * time.Second,
    				tags:    []string{"osusergo"},
    				pkg:     "os/user",
    			})
    		t.registerTest("hash/maphash purego implementation",
    			&goTest{
    				variant: "purego",
    				timeout: 300 * time.Second,
    				tags:    []string{"purego"},
    				pkg:     "hash/maphash",
    			})
    	}
    
    	// Check that all crypto packages compile with the purego build tag.
    	t.registerTest("crypto with tag purego", &goTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. okhttp/api/okhttp.api

    }
    
    public final class okhttp3/CertificatePinner$Pin {
    	public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun getHash ()Lokio/ByteString;
    	public final fun getHashAlgorithm ()Ljava/lang/String;
    	public final fun getPattern ()Ljava/lang/String;
    	public fun hashCode ()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top