HomeSort by relevance Sort by last modified time
    Searched refs:iterations (Results 26 - 50 of 286) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 38 * The number of iterations should be higher for production
42 private static final int ITERATIONS = 1024;
74 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS);
80 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS);
86 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS);
93 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS, KEY_LENGTH);
100 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS, KEY_LENGTH);
106 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS, KEY_LENGTH);
117 test_PBKDF2_UTF8(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected);
118 test_PBKDF2_8BIT(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected)
132 int iterations = 5; local
154 int iterations = 500; local
175 int iterations = 4096; local
    [all...]
  /external/ceres-solver/internal/ceres/
summary_utils.cc 43 for (int i = 0; i < summary->iterations.size(); ++i) {
44 const IterationSummary& iteration_summary = summary->iterations[i];
  /external/chromium_org/cc/blink/
web_animation_impl.h 34 virtual double iterations() const;
35 virtual void setIterations(double iterations);
web_animation_unittest.cc 24 EXPECT_EQ(1, animation->iterations());
39 EXPECT_EQ(2, animation->iterations());
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
contperf.sh 21 $PERF Contains --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
span16perf.sh 21 $PERF SpanUTF16 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
span8perf.sh 21 $PERF SpanUTF8 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_unroll.cpp 90 int iterations; local
100 iterations = ls->max_iterations;
102 /* Don't try to unroll loops where the number of iterations is not known
105 if (iterations < 0)
108 /* Don't try to unroll loops that have zillions of iterations either.
110 if (iterations > (int) max_iterations)
117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5)
132 iterations = 1;
195 for (int i = 0; i < iterations; i++) {
226 for (int i = 0; i < iterations; i++)
    [all...]
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
contperf.sh 21 $PERF Contains --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
span16perf.sh 21 $PERF SpanUTF16 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
span8perf.sh 21 $PERF SpanUTF8 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
  /external/mesa3d/src/glsl/
loop_unroll.cpp 90 int iterations; local
100 iterations = ls->max_iterations;
102 /* Don't try to unroll loops where the number of iterations is not known
105 if (iterations < 0)
108 /* Don't try to unroll loops that have zillions of iterations either.
110 if (iterations > (int) max_iterations)
117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5)
132 iterations = 1;
195 for (int i = 0; i < iterations; i++) {
226 for (int i = 0; i < iterations; i++)
    [all...]
  /external/chromium_org/third_party/angle/tests/perf_tests/
BufferSubData.h 17 unsigned int iterations; member in struct:BufferSubDataParams
TexSubImage.h 15 unsigned int iterations; member in struct:TexSubImageParams
  /external/chromium_org/tools/page_cycler/common/
start.js 35 var iterations = document.getElementById('iterations').value;
41 url += 'index.html?n=' + iterations + '&i=0&p=0&ts=' + ts + '&td=0';
52 var label = document.createTextNode('Iterations: ');
56 input.setAttribute('id', 'iterations');
58 var iterations = getopt('iterations');
59 input.setAttribute('value', iterations ? iterations : '5');
  /external/chromium_org/media/filters/
pipeline_integration_perftest.cc 16 int iterations,
20 for (int i = 0; i < iterations; ++i) {
45 iterations / time_seconds,
  /external/chromium_org/mojo/public/cpp/test_support/lib/
test_utils.cc 76 size_t iterations = 0; local
80 iterations += kGranularity;
86 1000000.0 * iterations / (end_time - start_time),
87 "iterations/second");
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_callUserDestroyRoutines.c 84 int iterations = 0; local
96 iterations++;
171 if (value != NULL && iterations <= PTHREAD_DESTRUCTOR_ITERATIONS)
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
BitwiseStreamsTest.java 96 int iterations = 10000; local
97 int[] sizeArr = new int[iterations];
98 int[] valueArr = new int[iterations];
99 BitwiseOutputStream outStream = new BitwiseOutputStream(iterations * 4);
100 for (int i = 0; i < iterations; i++) {
109 for (int i = 0; i < iterations; i++) {
140 int iterations = 10000; local
141 int[] sizeArr = new int[iterations];
142 int[] valueArr = new int[iterations];
144 for (int i = 0; i < iterations; i++)
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchView.java 78 public void setLoops(int iterations) {
79 if (iterations > 0) {
80 mLoops = iterations;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
time_hashlib.py 12 iterations = 106201/scale * 20
17 for f in xrange(iterations):
21 print ('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
time_hashlib.py 12 iterations = 106201/scale * 20
17 for f in xrange(iterations):
21 print ('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNodeTiming.h 24 double iterations();
  /external/chromium_org/third_party/WebKit/public/platform/
WebCompositorAnimation.h 46 virtual double iterations() const = 0;
  /external/chromium_org/third_party/boringssl/src/crypto/evp/
pbkdf.c 62 const uint8_t *salt, size_t salt_len, unsigned iterations,
110 for (j = 1; j < iterations; j++) {
136 unsigned iterations, size_t key_len,
138 return PKCS5_PBKDF2_HMAC(password, password_len, salt, salt_len, iterations,

Completed in 381 milliseconds

12 3 4 5 6 7 8 91011>>