Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tableIndex (0.29 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

          // reusing "tableIndex" and "next"; these variables were no longer needed
          int tableIndex = getHash(lastEntry) & hashTableMask();
          int lastNext = table[tableIndex];
          if (lastNext == srcIndex) {
            // we need to update the root pointer
            table[tableIndex] = dstIndex;
          } else {
            // we need to update a pointer in an entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashing.java

          Object table,
          int[] entries,
          @Nullable Object[] keys,
          @CheckForNull @Nullable Object[] values) {
        int hash = Hashing.smearedHash(key);
        int tableIndex = hash & mask;
        int next = tableGet(table, tableIndex);
        if (next == UNSET) {
          return -1;
        }
        int hashPrefix = getHashPrefix(hash, mask);
        int lastEntryIndex = -1;
        do {
          int entryIndex = next - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashing.java

          Object table,
          int[] entries,
          @Nullable Object[] keys,
          @CheckForNull @Nullable Object[] values) {
        int hash = Hashing.smearedHash(key);
        int tableIndex = hash & mask;
        int next = tableGet(table, tableIndex);
        if (next == UNSET) {
          return -1;
        }
        int hashPrefix = getHashPrefix(hash, mask);
        int lastEntryIndex = -1;
        do {
          int entryIndex = next - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashSet.java

          // also need to update whoever's "next" pointer was pointing to the last entry place
          int tableIndex = smearedHash(object) & mask;
          int next = CompactHashing.tableGet(table, tableIndex);
          int srcNext = srcIndex + 1;
          if (next == srcNext) {
            // we need to update the root pointer
            CompactHashing.tableSet(table, tableIndex, dstIndex + 1);
          } else {
            // we need to update a pointer in an entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

          // also need to update whoever's "next" pointer was pointing to the last entry place
          int tableIndex = smearedHash(object) & mask;
          int next = CompactHashing.tableGet(table, tableIndex);
          int srcNext = srcIndex + 1;
          if (next == srcNext) {
            // we need to update the root pointer
            CompactHashing.tableSet(table, tableIndex, dstIndex + 1);
          } else {
            // we need to update a pointer in an entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p384.go

    	// doublings between iterations.
    	t := NewP384Point()
    	p.Set(NewP384Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    		windowValue := byte >> 4
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    
    		windowValue = byte & 0b1111
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p224.go

    	// doublings between iterations.
    	t := NewP224Point()
    	p.Set(NewP224Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    		windowValue := byte >> 4
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    
    		windowValue = byte & 0b1111
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p521.go

    	// doublings between iterations.
    	t := NewP521Point()
    	p.Set(NewP521Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    		windowValue := byte >> 4
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    
    		windowValue = byte & 0b1111
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256.go

    	// doublings between iterations.
    	t := NewP256Point()
    	p.Set(NewP256Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    		windowValue := byte >> 4
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    
    		windowValue = byte & 0b1111
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/generate.go

    	t := New{{.P}}Point()
    	p.Set(New{{.P}}Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    		windowValue := byte >> 4
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    
    		windowValue = byte & 0b1111
    		tables[tableIndex].Select(t, windowValue)
    		p.Add(p, t)
    		tableIndex--
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top