OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:perturb
(Results
1 - 3
of
3
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java
67
/** Number of bits to
perturb
the index when probing for collision resolution. */
191
for (int
perturb
=
perturb
(hash); states[index] != FREE;
perturb
>>= PERTURB_SHIFT) {
192
j = probe(
perturb
, j);
221
for (int
perturb
=
perturb
(hash); states[index] != FREE;
perturb
>>= PERTURB_SHIFT) {
222
j = probe(
perturb
, j);
245
*
Perturb
the hash for starting probing
249
private static int
perturb
(final int hash) {
method in class:OpenIntToDoubleHashMap
280
int
perturb
=
perturb
(hash);
local
[
all
...]
OpenIntToFieldHashMap.java
70
/** Number of bits to
perturb
the index when probing for collision resolution. */
203
for (int
perturb
=
perturb
(hash); states[index] != FREE;
perturb
>>= PERTURB_SHIFT) {
204
j = probe(
perturb
, j);
233
for (int
perturb
=
perturb
(hash); states[index] != FREE;
perturb
>>= PERTURB_SHIFT) {
234
j = probe(
perturb
, j);
257
*
Perturb
the hash for starting probing
261
private static int
perturb
(final int hash) {
method in class:OpenIntToFieldHashMap
292
int
perturb
=
perturb
(hash);
local
[
all
...]
/external/mksh/src/
main.c
1678
size_t i, j, osize, mask,
perturb
;
local
1739
size_t j,
perturb
, mask;
local
[
all
...]
Completed in 232 milliseconds