Searched refs:rand (Results 1 - 14 of 14) sorted by relevance
/inkscape/cxxtest/sample/mock/ |
H A D | Dice.cpp | 11 return (T::rand() % 6) + 1;
|
H A D | MockStdlib.h | 18 int rand() function in class:MockStdlib
|
H A D | TestDice.h | 51 class Five : public T::Base_rand { int rand() { return 5; } }; function in class:TestDice::Five
|
/inkscape/cxxtest/sample/mock/T/ |
H A D | stdlib.h | 10 CXXTEST_MOCK_GLOBAL( int, rand, ( void ), () );
|
/inkscape/src/live_effects/parameter/ |
H A D | random.h | 60 gdouble rand();
|
H A D | random.cpp | 141 return rand() * value; 161 RandomParam::rand() function in class:Inkscape::LivePathEffect::RandomParam
|
/inkscape/src/svg/ |
H A D | svg-color-test.h | 56 unsigned const rgb24 = (std::rand() >> 4) & 0xffffff;
|
/inkscape/src/libdepixelize/priv/ |
H A D | optimization-kopf2011.h | 181 (T(std::rand()) / RAND_MAX) * radius * 2 - radius, 182 (T(std::rand()) / RAND_MAX) * radius * 2 - radius
|
/inkscape/src/ |
H A D | id-clash.cpp | 229 new_id += "0123456789"[std::rand() % 10]; 396 new_name2 += "0123456789"[std::rand() % 10];
|
/inkscape/src/ui/dialog/ |
H A D | clonetiler.h | 70 static double randomize01(double val, double rand);
|
H A D | clonetiler.cpp | 2213 Randomizes \a val by \a rand, with 0 < val < 1 and all values (including 0, 1) having the same 2216 double CloneTiler::randomize01(double val, double rand) argument 2218 double base = MIN (val - rand, 1 - 2*rand); 2222 val = base + g_random_double_range (0, MIN (2 * rand, 1 - base));
|
/inkscape/src/live_effects/ |
H A D | lpe-sketch.cpp | 330 double proba = repartition.firstValue()+ (rand()%100)/100.*(repartition.lastValue()-repartition.firstValue());
|
H A D | lpe-roughen.cpp | 39 { HM_RAND, N_("Rand"), "rand" }, 173 if (rand() % 100 < 49) {
|
/inkscape/src/ui/tools/ |
H A D | spray-tool.cpp | 453 Randomizes \a val by \a rand, with 0 < val < 1 and all values (including 0, 1) having the same 456 double randomize01(double val, double rand) argument 458 double base = MIN (val - rand, 1 - 2*rand); 462 val = base + g_random_double_range (0, MIN (2 * rand, 1 - base));
|
Completed in 4324 milliseconds