HomeSort by relevance Sort by last modified time
    Searched defs:repeat (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
OnlyUsedInChild.java 1 package test.subcomponent.repeat;
OnlyUsedInParent.java 1 package test.subcomponent.repeat;
SubcomponentWithoutRepeatedModule.java 16 package test.subcomponent.repeat;
RepeatedModule.java 16 package test.subcomponent.repeat;
ParentComponent.java 16 package test.subcomponent.repeat;
SubcomponentWithRepeatedModule.java 16 package test.subcomponent.repeat;
  /external/tensorflow/tensorflow/python/tpu/
training_loop.py 181 def repeat(n, body, inputs=None, infeed_queue=None, name=None): function
  /external/tensorflow/tensorflow/python/ops/ragged/
ragged_util.py 106 # This op is intended to exactly match the semantics of numpy.repeat, with
107 # one exception: numpy.repeat has special (and somewhat non-intuitive) behavior
111 # External (OSS) `tf.repeat` feature request:
113 def repeat(data, repeats, axis, name=None): function
121 axis: `int`. The axis along which to repeat values. Must be less than
131 >>> repeat(['a', 'b', 'c'], repeats=[3, 0, 2], axis=0)
133 >>> repeat([[1, 2], [3, 4]], repeats=[2, 3], axis=0)
135 >>> repeat([[1, 2], [3, 4]], repeats=[2, 3], axis=1)
142 with ops.name_scope(name, "Repeat", [data, repeats]):
264 # Divide `splits` into starts and limits, and repeat them `repeats` times
    [all...]
  /external/u-boot/fs/jffs2/
compr_rtime.c 66 int repeat; local
70 repeat = data_in[pos++];
74 if (repeat) {
75 if (backoffs + repeat >= outpos) {
76 while(repeat) {
78 repeat--;
81 for (i = 0; i < repeat; i++)
83 outpos+=repeat;
  /external/vixl/examples/aarch32/
pi.cc 101 uint32_t repeat = 10000000; local
102 double output_value = (*pi_function)(repeat);
103 printf("native: pi_approx(%u) = %3.10f\n", repeat, output_value);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
TextUtils.java 70 public static String repeat(char c, int size) { method in class:TextUtils
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
TextUtils.java 70 public static String repeat(char c, int size) { method in class:TextUtils
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
timeit.py 16 -r/--repeat N: how many times to repeat the timer (default 3)
20 -v/--verbose: print raw timing results; repeat for more digits precision
40 repeat the timing a few times and use the best time. The -r option is
114 timeit() method. The repeat() method is a convenience to call
158 t.timeit(...) # or t.repeat(...)
189 it = itertools.repeat(None, number)
199 def repeat(self, repeat=default_repeat, number=default_number): member in class:Timer
220 for i in range(repeat):
230 def repeat(stmt="pass", setup="pass", timer=default_timer, function
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-repeat.hpp 5 /*! \file rx-repeat.hpp
7 \brief Repeat this observable for the given number of times or infinitely.
16 \snippet repeat.cpp repeat count sample
17 \snippet output.txt repeat count sample
19 If the source observable calls on_error, repeat stops:
20 \snippet repeat.cpp repeat error sample
21 \snippet output.txt repeat error sample
28 #include "rx-retry-repeat-common.hpp
47 namespace repeat { namespace in namespace:rxcpp::operators::detail
    [all...]
  /external/clang/test/SemaCXX/
blocks.cpp 25 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
36 return repeat(1, ^(int v) { return v * base; }, n);
  /external/libxml2/
testThreads.c 103 unsigned int i, repeat; local
109 for (repeat = 0;repeat < 500;repeat++) {
144 unsigned int i, repeat; local
151 for (repeat = 0;repeat < 500;repeat++) {
152 printf("repeat: %d\n",repeat);
    [all...]
testThreadsWin32.c 88 unsigned int i, repeat; local
94 for (repeat = 0;repeat < TEST_REPEAT_COUNT;repeat++)
  /external/mesa3d/src/gallium/auxiliary/util/
u_split_prim.h 47 int repeat = 0; local
70 repeat = 1;
89 repeat = 2;
93 repeat = 1;
100 repeat = 2;
110 s->p_start += (max_verts - repeat);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestUtil.java 31 public static String repeat(char c, int count) { method in class:TestUtil
  /external/python/cpython2/Lib/
timeit.py 16 -r/--repeat N: how many times to repeat the timer (default 3)
20 -v/--verbose: print raw timing results; repeat for more digits precision
40 repeat the timing a few times and use the best time. The -r option is
114 timeit() method. The repeat() method is a convenience to call
165 t.timeit(...) # or t.repeat(...)
196 it = itertools.repeat(None, number)
208 def repeat(self, repeat=default_repeat, number=default_number): member in class:Timer
229 for i in range(repeat)
239 def repeat(stmt="pass", setup="pass", timer=default_timer, function
    [all...]
  /external/python/cpython3/Lib/
timeit.py 16 -r/--repeat N: how many times to repeat the timer (default 5)
20 -v/--verbose: print raw timing results; repeat for more digits precision
46 repeat(string, string) -> list
56 __all__ = ["Timer", "timeit", "repeat", "default_timer"]
93 timeit() method. The repeat() method is a convenience to call
142 t.timeit(...) # or t.repeat(...)
172 it = itertools.repeat(None, number)
182 def repeat(self, repeat=default_repeat, number=default_number) member in class:Timer
234 def repeat(stmt="pass", setup="pass", timer=default_timer, function
    [all...]
  /external/u-boot/common/
iomux.c 29 int i, j, k, io_flag, cs_idx, repeat; local
107 repeat = 0;
110 repeat++;
114 if (repeat)
  /external/webrtc/webrtc/base/
sigslotrepeater.h 18 // to the originating signal using the 'repeat' method. When the repeated
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater0
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater1
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater2
88 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater3
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/subcomponent/repeat/
RepeatedModuleTest.java 16 package test.subcomponent.repeat;
61 "test.subcomponent.repeat.RepeatedModule cannot be set "
78 "test.subcomponent.repeat.RepeatedModule cannot be set "
  /external/libyuv/files/unit_test/
unit_test.cc 30 DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test.");
54 const char* repeat = getenv("LIBYUV_REPEAT"); local
55 if (repeat) {
56 benchmark_iterations_ = atoi(repeat); // NOLINT
113 const char* repeat = getenv("LIBYUV_REPEAT"); local
114 if (repeat) {
115 benchmark_iterations_ = atoi(repeat); // NOLINT
172 const char* repeat = getenv("LIBYUV_REPEAT"); local
173 if (repeat) {
174 benchmark_iterations_ = atoi(repeat); // NOLIN
231 const char* repeat = getenv("LIBYUV_REPEAT"); local
290 const char* repeat = getenv("LIBYUV_REPEAT"); local
349 const char* repeat = getenv("LIBYUV_REPEAT"); local
    [all...]

Completed in 1401 milliseconds

1 2 3 4 5 6 7