/external/chromium_org/v8/src/ |
D | hydrogen-environment-liveness.cc | 71 HBasicBlock* block, BitVector* live) { in ZapEnvironmentSlotsInSuccessors() argument 78 if (live_in_successor->Equals(*live)) continue; in ZapEnvironmentSlotsInSuccessors() 79 for (int i = 0; i < live->length(); ++i) { in ZapEnvironmentSlotsInSuccessors() 80 if (!live->Contains(i)) continue; in ZapEnvironmentSlotsInSuccessors() 108 BitVector* live) { in UpdateLivenessAtBlockEnd() argument 110 live->Clear(); in UpdateLivenessAtBlockEnd() 112 live->Union(*live_at_block_start_[it.Current()->block_id()]); in UpdateLivenessAtBlockEnd() 119 BitVector* live) { in UpdateLivenessAtInstruction() argument 124 if (!live->Contains(index)) { in UpdateLivenessAtInstruction() 133 live->Add(index); in UpdateLivenessAtInstruction() [all …]
|
D | hydrogen-environment-liveness.h | 54 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live); 56 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live); 57 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
|
/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 | 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 | 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 | 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 | 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 | 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()
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
D | change_picture_options.css | 52 * .camera: camera (live or photo) is selected; 53 * .live: camera is in live mode (no photo taken yet/last photo removed). 75 .camera.live #user-image-preview-img { 92 .camera.live .user-image-stream-area { 134 .camera.live:not(.online) .user-image-stream-area .spinner { 163 .camera:not(.live):not(.animation) #flip-photo { 176 .camera:not(.live) #discard-photo { 182 .camera.live.online #take-photo {
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
D | oobe_screen_user_image.css | 64 * .camera: camera (live or photo) is selected; 65 * .live: camera is in live mode (no photo taken yet/last photo removed). 113 .camera.live #user-image-preview-img { 134 .camera.live .user-image-stream-area { 213 .camera:not(.live) #discard-photo { 219 .camera.live.online #take-photo { 250 .camera.live:not(.online) .user-image-stream-area .spinner {
|
/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/chromium_org/third_party/tcmalloc/vendor/src/ |
D | heap-profile-table.h | 79 bool live; member 224 bool live() const { return bucket_rep & kLive; } in live() function 298 info.live = v->live(); in MapArgsAllocIterator()
|
/external/chromium_org/sync/js/ |
D | README.js | 38 The following objects live on the UI thread: 43 The following objects live on the sync thread: 48 live, since they interact via WeakHandles.
|
/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/llvm/test/CodeGen/X86/GC/ |
D | erlang-gc.ll | 14 ; CHECK64-NEXT: .short 0 # live root count 22 ; CHECK32-NEXT: .short 0 # live root count
|
/external/chromium_org/content/browser/accessibility/ |
D | browser_accessibility_android.cc | 468 std::string live = GetStringAttribute( in AndroidLiveRegionType() local 470 if (live == "polite") in AndroidLiveRegionType() 472 else if (live == "assertive") in AndroidLiveRegionType() 581 base::string16 live; in PostInitialize() local 583 AccessibilityNodeData::ATTR_CONTAINER_LIVE_STATUS, &live)) { in PostInitialize() 584 NotifyLiveRegionUpdate(live); in PostInitialize()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | heap-profile-table.h | 82 bool live; member 250 bool live() const { return bucket_rep & kLive; } in live() function 383 info.live = v->live(); in MapArgsAllocIterator()
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
D | 2003-08-23-RegisterAllocatePhysReg.ll | 4 ; of registers (due to too many overlapping live ranges), but then attempts to 10 ; Produce lots of overlapping live ranges
|
/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
|