Home
last modified time | relevance | path

Searched refs:perturb (Results 1 – 25 of 30) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DOpenIntToDoubleHashMap.java191 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) { in get()
192 j = probe(perturb, j); in get()
221 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) { in containsKey()
222 j = probe(perturb, j); in containsKey()
249 private static int perturb(final int hash) { in perturb() method in OpenIntToDoubleHashMap
280 int perturb = perturb(hash); in findInsertionIndex() local
284 j = probe(perturb, j); in findInsertionIndex()
286 perturb >>= PERTURB_SHIFT; in findInsertionIndex()
304 j = probe(perturb, j); in findInsertionIndex()
313 perturb >>= PERTURB_SHIFT; in findInsertionIndex()
[all …]
DOpenIntToFieldHashMap.java203 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) { in get()
204 j = probe(perturb, j); in get()
233 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) { in containsKey()
234 j = probe(perturb, j); in containsKey()
261 private static int perturb(final int hash) { in perturb() method in OpenIntToFieldHashMap
292 int perturb = perturb(hash); in findInsertionIndex() local
296 j = probe(perturb, j); in findInsertionIndex()
298 perturb >>= PERTURB_SHIFT; in findInsertionIndex()
316 j = probe(perturb, j); in findInsertionIndex()
325 perturb >>= PERTURB_SHIFT; in findInsertionIndex()
[all …]
/external/iproute2/examples/
Dcbqinit.eth143 $TC qdisc add dev $DEVICE parent 1:2 sfq quantum 1514b perturb 15
51 $TC qdisc add dev $DEVICE parent 1:3 sfq quantum 1514b perturb 15
59 $TC qdisc add dev $DEVICE parent 1:4 sfq quantum 1514b perturb 15
Dcbq.init-v0.7.3636 PERTURB=${PERTURB:+perturb $PERTURB}
/external/google-breakpad/src/client/mac/sender/fr.lproj/
DLocalizable.strings3 "crashDialogMsg" = "Le système et les autres applications n’ont pas été perturbés. Un rapport a été…
6 "noCrashDialogMsg" = "Le système et les autres applications n’ont pas été perturbés. Un rapport a é…
/external/libnl/lib/route/qdisc/
Dsfq.c185 void rtnl_sfq_set_perturb(struct rtnl_qdisc *qdisc, int perturb) in rtnl_sfq_set_perturb() argument
192 sfq->qs_perturb = perturb; in rtnl_sfq_set_perturb()
/external/python/cpython3/Objects/
Ddictobject.c685 size_t perturb = (size_t)hash; in lookdict_index() local
696 perturb >>= PERTURB_SHIFT; in lookdict_index()
697 i = mask & (i*5 + perturb + 1); in lookdict_index()
730 size_t i, mask, perturb; in lookdict() local
738 perturb = hash; in lookdict()
775 perturb >>= PERTURB_SHIFT; in lookdict()
776 i = (i*5 + perturb + 1) & mask; in lookdict()
798 size_t perturb = (size_t)hash; in lookdict_unicode() local
817 perturb >>= PERTURB_SHIFT; in lookdict_unicode()
818 i = mask & (i*5 + perturb + 1); in lookdict_unicode()
[all …]
Dsetobject.c60 size_t perturb; in set_lookkey() local
70 perturb = hash; in set_lookkey()
125 perturb >>= PERTURB_SHIFT; in set_lookkey()
126 i = (i * 5 + 1 + perturb) & mask; in set_lookkey()
142 size_t perturb; in set_add_entry() local
162 perturb = hash; in set_add_entry()
224 perturb >>= PERTURB_SHIFT; in set_add_entry()
225 i = (i * 5 + 1 + perturb) & mask; in set_add_entry()
271 size_t perturb = hash; in set_insert_clean() local
286 perturb >>= PERTURB_SHIFT; in set_insert_clean()
[all …]
Ddictnotes.txt143 loop and move the i = (i << 2) + i + perturb + 1 to an unrolled
/external/python/cpython2/Objects/
Dsetobject.c76 register size_t perturb; in set_lookkey() local
115 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) { in set_lookkey()
116 i = (i << 2) + i + perturb + 1; in set_lookkey()
158 register size_t perturb; in set_lookkey_string() local
186 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) { in set_lookkey_string()
187 i = (i << 2) + i + perturb + 1; in set_lookkey_string()
248 register size_t perturb; in set_insert_clean() local
255 for (perturb = hash; entry->key != NULL; perturb >>= PERTURB_SHIFT) { in set_insert_clean()
256 i = (i << 2) + i + perturb + 1; in set_insert_clean()
Ddictobject.c323 register size_t perturb; in lookdict() local
364 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) { in lookdict()
365 i = (i << 2) + i + perturb + 1; in lookdict()
411 register size_t perturb; in lookdict_string() local
442 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) { in lookdict_string()
443 i = (i << 2) + i + perturb + 1; in lookdict_string()
572 register size_t perturb; in insertdict_clean() local
580 for (perturb = hash; ep->me_key != NULL; perturb >>= PERTURB_SHIFT) { in insertdict_clean()
581 i = (i << 2) + i + perturb + 1; in insertdict_clean()
Ddictnotes.txt159 loop and move the i = (i << 2) + i + perturb + 1 to an unrolled
/external/libnl/tests/
Dtest-complex-HTB-with-hash-filters.c448 int quantum, int limit, int perturb in qdisc_add_SFQ_leaf() argument
476 if(perturb) { in qdisc_add_SFQ_leaf()
477 rtnl_sfq_set_perturb(qdisc, perturb); // default never perturb the hash in qdisc_add_SFQ_leaf()
/external/mksh/src/
Dmain.c1746 size_t i, j, osize, mask, perturb; in tgrow() local
1774 j = perturb = tblp->ua.hval; in tgrow()
1777 j = (j << 2) + j + perturb + 1; in tgrow()
1778 perturb >>= PERTURB_SHIFT; in tgrow()
1807 size_t j, perturb, mask; in ktscan() local
1812 j = perturb = h; in ktscan()
1815 j = (j << 2) + j + perturb + 1; in ktscan()
1816 perturb >>= PERTURB_SHIFT; in ktscan()
/external/tensorflow/tensorflow/contrib/opt/python/training/
Dmoving_average_optimizer_test.py136 perturb = control_flow_ops.group([
170 perturb.run()
/external/llvm/test/CodeGen/ARM/
Dvldm-liveness.ll17 ; the loads. Earlier optimisations may perturb the output over time, but
/external/python/cpython2/Doc/library/
Dcrypt.rst35 to perturb the DES algorithm in one of 4096 ways. The characters in *salt* must
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/
Dcgscc-invalidate.ll18 ; perturb the dominator tree.
Dcgscc-incremental-invalidate.ll49 ; perturb the dominator tree.
/external/swiftshader/third_party/LLVM/test/Transforms/LoopIdiom/
Dbasic.ll25 ; shouldn't perturb us.
169 ; shouldn't perturb us.
/external/python/cpython3/Doc/library/
Dcrypt.rst101 ``$digit$`` to indicate the method) which will be used to perturb the
/external/iproute2/bash-completion/
Dtc263 db|delay|evict_timeout|interval|latency|perturb|rehash|reset_timeout|\
343 _tc_once_attr 'limit perturb quantum divisor flows depth headdrop \
/external/llvm/test/Transforms/LoopIdiom/
Dbasic.ll32 ; shouldn't perturb us.
176 ; shouldn't perturb us.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopIdiom/
Dbasic.ll55 ; shouldn't perturb us.
249 ; shouldn't perturb us.
/external/python/cpython3/Modules/
D_pickle.c795 size_t perturb; in _PyMemoTable_Lookup() local
806 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) { in _PyMemoTable_Lookup()
807 i = (i << 2) + i + perturb + 1; in _PyMemoTable_Lookup()

12