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

<<21222324252627282930>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_subpixel_8t_ssse3.asm 52 .loop:
98 jnz .loop
139 .loop:
185 jnz .loop
227 .loop:
309 jnz .loop
582 .loop:
609 jnz .loop
687 .loop:
712 jnz .loop
    [all...]
  /external/libhevc/common/arm/
ihevc_inter_pred_chroma_vert.s 126 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
161 bgt inner_loop_ht_2 @inner loop again
168 bgt inner_loop_ht_2 @loop again
202 bgt inner_loop_wd_2 @inner loop again
204 @inner loop ends
210 bgt inner_loop_wd_2 @loop again
ihevc_inter_pred_chroma_vert_w16out.s 127 bgt outer_loop_wd_2 @jumps to loop handling wd ==2
161 bgt inner_loop_ht_2 @inner loop again
168 bgt inner_loop_ht_2 @loop again
201 bgt inner_loop_wd_2 @inner loop again
203 @inner loop ends
209 bgt inner_loop_wd_2 @loop again
ihevc_inter_pred_chroma_horz.s 273 subs r14,r14,#32 @decrement the ht loop
299 subs r10,r10,#16 @decrement the wd loop
425 subs r7,r7,#8 @decrement the wd loop
430 subs r14,r14,#2 @decrement the ht loop
495 add r9,r9,#8 @(core loop)
497 subs r7,r7,#8 @(prologue)decrement the wd loop
557 add r9,r9,#8 @(core loop)
571 add r1,r1,#8 @(core loop)
573 subs r7,r7,#8 @(core loop)
578 mov r4, r1 @(core loop)
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
vp8_variance8x8_armv6.asm 30 mov r12, #8 ; set loop counter to 8 (=block height)
34 loop label
89 bne loop
  /external/libvpx/libvpx/vp9/common/x86/
vp9_subpixel_8t_ssse3.asm 52 .loop:
98 jnz .loop
139 .loop:
185 jnz .loop
227 .loop:
309 jnz .loop
582 .loop:
609 jnz .loop
687 .loop:
712 jnz .loop
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
vp8_variance8x8_armv6.asm 30 mov r12, #8 ; set loop counter to 8 (=block height)
34 loop label
89 bne loop
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_subpixel_8t_ssse3.asm 52 .loop:
98 jnz .loop
139 .loop:
185 jnz .loop
227 .loop:
309 jnz .loop
582 .loop:
609 jnz .loop
687 .loop:
712 jnz .loop
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer_unittest.cc 127 // Class that will notify message loop when file is written.
130 explicit BookmarksObserver(base::RunLoop* loop) : loop_(loop) {
131 DCHECK(loop);
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_permission_controller_unittest.cc 67 base::RunLoop loop; variable
68 gallery_prefs_->EnsureInitialized(loop.QuitClosure());
69 loop.Run();
  /external/chromium_org/chrome/browser/ui/webui/net_internals/
net_internals_ui_browsertest.cc 323 base::RunLoop loop; local
325 loop.QuitClosure());
326 loop.Run();
  /external/chromium_org/gpu/tools/compositor_model_bench/
compositor_model_bench.cc 113 base::MessageLoop loop; local
122 loop.PostTask(FROM_HERE,
125 loop.Run();
  /external/chromium_org/net/test/spawned_test_server/
spawner_communicator.cc 168 base::MessageLoop* loop = io_thread_.message_loop(); local
169 DCHECK(loop);
170 DCHECK_EQ(base::MessageLoop::current(), loop); local
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBufferSourceNode.cpp 143 if (!loop()) {
218 // If the .loop attribute is true, then values of m_loopStart == 0 && m_loopEnd == 0 implies
219 // that we should use the entire buffer as the loop, otherwise use the loop values in m_loopStart and m_loopEnd.
223 if (loop() && (m_loopStart || m_loopEnd) && m_loopStart >= 0 && m_loopEnd > 0 && m_loopStart < m_loopEnd) {
235 // Sanity check that our playback rate isn't larger than the loop size.
242 // Render loop - reading from the source buffer to the destination using linear interpolation.
284 if (loop()) {
292 // FIXME: as an optimization, try to get rid of this inner-loop check and put assertions and guards before the loop
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp 48 SkDEBUGCODE(bool loop = false);
52 SkASSERT(angle != firstAngle || !loop);
53 SkDEBUGCODE(loop |= angle == firstAngle);
  /external/chromium_org/v8/src/
hydrogen-bch.cc 13 * It is used to check if, inside one loop, all execution paths contain
15 * The reason is that if there is a path that stays in the loop without
16 * executing a check then the check cannot be hoisted out of the loop (it
18 * We also check is there are paths that exit the loop early, and if yes we
43 * Initializes the table element for a given loop (identified by its
48 HLoopInformation* loop = data->phi()->block()->current_loop(); local
49 is_start_ = (block() == loop->loop_header());
51 is_in_loop_ = loop->IsNestedInThisLoop(block()->current_loop());
93 * Initializes the table for a given loop (identified by its induction
112 * induction variable out of the loop
    [all...]
  /external/skia/src/pathops/
SkPathOpsOp.cpp 48 SkDEBUGCODE(bool loop = false);
52 SkASSERT(angle != firstAngle || !loop);
53 SkDEBUGCODE(loop |= angle == firstAngle);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 132 // this rule used to generate an infinite loop in DFA.predict
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 131 void loop(void);
  /external/chromium_org/chrome/browser/task_manager/
task_manager_unittest.cc 115 base::MessageLoop loop; local
  /external/chromium_org/extensions/common/
one_shot_event_unittest.cc 61 base::MessageLoop loop; local
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
CollPerf.pl 77 my @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -qsort`;
78 my @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -qsort`;
89 @icu = `$p -locale @locale[$n] -loop 1000 -file $filePath@data[$n] -keygen`;
90 @nix = `$p -locale @locale[$n] -unix -loop 1000 -file $filePath@data[$n] -keygen`;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
opt-gvmat64.asm 172 ;;; entering the main loop.
275 ;;; Jump into the main loop.
332 ;;; Here is the inner loop of the function. The function will spend the
333 ;;; majority of its time in this loop, and majority of that time will
336 ;;; Within this loop:
384 ;;; starting the compare loop. So what this code does is skip over 0-3
388 ;;; It should be confessed that this loop usually does not represent
440 ;;; have so far, then forget it and return to the lookup loop.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
genopcode.asm 159 loop label label
171 loop short label label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfmanysym.asm 333 .loop:
338 .loop:

Completed in 2078 milliseconds

<<21222324252627282930>>