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

1 2

  /cts/tests/simplecpu/src/android/simplecpu/cts/
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);
  /external/perfetto/src/tracing/core/
id_allocator_unittest.cc 29 for (int repetition = 0; repetition < 3; repetition++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
hashlib.py 41 spammish repetition':
46 >>> m.update(" the spammish repetition")
52 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hashlib.py 41 spammish repetition':
46 >>> m.update(" the spammish repetition")
52 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /prebuilts/gdb/linux-x86/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/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/eigen/bench/
BenchUtil.h 11 #include <boost/preprocessor/repetition/enum_params.hpp>
12 #include <boost/preprocessor/repetition.hpp>
benchmark-blocking-sizes.cpp 571 for (int repetition = 0; repetition < measurement_repetitions; repetition++) {
602 for (int repetition = 0; repetition < measurement_repetitions; repetition++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
hashlib.py 42 spammish repetition':
47 >>> m.update(" the spammish repetition")
53 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /external/python/cpython2/Lib/
hashlib.py 42 spammish repetition':
47 >>> m.update(" the spammish repetition")
53 >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  /cts/tests/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++) {
  /external/tensorflow/tensorflow/contrib/graph_editor/
subgraph.py 52 def _check_within_range(mapping, n, repetition):
60 repetition: if True repetition are allowed (the function is surjective)
61 otherwise repetition are not allowed (the function is injective).
63 ValueError: if the mapping is out of range ot if repetition is False and
64 the mapping has some repetition.
69 if not repetition and len(set(mapping)) != len(mapping):
70 raise ValueError("Found repetition in mapping: {}".format(mapping))
300 new_input_indices, len(self._input_ts), repetition=False)
307 new_output_indices, len(self._output_ts), repetition=True
    [all...]
  /external/python/cpython3/Lib/
hashlib.py 40 spammish repetition':
45 >>> m.update(b" the spammish repetition")
51 >>> hashlib.sha224(b"Nobody inspects the spammish repetition").hexdigest()
  /prebuilts/go/darwin-x86/src/cmd/fix/
main_test.go 24 // Fill in fn to avoid repetition in definitions.
  /prebuilts/go/linux-x86/src/cmd/fix/
main_test.go 24 // Fill in fn to avoid repetition in definitions.
  /prebuilts/go/darwin-x86/src/cmd/internal/gcprog/
gcprog.go 107 // encoding them as a repetition? Certainly if count==1,
110 // 4 or fewer bytes, since using a repetition will require
  /prebuilts/go/linux-x86/src/cmd/internal/gcprog/
gcprog.go 107 // encoding them as a repetition? Certainly if count==1,
110 // 4 or fewer bytes, since using a repetition will require
  /prebuilts/go/darwin-x86/src/regexp/
all_test.go 41 {`*`, "missing argument to repetition operator: `*`"},
42 {`+`, "missing argument to repetition operator: `+`"},
43 {`?`, "missing argument to repetition operator: `?`"},
49 {`a**`, "invalid nested repetition operator: `**`"},
50 {`a*+`, "invalid nested repetition operator: `*+`"},
  /prebuilts/go/linux-x86/src/regexp/
all_test.go 41 {`*`, "missing argument to repetition operator: `*`"},
42 {`+`, "missing argument to repetition operator: `+`"},
43 {`?`, "missing argument to repetition operator: `?`"},
49 {`a**`, "invalid nested repetition operator: `**`"},
50 {`a*+`, "invalid nested repetition operator: `*+`"},
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 50 reject forms that create a minimum or maximum repetition count above 1000.
parse.go 38 ErrInvalidRepeatOp ErrorCode = "invalid nested repetition operator"
43 ErrMissingRepeatArgument ErrorCode = "missing argument to repetition operator"
61 NonGreedy // make repetition operators default to non-greedy
65 Simple // regexp contains no counted repetition
222 // before is the regexp suffix starting at the repetition operator.
223 // after is the regexp suffix following after the repetition operator.
233 // In Perl it is not allowed to stack repetition operators:
263 // repeatIsValid reports whether the repetition re is valid.
264 // Valid means that the combination of the top-level repetition
267 // This function rewalks the regexp tree and is called for every repetition,
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
doc.go 50 reject forms that create a minimum or maximum repetition count above 1000.
parse.go 38 ErrInvalidRepeatOp ErrorCode = "invalid nested repetition operator"
43 ErrMissingRepeatArgument ErrorCode = "missing argument to repetition operator"
61 NonGreedy // make repetition operators default to non-greedy
65 Simple // regexp contains no counted repetition
222 // before is the regexp suffix starting at the repetition operator.
223 // after is the regexp suffix following after the repetition operator.
233 // In Perl it is not allowed to stack repetition operators:
263 // repeatIsValid reports whether the repetition re is valid.
264 // Valid means that the combination of the top-level repetition
267 // This function rewalks the regexp tree and is called for every repetition,
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOptimizationTests.cpp 321 const string repetition = optimized ? repeatIndexedTemplate("\t" + expressionTemplate(m_caseType) + ";\n", m_numRepetitions) local
324 return defaultProgramData(m_caseShaderType, "\t" + getShaderPrecision(m_caseShaderType) + " vec4 valueOrig = value;\n" + repetition);
    [all...]

Completed in 583 milliseconds

1 2