Searched defs:live (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dhydrogen-environment-liveness.cc71 HBasicBlock* block, BitVector* live) {
72 // When a value is live in successor A but dead in B, we must
78 if (live_in_successor->Equals(*live)) continue;
79 for (int i = 0; i < live->length(); ++i) {
80 if (!live->Contains(i)) continue;
108 BitVector* live) {
110 live->Clear();
112 live->Union(*live_at_block_start_[it.Current()->block_id()]);
119 BitVector* live) {
124 if (!live
70 ZapEnvironmentSlotsInSuccessors( HBasicBlock* block, BitVector* live) argument
106 UpdateLivenessAtBlockEnd( HBasicBlock* block, BitVector* live) argument
117 UpdateLivenessAtInstruction( HInstruction* instr, BitVector* live) argument
[all...]
H A Dlithium-allocator.cc221 // We cannot spill a live range that has a use requiring a register
313 // Partition original use intervals to the two live ranges.
341 // Partition original use positions to the two live ranges.
350 // to the use that no longer belongs to this live range.
354 // Link the new live range in the chain before any of the other
368 // This implements an ordering on live ranges so that they are ordered by their
370 // allocation algorithm. If two live ranges start at the same offset then there
388 LAllocator::TraceAlloc("Shorten live range %d to [%d\n", id_, start.Value());
399 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n",
424 LAllocator::TraceAlloc("Add to live rang
915 ProcessInstructions(HBasicBlock* block, BitVector* live) argument
1270 BitVector* live = live_in_sets_[block->block_id()]; local
1292 BitVector* live = ComputeLiveOut(block); local
[all...]
/external/qemu/audio/
H A Daudio_template.h418 int live = 0; local
447 live = sw->total_hw_samples_mixed;
450 dolog ("Replacing voice %s with %d live samples\n", SW_NAME (sw), live);
460 if (live) {
504 if (live) {
506 (live << old_sw->info.shift)
H A Dnoaudio.c41 static int no_run_out (HWVoiceOut *hw, int live) argument
56 decr = audio_MIN (live, samples);
100 int live = audio_pcm_hw_get_live_in (hw); local
101 int dead = hw->samples - live;
H A Desdaudio.c73 int live; member in struct:__anon25135
134 if (esd->live > threshold) {
143 decr = to_mix = esd->live;
189 esd->live -= decr;
198 static int qesd_run_out (HWVoiceOut *hw, int live) argument
207 decr = audio_MIN (live, esd->decr);
209 esd->live = live - decr;
211 if (esd->live > 0) {
409 int live, inc local
[all...]
H A Dfmodaudio.c227 static int fmod_run_out (HWVoiceOut *hw, int live) argument
239 decr = live;
261 dolog ("decr=%d live=%d ppos=%d old_pos=%d len=%d\n",
262 decr, live, ppos, old_pos, len);
455 int live, dead, new_pos, len; local
461 live = audio_pcm_hw_get_live_in (hw);
462 dead = hw->samples - live;
H A Dpaaudio.c46 int live; member in struct:__anon25142
107 if (pa->live > threshold) {
116 decr = to_mix = pa->live;
145 pa->live -= decr;
154 static int qpa_run_out (HWVoiceOut *hw, int live) argument
163 decr = audio_MIN (live, pa->decr);
165 pa->live = live - decr;
167 if (pa->live > 0) {
250 int live, inc local
[all...]
H A Dwavaudio.c58 static int wav_out_run (HWVoiceOut *hw, int live) argument
77 decr = audio_MIN (live, samples);
348 int wpos, live, decr, samples; local
363 live = audio_pcm_hw_get_live_in (hw);
364 if (!live) {
370 decr = audio_MIN (live, samples);
H A Dwinaudio.c254 winaudio_out_run (HWVoiceOut *hw, int live) argument
260 if (!live) {
269 while (live > 0) {
272 int wav_samples = audio_MIN(wav_bytes >> hw->info.shift, live);
273 int hw_samples = audio_MIN(hw->samples - hw->rpos, live);
283 //D("run_out: buffer:%d pos:%d size:%d wsamples:%d wbytes:%d live:%d rpos:%d hwsamples:%d\n", s->write_index,
284 // s->write_pos, s->write_size, wav_samples, wav_bytes, live, hw->rpos, hw->samples);
290 live -= wav_samples;
310 live = 0;
511 int live local
[all...]
H A Dcoreaudio.c169 int live; member in struct:coreAudioVoice
465 static int coreaudio_run_out (HWVoiceOut *hw, int live) argument
474 if (core->decr > live) {
475 ldebug ("core->decr %d live %d core->live %d\n",
477 live,
478 core->live);
481 decr = audio_MIN (core->decr, live);
484 core->live = live
505 int rpos, live; local
610 coreaudio_run_in(HWVoiceIn *hw, int live) argument
[all...]
H A Ddsoundaudio.c568 static int dsound_run_out (HWVoiceOut *hw, int live) argument
600 len = live << hwshift;
762 int live, len, dead; local
777 live = audio_pcm_hw_get_live_in (hw);
778 dead = hw->samples - live;
H A Dossaudio.c424 static int oss_run_out (HWVoiceOut *hw, int live) argument
445 decr = audio_MIN (bytes >> hw->info.shift, live);
471 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
744 int live = audio_pcm_hw_get_live_in (hw); local
745 int dead = hw->samples - live;
H A Dalsaaudio.c845 static int alsa_run_out (HWVoiceOut *hw, int live) argument
857 decr = audio_MIN (live, avail);
1052 int live = audio_pcm_hw_get_live_in (hw); local
1053 int dead = hw->samples - live;
H A Daudio.c955 int live = hw->total_samples_captured - audio_pcm_hw_find_min_in (hw); local
956 if (audio_bug (AUDIO_FUNC, live < 0 || live > hw->samples)) {
957 dolog ("live=%d hw->samples=%d\n", live, hw->samples);
960 return live;
964 int live, int pending)
967 int len = audio_MIN (left, live);
991 int live = hw->total_samples_captured - sw->total_hw_samples_acquired; local
994 if (audio_bug (AUDIO_FUNC, live <
963 audio_pcm_hw_clip_out(HWVoiceOut *hw, void *pcm_buf, int live, int pending) argument
1011 int samples, live, ret = 0, swlim, isamp, osamp, rpos, total = 0; local
1092 int live = smin; local
1108 int hwsamples, samples, isamp, osamp, wpos, live, dead, left, swlim, blck; local
1394 int live; local
1417 int live, dead; local
1485 int live, free, nb_live, cleanup_required, prev_rpos; local
1620 int live, rpos, captured; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCacheTest.cpp196 Task1(const ResourcePtr<Resource>& live, const ResourcePtr<Resource>& dead) argument
197 : m_live(live)
235 // Next task: now, the live resource was evicted.
H A DMemoryCache.cpp150 // Dead resource capacity is whatever space is not occupied by live resources, bounded by an independent minimum and maximum.
172 // Destroy any decoded data in live objects that we can.
491 void MemoryCache::adjustSize(bool live, ptrdiff_t delta) argument
493 if (live) {
638 pruneDeadResources(); // Prune dead first, in case it was "borrowing" capacity from live.
/external/chromium_org/base/strings/
H A Dstring_util_unittest.cc1190 const char kLive[] = "live";
1192 const std::string live = kLive; local
1193 std::string dead = live;
1197 EXPECT_EQ(kLive, live);
1198 EXPECT_EQ(4u, live.size());
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profile-table.h79 bool live; member in struct:HeapProfileTable::AllocInfo
131 // If "ptr" points to a recorded allocation and it's not marked as live
132 // mark it as live and return true. Else return false.
133 // All allocations start as non-live.
184 // Return a snapshot of every non-live, non-ignored object in *this.
186 // As a side-effect, clears the "live" bit on every live object in *this.
224 bool live() const { return bucket_rep & kLive; } function in struct:HeapProfileTable::AllocValue
298 info.live = v->live();
[all...]
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_android.cc468 std::string live = GetStringAttribute( local
470 if (live == "polite")
472 else if (live == "assertive")
581 base::string16 live; local
583 AccessibilityNodeData::ATTR_CONTAINER_LIVE_STATUS, &live)) {
584 NotifyLiveRegionUpdate(live);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-table.h82 bool live; member in struct:HeapProfileTable::AllocInfo
134 // If "ptr" points to a recorded allocation and it's not marked as live
135 // mark it as live and return true. Else return false.
136 // All allocations start as non-live.
201 // Return a snapshot of every non-live, non-ignored object in *this.
203 // As a side-effect, clears the "live" bit on every live object in *this.
207 // Dump a list of allocations marked as "live" along with their creation
218 // "live" where created during step 2.
250 bool live() cons function in struct:HeapProfileTable::AllocValue
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_optimize.c839 /** A live register interval */
966 /* Variables that are live at the end of a loop will also be live at the
967 * beginning, so an instruction inside of a loop should have its live
1044 * Find the live intervals for each temporary register in the program.
1073 /* Build live intervals list from intermediate arrays */
1092 printf("Reg[%d] live [%d, %d]:",
1128 * We compute the "live interval" for all temporary registers then
1142 printf("Optimize: Begin live-interval register reallocation\n");
1161 /* loop over live interval
1163 const struct interval *live = liveIntervals.Intervals + i; local
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_optimize.c839 /** A live register interval */
966 /* Variables that are live at the end of a loop will also be live at the
967 * beginning, so an instruction inside of a loop should have its live
1044 * Find the live intervals for each temporary register in the program.
1073 /* Build live intervals list from intermediate arrays */
1092 printf("Reg[%d] live [%d, %d]:",
1128 * We compute the "live interval" for all temporary registers then
1142 printf("Optimize: Begin live-interval register reallocation\n");
1161 /* loop over live interval
1163 const struct interval *live = liveIntervals.Intervals + i; local
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_impl.cc225 // Make a set of all of the live files
226 std::set<uint64_t> live = pending_outputs_; local
227 versions_->AddLiveFiles(&live);
247 keep = (live.find(number) != live.end());
251 // be recorded in pending_outputs_, which is inserted into "live"
252 keep = (live.find(number) != live.end());
/external/v8/src/
H A Dlithium-allocator.cc212 // We cannot spill a live range that has a use requiring a register
306 // Partition original use intervals to the two live ranges.
334 // Partition original use positions to the two live ranges.
343 // to the use that no longer belongs to this live range.
347 // Link the new live range in the chain before any of the other
360 // This implements an ordering on live ranges so that they are ordered by their
362 // allocation algorithm. If two live ranges start at the same offset then there
380 LAllocator::TraceAlloc("Shorten live range %d to [%d\n", id_, start.Value());
391 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n",
416 LAllocator::TraceAlloc("Add to live rang
890 ProcessInstructions(HBasicBlock* block, BitVector* live) argument
1232 BitVector* live = live_in_sets_[block->block_id()]; local
1254 BitVector* live = ComputeLiveOut(block); local
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2623 const Expr *live = expr->getTrueExpr(), *dead = expr->getFalseExpr(); local
2624 if (!CondExprBool) std::swap(live, dead);
2627 return EmitLValue(live);

Completed in 475 milliseconds

12