HomeSort by relevance Sort by last modified time
    Searched refs:perturb (Results 1 - 15 of 15) 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/iproute2/examples/
cbqinit.eth1 40 # Attach "sfq" qdisc to this class, quantum is MTU, perturb
43 $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
cbq.init-v0.7.3 50 # - default value for PERTURB
332 # PERTURB=<seconds> optional, default "10"
501 CBQ_WORDS="$CBQ_WORDS|LIMIT|PEAK|MTU|QUANTUM|PERTURB"
615 PEAK=""; PERTURB=10; QUANTUM=""
636 PERTURB=${PERTURB:+perturb $PERTURB}
781 $PERTURB $QUANTUM
    [all...]
  /external/libnl/lib/route/qdisc/
sfq.c 74 nl_dump(p, " quantum %u perturb %us", sfq->qs_quantum,
181 * @arg perturb New perturbation interval in seconds.
185 void rtnl_sfq_set_perturb(struct rtnl_qdisc *qdisc, int perturb)
192 sfq->qs_perturb = perturb;
  /prebuilts/go/darwin-x86/test/
opt_branchlikely.go 3 // rescheduling check insertion is turend off because the inserted conditional branches perturb the errorcheck
  /prebuilts/go/linux-x86/test/
opt_branchlikely.go 3 // rescheduling check insertion is turend off because the inserted conditional branches perturb the errorcheck
  /external/libnl/tests/
test-complex-HTB-with-hash-filters.c 448 int quantum, int limit, int perturb
476 if(perturb) {
477 rtnl_sfq_set_perturb(qdisc, perturb); // default never perturb the hash
  /external/mksh/src/
main.c 1693 size_t i, j, osize, mask, perturb; local
1754 size_t j, perturb, mask; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
dictobject.c 89 into play. This is done by initializing a (unsigned) vrbl "perturb" to the
92 j = (5*j) + 1 + perturb;
93 perturb >>= PERTURB_SHIFT;
99 the initial index. Note that because perturb is unsigned, if the recurrence
100 is executed often enough perturb eventually becomes and remains 0. At that
120 (e.g., computing 5*j can go on at the same time as computing 1+perturb in the
121 above, and then shifting perturb can be done while the table index is being
323 register size_t perturb; local
364 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
411 register size_t perturb; local
572 register size_t perturb; local
    [all...]
setobject.c 79 register size_t perturb; local
118 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
119 i = (i << 2) + i + perturb + 1;
161 register size_t perturb; local
189 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
190 i = (i << 2) + i + perturb + 1;
251 register size_t perturb; local
258 for (perturb = hash; entry->key != NULL; perturb >>= PERTURB_SHIFT) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
dictobject.c 89 into play. This is done by initializing a (unsigned) vrbl "perturb" to the
92 j = (5*j) + 1 + perturb;
93 perturb >>= PERTURB_SHIFT;
99 the initial index. Note that because perturb is unsigned, if the recurrence
100 is executed often enough perturb eventually becomes and remains 0. At that
120 (e.g., computing 5*j can go on at the same time as computing 1+perturb in the
121 above, and then shifting perturb can be done while the table index is being
323 register size_t perturb; local
364 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
411 register size_t perturb; local
561 register size_t perturb; local
    [all...]
setobject.c 79 register size_t perturb; local
118 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
119 i = (i << 2) + i + perturb + 1;
161 register size_t perturb; local
189 for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
190 i = (i << 2) + i + perturb + 1;
252 register size_t perturb; local
259 for (perturb = hash; entry->key != NULL; perturb >>= PERTURB_SHIFT) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
loopreschedchecks.go 272 // do NOT remove+add, because that will perturb all the other phi functions
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
loopreschedchecks.go 272 // do NOT remove+add, because that will perturb all the other phi functions

Completed in 3118 milliseconds