HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 101 - 125 of 1772) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_subpixel_bilinear_ssse3.asm 122 .loop:
127 jnz .loop
147 .loop:
152 jnz .loop
173 .loop:
179 jnz .loop
199 .loop:
204 jnz .loop
224 .loop:
229 jnz .loop
    [all...]
  /external/chromium_org/third_party/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 49 for (int loop = 0; loop < loops; ++loop) {
WritePixelsBench.cpp 61 for (int loop = 0; loop < loops; ++loop) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock_linux-inl.h 84 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) {
85 if (loop != 0) {
91 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock_linux-inl.h 73 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) {
74 if (loop != 0) {
79 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
  /external/libvpx/libvpx/vp9/common/x86/
vp9_subpixel_bilinear_sse2.asm 144 .loop:
149 jnz .loop
169 .loop:
174 jnz .loop
195 .loop:
202 jnz .loop
222 .loop:
227 jnz .loop
247 .loop:
252 jnz .loop
    [all...]
vp9_subpixel_bilinear_ssse3.asm 122 .loop:
127 jnz .loop
147 .loop:
152 jnz .loop
173 .loop:
179 jnz .loop
199 .loop:
204 jnz .loop
224 .loop:
229 jnz .loop
    [all...]
  /external/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 49 for (int loop = 0; loop < loops; ++loop) {
WritePixelsBench.cpp 61 for (int loop = 0; loop < loops; ++loop) {
  /external/vixl/examples/
sum-array.cc 39 Label loop, end; local
48 __ Bind(&loop);
54 __ Cbnz(w1, &loop);
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 54 sp<Looper> loop = new Looper(false); local
55 loop->addFd(myDisplayEvent.getFd(), 0, ALOOPER_EVENT_INPUT, receiver,
62 int32_t ret = loop->pollOnce(-1);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_subpixel_bilinear_sse2.asm 144 .loop:
149 jnz .loop
169 .loop:
174 jnz .loop
195 .loop:
202 jnz .loop
222 .loop:
227 jnz .loop
247 .loop:
252 jnz .loop
    [all...]
vp9_subpixel_bilinear_ssse3.asm 122 .loop:
127 jnz .loop
147 .loop:
152 jnz .loop
173 .loop:
179 jnz .loop
199 .loop:
204 jnz .loop
224 .loop:
229 jnz .loop
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dtfmtrtts.cpp 26 // Warning -- makes test run infinite loop!!!
163 // Special infinite loop test mode for finding hard to reproduce errors
165 logln("ENTERING INFINITE TEST LOOP FOR Locale: " + loc.getDisplayName(temp));
328 // We go through this loop until we achieve a match or until
329 // the maximum loop count is reached. We record the points at
332 int loop; local
335 for(loop = 0; loop < DEPTH; ++loop) {
336 if (loop > 0)
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmtrtts.cpp 26 // Warning -- makes test run infinite loop!!!
161 // Special infinite loop test mode for finding hard to reproduce errors
163 logln("ENTERING INFINITE TEST LOOP FOR Locale: " + loc.getDisplayName(temp));
326 // We go through this loop until we achieve a match or until
327 // the maximum loop count is reached. We record the points at
330 int loop; local
333 for(loop = 0; loop < DEPTH; ++loop) {
334 if (loop > 0)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys/
enterprise_platform_keys_apitest_nss.cc 77 void DidGetCertDatabase(base::RunLoop* loop, net::NSSCertDatabase* cert_db) {
98 loop->Quit();
138 base::RunLoop loop; variable
144 &loop));
145 loop.Run();
149 base::RunLoop loop; variable
151 base::Bind(&DidGetCertDatabase, &loop));
152 loop.Run();
159 base::RunLoop loop; variable
165 &loop));
    [all...]
  /external/chromium_org/base/message_loop/
message_pump_glib_unittest.cc 25 // This class injects dummy "events" into the GLib loop. When "handled" these
152 // Posts a task on the current message loop.
175 MessageLoop* loop() const { return loop_; } function in class:base::__anon6963::MessagePumpGLibTest
196 loop()->Run();
216 loop()->Run();
227 loop()->Run();
236 loop()->PostTask(FROM_HERE, Bind(&IncrementInt, &task_count));
240 loop()->PostTask(
244 loop()->Run();
252 loop()->PostDelayedTask
    [all...]
  /external/chromium_org/v8/test/cctest/
test-utils.cc 155 for (int loop = 0; loop < kLoops; loop++) {
185 for (int loop = 0; loop < kLoops; loop++) {
186 int seq_length = loop % kMaxSequenceSize;
200 for (int loop = 0; loop < kLoops; loop++)
    [all...]
  /external/chromium_org/content/renderer/media/android/
stream_texture_factory_impl.cc 27 scoped_refptr<base::MessageLoopProxy> loop) OVERRIDE;
67 scoped_refptr<base::MessageLoopProxy> loop) {
68 DCHECK(loop);
72 DCHECK(!loop_ || (loop == loop_));
73 loop_ = loop;
77 if (loop->BelongsToCurrentThread()) {
83 loop->PostTask(FROM_HERE,
stream_texture_factory_synchronous_impl.cc 39 scoped_refptr<base::MessageLoopProxy> loop) OVERRIDE;
85 scoped_refptr<base::MessageLoopProxy> loop) {
86 DCHECK(loop);
90 DCHECK(!loop_ || (loop == loop_));
91 loop_ = loop;
95 if (loop->BelongsToCurrentThread()) {
101 loop->PostTask(FROM_HERE,
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.cc 47 rep->loop[i].thr_ctx, rep->loop[i].mtx_ctx1, rep->loop[i].mtx_ctx0);
48 PrintStackTrace(thr, rep->loop[i].stk[1]);
49 if (rep->loop[i].stk[0]) {
51 rep->loop[i].mtx_ctx0);
52 PrintStackTrace(thr, rep->loop[i].stk[0]);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-flow.h 240 /* Use this to terminate the FOR_EACH_IMM_USE_STMT loop early. Failure to
380 extern void debug_loop (struct loop *, int);
565 /* In tree-ssa-loop-ch.c */
566 bool do_while_loop_p (struct loop *);
579 /* Description of number of iterations of a loop. All the expressions inside
580 the structure can be evaluated at the end of the loop's preheader
581 (and due to ssa form, also anywhere inside the body of the loop). */
590 the loop will exit in the first iteration (i.e.
594 a loop (provided that assumptions == true and
596 of executions of the latch of the loop. *
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
enterprise_install_attributes_unittest.cc 29 void CopyLockResult(base::RunLoop* loop,
33 loop->Quit();
83 base::RunLoop loop; local
89 base::Bind(&CopyLockResult, &loop, &result));
90 loop.Run();
192 base::RunLoop loop; local
193 install_attributes_->ReadImmutableAttributes(loop.QuitClosure());
194 loop.Run();
225 base::RunLoop loop; local
226 install_attributes_->ReadImmutableAttributes(loop.QuitClosure())
282 base::RunLoop loop; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
create_test_cases.py 124 def loop(statements): function
125 """Create a loop containing the given statements as its loop
129 return [['loop', [], [], [], [], statements]]
439 loop(simple_if('b', simple_if('c', break_(), continue_()),
445 # loop gets guarded so that it only executes if the return
452 loop(simple_if('b', simple_if('c', [], continue_()),
461 doc_string = """If a loop contains an unconditional break at the bottom of
464 loop(assign_x('a', const_float(1)) +
471 doc_string = """If a loop contains a conditional break at the bottom of it
    [all...]
  /external/mesa3d/src/glsl/tests/lower_jumps/
create_test_cases.py 124 def loop(statements): function
125 """Create a loop containing the given statements as its loop
129 return [['loop', [], [], [], [], statements]]
439 loop(simple_if('b', simple_if('c', break_(), continue_()),
445 # loop gets guarded so that it only executes if the return
452 loop(simple_if('b', simple_if('c', [], continue_()),
461 doc_string = """If a loop contains an unconditional break at the bottom of
464 loop(assign_x('a', const_float(1)) +
471 doc_string = """If a loop contains a conditional break at the bottom of it
    [all...]

Completed in 4681 milliseconds

1 2 3 45 6 7 8 91011>>