Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for putData (0.25 sec)

  1. guava/src/com/google/common/hash/BloomFilter.java

          LockFreeBitArray dataArray = new LockFreeBitArray(LongMath.checkedMultiply(dataLength, 64L));
          for (int i = 0; i < dataLength; i++) {
            dataArray.putData(i, din.readLong());
          }
    
          return new BloomFilter<>(dataArray, numHashFunctions, funnel, strategy);
        } catch (IOException e) {
          throw e;
        } catch (Exception e) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

          LockFreeBitArray dataArray = new LockFreeBitArray(LongMath.checkedMultiply(dataLength, 64L));
          for (int i = 0; i < dataLength; i++) {
            dataArray.putData(i, din.readLong());
          }
    
          return new BloomFilter<>(dataArray, numHashFunctions, funnel, strategy);
        } catch (IOException e) {
          throw e;
        } catch (Exception e) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    			}
    
    			zz = zz.mul(z, *powers[yi>>(_W-n)])
    			zz, z = z, zz
    			z = z.trunc(z, logM)
    
    			yi <<= n
    			advance = true
    		}
    	}
    
    	*zzp = zz
    	putNat(zzp)
    	for i := range powers {
    		putNat(powers[i])
    	}
    
    	return z.norm()
    }
    
    // expNNMontgomery calculates x**y mod m using a fixed, 4-bit window.
    // Uses Montgomery representation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    	tmp := getNat(3 * len(v))
    	temps := make([]*nat, recDepth)
    
    	clear(z)
    	z.divRecursiveStep(u, v, 0, tmp, temps)
    
    	// Free temporaries.
    	for _, n := range temps {
    		if n != nil {
    			putNat(n)
    		}
    	}
    	putNat(tmp)
    }
    
    // divRecursiveStep is the actual implementation of recursive division.
    // It adds ⌊u/v⌋ to z and overwrites u with the remainder r.
    // z must be large enough to hold ⌊u/v⌋.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top