HomeSort by relevance Sort by last modified time
    Searched full:repetition (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /cts/suite/cts/deviceTests/simplecpu/src/com/android/cts/simplecpu/
CpuNative.java 24 * run qsort for given number of repetition
28 * @return time taken for computation, added for all repetition in ms
30 public static native double runSort(int numberElements, int repetition);
36 * @param repetition
37 * @return time taken for computation, added for all repetition in ms
39 public static native double runMatrixMultiplication(int n, int repetition);
  /cts/suite/cts/deviceTests/dram/src/com/android/cts/dram/
MemoryNative.java 24 * run memcpy for given number of repetition from a source to a destination buffers
30 public static native double runMemcpy(int bufferSize, int repetition);
33 * run memset for given number of repetition from a source to a destination buffers
36 * @param repetition
40 public static native double runMemset(int bufferSize, int repetition, int c);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/detail/
in_place_factory_prefix.hpp 22 #include <boost/preprocessor/repetition/repeat.hpp>
23 #include <boost/preprocessor/repetition/enum.hpp>
24 #include <boost/preprocessor/repetition/enum_params.hpp>
25 #include <boost/preprocessor/repetition/enum_binary_params.hpp>
26 #include <boost/preprocessor/repetition/enum_trailing_params.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/
repeat.hpp 15 # include <boost/preprocessor/repetition/repeat.hpp>
  /cts/suite/cts/deviceTests/dram/jni/
MemoryNativeJni.cpp 30 jclass clazz, jint bufferSize, jint repetition)
43 for (int i = 0; i < repetition; i++) {
54 jclass clazz, jint bufferSize, jint repetition, jint c)
64 for (int i = 0; i < repetition; i++) {
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive1_test.cc 14 // Test simple repetition operators
15 TEST(Repetition, Simple) {
26 // Test capturing parens -- (a) -- inside repetition operators
27 TEST(Repetition, Capturing) {
  /external/regex-re2/re2/testing/
exhaustive1_test.cc 14 // Test simple repetition operators
15 TEST(Repetition, Simple) {
26 // Test capturing parens -- (a) -- inside repetition operators
27 TEST(Repetition, Capturing) {
  /external/junit/src/junit/extensions/
RepeatedTest.java 16 throw new IllegalArgumentException("Repetition count must be >= 0");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/repetition/
enum_params.hpp 19 # include <boost/preprocessor/repetition/repeat.hpp>
enum_trailing_params.hpp 16 # include <boost/preprocessor/repetition/repeat.hpp>
enum_binary_params.hpp 18 # include <boost/preprocessor/repetition/repeat.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
base_from_member.hpp 14 #include <boost/preprocessor/repetition/enum_binary_params.hpp>
15 #include <boost/preprocessor/repetition/enum_params.hpp>
16 #include <boost/preprocessor/repetition/repeat_from_to.hpp>
  /external/eigen/bench/
BenchUtil.h 11 #include <boost/preprocessor/repetition/enum_params.hpp>
12 #include <boost/preprocessor/repetition.hpp>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_zatm.h 30 int next_cnt,next_thres; /* repetition counter and threshold */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atm_zatm.h 30 int next_cnt,next_thres; /* repetition counter and threshold */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atm_zatm.h 30 int next_cnt,next_thres; /* repetition counter and threshold */
  /external/llvm/lib/Support/
regerror.c 68 { REG_BADBR, "REG_BADBR", "invalid repetition count(s)" },
71 { REG_BADRPT, "REG_BADRPT", "repetition-operator operand invalid" },
  /ndk/sources/host-tools/ndk-stack/regex/
regerror.c 63 { REG_BADBR, "REG_BADBR", "invalid repetition count(s)" },
66 { REG_BADRPT, "REG_BADRPT", "repetition-operator operand invalid" },
  /cts/suite/cts/deviceTests/simplecpu/jni/
CpuNativeJni.cpp 186 jclass clazz, jint numberElements, jint repetition)
194 for (int i = 0; i < repetition; i++) {
243 JNIEnv* env, jclass clazz, jint n, jint repetition)
257 for (int i = 0; i < repetition; i++) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/list/
for_each_i.hpp 20 # include <boost/preprocessor/repetition/for.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/seq/
for_each.hpp 17 # include <boost/preprocessor/repetition/for.hpp>
for_each_i.hpp 18 # include <boost/preprocessor/repetition/for.hpp>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hashlib.py 41 spammish repetition':
46 >>> m.update(" the spammish repetition")
52 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hashlib.py 41 spammish repetition':
46 >>> m.update(" the spammish repetition")
52 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImage.h 94 Unknown, // We haven't checked the source's repetition count.
95 Uncertain, // We have a repetition count, but it might be wrong (some GIFs have a count after the image data, and will report "loop once" until all data has been decoded).
96 Certain // The repetition count is known to be correct.

Completed in 1200 milliseconds

1 2 3 4 5 6 7 8 9