HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 351 - 375 of 1308) sorted by null

<<11121314151617181920>>

  /system/nativepower/example/
power_example.cc 46 base::MessageLoopForIO loop; local
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
allinsn16.s 2 # missing 'for' loop and nested limits
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
msa-relax.s 14 .space 0x20000 # to make a 128kb loop body
relax-swap2.s 47 .space 0x20000 # to make a 128kb loop body
relax.s 35 .space 0x20000 # to make a 128kb loop body
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
macro.s 22 .loop 8
  /external/webrtc/webrtc/voice_engine/
voe_file_impl.cc 52 bool loop,
59 "loop=%d, format=%d, volumeScaling=%5.3f, startPointMs=%d,"
61 channel, fileNameUTF8, loop, format, volumeScaling, startPointMs,
76 return channelPtr->StartPlayingFileLocally(fileNameUTF8, loop, format,
143 bool loop,
149 "loop=%d, mixWithMicrophone=%d, format=%d, "
151 channel, fileNameUTF8, loop, mixWithMicrophone, format,
164 fileNameUTF8, loop, format, startPointMs, volumeScaling, stopPointMs,
187 fileNameUTF8, loop, format, startPointMs, volumeScaling, stopPointMs,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GraggBulirschStoerIntegrator.java 674 for (boolean loop = true; loop; ) {
687 loop = false;
711 loop = false;
733 loop = false;
744 loop = false;
760 loop = false;
770 loop = false;
791 loop = false;
796 loop = false
    [all...]
  /external/dbus/test/internals/
refs.c 59 DBusLoop *loop; member in struct:__anon8791
194 test_connection_setup (f->loop, f->server_connection);
204 f->loop = _dbus_loop_new ();
205 g_assert (f->loop != NULL);
237 if (!test_server_setup (f->loop, f->server))
247 if (!test_connection_setup (f->loop, f->connection))
251 _dbus_loop_iterate (f->loop, TRUE);
253 test_connection_shutdown (f->loop, f->connection);
254 test_server_shutdown (f->loop, f->server);
581 _dbus_loop_unref (f->loop);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 132 struct loop;
187 /* Innermost loop containing the block. */
188 struct loop *loop_father;
685 elements will be missed. Instead, use a for-loop like that shown
737 extern bool optimize_loop_for_size_p (struct loop *);
738 extern bool optimize_loop_for_speed_p (struct loop *);
739 extern bool optimize_loop_nest_for_size_p (struct loop *);
740 extern bool optimize_loop_nest_for_speed_p (struct loop *);
878 void set_loop_copy (struct loop *, struct loop *);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java 149 int loop = 0; local
151 int streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
165 streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
167 loop = -1;// loop forever
168 mSoundPool.setLoop(streamID, loop);
307 -1 /* loop (infinite) */, 1.0f /* rate */);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_armv6.S 11 @ Contains the core loop routine for the pitch filter function in iSAC,
58 LOOP:
59 @ Usage of registers in the loop:
60 @ r0: loop counter
71 @ The pitch filter loop here is unrolled with 9 multipications.
96 @ The memmove() and the low pass filter loop are unrolled and mixed.
135 bgt LOOP
  /frameworks/wilhelm/tests/examples/
slesTestSendToPresetReverb.cpp 73 SLmillibel sendLevel, bool alwaysOn, bool useFd, bool loop)
272 if (loop) {
343 bool loop = false; local
353 } else if (!strcmp(arg, "--loop")) {
354 loop = true;
361 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel "
380 (SLmillibel)atoi(argv[i+3]), alwaysOn, useFd, loop);
  /external/v8/src/compiler/
scheduler.cc 317 // Put Terminate in the loop to which it refers.
318 Node* loop = NodeProperties::GetControlInput(node); local
319 BasicBlock* block = BuildBlockForNode(loop);
598 // a RPO of the graph where loop bodies are contiguous. Properties:
600 // unless B is a loop header and A is in the loop headed at B
603 // => If block A is a loop header, A appears before all blocks in the loop
606 // do not belong to the loop.)
658 LoopInfo const& loop = loops_[GetLoopNumber(block)] local
787 LoopInfo* loop = local
1022 LoopInfo* loop = &loops_[i]; local
    [all...]
  /art/compiler/optimizing/
induction_var_range.cc 131 HLoopInformation* loop = context->GetBlock()->GetLoopInformation(); // closest enveloping loop local
132 if (loop == nullptr) {
133 return false; // no loop
135 HInductionVarAnalysis::InductionInfo* info = induction_analysis_->LookupInfo(loop, instruction);
151 // Set up loop information.
152 HBasicBlock* header = loop->GetHeader();
155 induction_analysis_->LookupInfo(loop, header->GetLastInstruction());
374 // Special case for finding minimum: minimum of trip-count in loop-body is 1.
587 HLoopInformation* loop local
614 HLoopInformation* loop = context->GetBlock()->GetLoopInformation(); \/\/ closest enveloping loop local
    [all...]
  /external/v8/test/unittests/compiler/
dead-code-elimination-unittest.cc 237 // Loop
248 graph()->NewNode(common()->Loop(input_count), input_count, inputs));
262 graph()->NewNode(common()->Loop(input_count), input_count, inputs));
277 Node* const loop = graph()->NewNode(common()->Loop(2), c0, c1); local
279 common()->Phi(MachineRepresentation::kTagged, 2), v0, v1, loop);
280 Node* const ephi = graph()->NewNode(common()->EffectPhi(2), e0, e1, loop);
281 Node* const terminate = graph()->NewNode(common()->Terminate(), ephi, loop);
286 Reduction const r = Reduce(&editor, loop);
306 Node* const loop = graph()->NewNode(common()->Loop(4), c0, c1, c2, c3) local
    [all...]
  /external/autotest/client/bin/
partition.py 157 if 'loop' in partname:
401 self.loop = loop_size
407 if self.loop:
574 if self.loop:
676 if self.loop:
677 args += ' -o loop'
854 self.loop = self._attach_img_loop(self.img)
855 self._create_single_partition(self.loop)
856 self.device = self._create_entries_partition(self.loop)
859 logging.debug('Loopback device: %s', self.loop)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
vpx_convolve8_avg_neon_asm.asm 69 rsb r9, r6, r1, lsl #2 ; reset src for outer loop
71 rsb r12, r6, r3, lsl #2 ; reset dst for outer loop
73 mov r10, r6 ; w loop counter
92 ; save a few instructions in the inner loop
169 ; outer loop
201 mov r12, lr ; h loop counter
283 ; outer loop
vpx_convolve8_neon_asm.asm 69 rsb r9, r6, r1, lsl #2 ; reset src for outer loop
71 rsb r12, r6, r3, lsl #2 ; reset dst for outer loop
73 mov r10, r6 ; w loop counter
92 ; save a few instructions in the inner loop
158 ; outer loop
190 mov r12, lr ; h loop counter
261 ; outer loop
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
vp9_convolve8_avg_neon.asm 75 rsb r9, r6, r1, lsl #2 ; reset src for outer loop
77 rsb r12, r6, r3, lsl #2 ; reset dst for outer loop
79 mov r10, r6 ; w loop counter
98 ; save a few instructions in the inner loop
175 ; outer loop
211 mov r12, lr ; h loop counter
293 ; outer loop
vp9_convolve8_neon.asm 75 rsb r9, r6, r1, lsl #2 ; reset src for outer loop
77 rsb r12, r6, r3, lsl #2 ; reset dst for outer loop
79 mov r10, r6 ; w loop counter
98 ; save a few instructions in the inner loop
164 ; outer loop
200 mov r12, lr ; h loop counter
271 ; outer loop
  /external/v8/src/arm/
codegen-arm.cc 41 Label loop, less_256, less_128, less_64, less_32, _16_or_less, _8_or_less;
72 __ bind(&loop);
82 __ b(ge, &loop);
144 Label loop;
150 __ bind(&loop);
154 __ b(&loop, ne);
197 Label loop;
203 __ bind(&loop);
208 __ b(&loop, ne);
223 Label loop;
358 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
501 Label entry, loop, convert_hole, gc_required, only_change_map; local
    [all...]
  /external/esd/include/
audiofile.h 116 AF_INST_LOOP_CONTINUOUS = 1, /* loop continuously through decay */
117 AF_INST_LOOP_SUSTAIN = 3 /* loop during sustain, then continue */
129 AF_INST_SUSLOOPID = 308, /* loop id for AIFF sustain loop */
130 AF_INST_RELLOOPID = 309, /* loop id for AIFF release loop */
264 AF_BAD_NO_LOOPDATA = 19, /* failed to allocate loop struct */
272 AF_BAD_LOOPMODE = 27, /* unrecognized loop mode value */
309 AF_BAD_LOOPCOUNT = 64, /* bad loop count */
321 AF_BAD_AIFF_LOOPMODE = 116 /* unrecognized loop mode (forw, etc)*
    [all...]
  /external/iptables/libxtables/
xtables.c 1404 const char *loop = name; local
1724 const char *loop = name; local
    [all...]
  /external/libhevc/common/arm/
ihevc_sao_band_offset_luma.s 76 MOV r9,r8 @Move the ht to r9 for loop counter
88 SUBS r9,r9,#1 @Decrement the loop counter
109 MOV r9,r7 @Move the wd to r9 for loop counter
113 SUBS r9,r9,#8 @Decrement the loop counter by 8
215 SUBS r11,r11,#4 @Decrement the ht loop count by 4
225 SUBS r7,r7,#8 @Decrement the width loop by 8

Completed in 1582 milliseconds

<<11121314151617181920>>