/external/clang/test/SemaCXX/ |
D | warn-unreachable.cpp | 4 int &live(); 11 live(); in test1() 13 live(); in test1() 20 live(); in test2() 22 live(); in test2() 27 live(); in test2() 32 live(); in test2() 47 live(), in test3() 75 live(), in test6()
|
/external/clang/test/Sema/ |
D | warn-unreachable.c | 4 int live(); 28 switch (live()) { in test2() 34 live(), halt(), in test2() 38 live() in test2() 45 live(), in test2() 55 live(), in test2() 61 if (live()) in test2() 63 live(), in test2() 72 live(), in test2() 95 live(), in test2()
|
/external/qemu/audio/ |
D | audio.c | 955 int live = hw->total_samples_captured - audio_pcm_hw_find_min_in (hw); in audio_pcm_hw_get_live_in() local 956 if (audio_bug (AUDIO_FUNC, live < 0 || live > hw->samples)) { in audio_pcm_hw_get_live_in() 957 dolog ("live=%d hw->samples=%d\n", live, hw->samples); in audio_pcm_hw_get_live_in() 960 return live; in audio_pcm_hw_get_live_in() 964 int live, int pending) in audio_pcm_hw_clip_out() argument 967 int len = audio_MIN (left, live); in audio_pcm_hw_clip_out() 991 int live = hw->total_samples_captured - sw->total_hw_samples_acquired; in audio_pcm_sw_get_rpos_in() local 994 if (audio_bug (AUDIO_FUNC, live < 0 || live > hw->samples)) { in audio_pcm_sw_get_rpos_in() 995 dolog ("live=%d hw->samples=%d\n", live, hw->samples); in audio_pcm_sw_get_rpos_in() 999 rpos = hw->wpos - live; in audio_pcm_sw_get_rpos_in() [all …]
|
D | winaudio.c | 254 winaudio_out_run (HWVoiceOut *hw, int live) in winaudio_out_run() argument 260 if (!live) { in winaudio_out_run() 269 while (live > 0) { in winaudio_out_run() 272 int wav_samples = audio_MIN(wav_bytes >> hw->info.shift, live); in winaudio_out_run() 273 int hw_samples = audio_MIN(hw->samples - hw->rpos, live); in winaudio_out_run() 290 live -= wav_samples; in winaudio_out_run() 310 live = 0; in winaudio_out_run() 511 int live = hw->samples - hw->total_samples_captured; in winaudio_in_run() local 513 if (!live) { in winaudio_in_run() 529 while (live > 0) { in winaudio_in_run() [all …]
|
D | coreaudio.c | 169 int live; member 465 static int coreaudio_run_out (HWVoiceOut *hw, int live) in coreaudio_run_out() argument 474 if (core->decr > live) { in coreaudio_run_out() 477 live, in coreaudio_run_out() 478 core->live); in coreaudio_run_out() 481 decr = audio_MIN (core->decr, live); in coreaudio_run_out() 484 core->live = live - decr; in coreaudio_run_out() 505 int rpos, live; in audioOutDeviceIOProc() local 521 live = core->live; in audioOutDeviceIOProc() 524 if (live < frameCount) { in audioOutDeviceIOProc() [all …]
|
D | paaudio.c | 46 int live; member 107 if (pa->live > threshold) { in qpa_thread_out() 116 decr = to_mix = pa->live; in qpa_thread_out() 145 pa->live -= decr; in qpa_thread_out() 154 static int qpa_run_out (HWVoiceOut *hw, int live) in qpa_run_out() argument 163 decr = audio_MIN (live, pa->decr); in qpa_run_out() 165 pa->live = live - decr; in qpa_run_out() 167 if (pa->live > 0) { in qpa_run_out() 250 int live, incr, dead; in qpa_run_in() local 257 live = audio_pcm_hw_get_live_in (hw); in qpa_run_in() [all …]
|
D | esdaudio.c | 73 int live; member 134 if (esd->live > threshold) { in qesd_thread_out() 143 decr = to_mix = esd->live; in qesd_thread_out() 189 esd->live -= decr; in qesd_thread_out() 198 static int qesd_run_out (HWVoiceOut *hw, int live) in qesd_run_out() argument 207 decr = audio_MIN (live, esd->decr); in qesd_run_out() 209 esd->live = live - decr; in qesd_run_out() 211 if (esd->live > 0) { in qesd_run_out() 409 int live, incr, dead; in qesd_run_in() local 416 live = audio_pcm_hw_get_live_in (hw); in qesd_run_in() [all …]
|
D | noaudio.c | 41 static int no_run_out (HWVoiceOut *hw, int live) in no_run_out() argument 56 decr = audio_MIN (live, samples); in no_run_out() 100 int live = audio_pcm_hw_get_live_in (hw); in no_run_in() local 101 int dead = hw->samples - live; in no_run_in()
|
D | wavaudio.c | 58 static int wav_out_run (HWVoiceOut *hw, int live) in wav_out_run() argument 77 decr = audio_MIN (live, samples); in wav_out_run() 348 int wpos, live, decr, samples; in wav_in_run() local 363 live = audio_pcm_hw_get_live_in (hw); in wav_in_run() 364 if (!live) { in wav_in_run() 370 decr = audio_MIN (live, samples); in wav_in_run()
|
D | fmodaudio.c | 227 static int fmod_run_out (HWVoiceOut *hw, int live) in fmod_run_out() argument 239 decr = live; in fmod_run_out() 262 decr, live, ppos, old_pos, len); in fmod_run_out() 455 int live, dead, new_pos, len; in fmod_run_in() local 461 live = audio_pcm_hw_get_live_in (hw); in fmod_run_in() 462 dead = hw->samples - live; in fmod_run_in()
|
D | audio_template.h | 418 int live = 0; in glue() local 447 live = sw->total_hw_samples_mixed; in glue() 450 dolog ("Replacing voice %s with %d live samples\n", SW_NAME (sw), live); in glue() 460 if (live) { in glue() 504 if (live) { in glue() 506 (live << old_sw->info.shift) in glue()
|
D | dsoundaudio.c | 568 static int dsound_run_out (HWVoiceOut *hw, int live) in dsound_run_out() argument 600 len = live << hwshift; in dsound_run_out() 762 int live, len, dead; in dsound_run_in() local 777 live = audio_pcm_hw_get_live_in (hw); in dsound_run_in() 778 dead = hw->samples - live; in dsound_run_in()
|
/external/llvm/test/CodeGen/X86/ |
D | coalescer-dce.ll | 21 ; live-in at 240L 22 ; live-in at 416L 23 ; live-in at 320L 24 ; live-in at 304L 28 ; extend the live range of %vreg7 to end at 256d. When the joined copy is
|
/external/llvm/docs/HistoricalNotes/ |
D | 2003-06-26-Reoptimizer2.txt | 19 The BinInterface tries to find live-outs for traces so that it can do 21 the original code. It has to preserve the live-ins and live-outs when 23 epilogues that copy live-outs back into the right registers, but 24 live-ins have to be in the right registers.) 98 2. Section 0 is the trace prolog, consisting mainly of live-ins and
|
/external/llvm/test/Transforms/DeadArgElim/ |
D | 2008-06-23-DeadAfterLive.ll | 7 ; This function has a live return value, it is used by @alive. 19 ; This function ensures the retval of @test5 is live.
|
/external/bluetooth/glib/gio/tests/ |
D | Makefile.am | 33 TEST_PROGS += live-g-file unix-streams desktop-app-info 60 live_g_file_SOURCES = live-g-file.c
|
D | .gitignore | 10 live-g-file
|
/external/llvm/test/ExecutionEngine/ |
D | 2003-08-23-RegisterAllocatePhysReg.ll | 5 ; of registers (due to too many overlapping live ranges), but then attempts to 11 ; Produce lots of overlapping live ranges
|
/external/qemu/docs/ |
D | AUDIO.TXT | 146 call this value the number of 'live' samples in the stereo buffer. 148 - if 'live' is 0, call the callback of each active SWVoiceOut to fill the stereo 178 live = MIN([sw.total_hw_samples_mixed for sw in hw.list_SWVoiceOut ]) 179 if live > 0: 180 played = hw.run_out(live)
|
/external/clang/test/Preprocessor/ |
D | macro_paste_msextensions.c | 12 #define comment /##/ dead tokens live here
|
/external/llvm/test/Verifier/ |
D | 2002-04-13-RetTypes.ll | 4 ; delcared return type of the function they live in.
|
/external/v8/src/ |
D | lithium-allocator.cc | 890 void LAllocator::ProcessInstructions(HBasicBlock* block, BitVector* live) { in ProcessInstructions() argument 920 if (live->Contains(LUnallocated::cast(to)->virtual_register())) { in ProcessInstructions() 922 live->Remove(LUnallocated::cast(to)->virtual_register()); in ProcessInstructions() 933 live->Add(LUnallocated::cast(from)->virtual_register()); in ProcessInstructions() 944 live->Remove(LUnallocated::cast(output)->virtual_register()); in ProcessInstructions() 986 live->Add(LUnallocated::cast(input)->virtual_register()); in ProcessInstructions() 1232 BitVector* live = live_in_sets_[block->block_id()]; in ResolveControlFlow() local 1233 BitVector::Iterator iterator(live); in ResolveControlFlow() 1254 BitVector* live = ComputeLiveOut(block); in BuildLiveRanges() local 1257 AddInitialIntervals(block, live); in BuildLiveRanges() [all …]
|
/external/iptables/extensions/ |
D | libipt_ttl.man | 1 This module matches the time to live field in the IP header.
|
/external/llvm/test/CodeGen/PowerPC/ |
D | 2010-10-11-Fast-Varargs.ll | 7 ; lowering code needs to use virtual registers when storing live-in registers on
|
/external/llvm/test/CodeGen/ARM/ |
D | ldrd.ll | 36 ; R0/R1/R2 live as the three arguments, forcing the LDRD's odd 38 ; evict another live range or use callee saved regs. Sorry if the test
|