HomeSort by relevance Sort by last modified time
    Searched refs:live (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/clang/test/Sema/
warn-unreachable.c 4 int live();
28 switch (live()) {
34 live(), halt(),
38 live()
45 live(),
55 live(),
61 if (live())
63 live(),
72 live(),
95 live(),
    [all...]
  /external/clang/test/SemaCXX/
warn-unreachable.cpp 4 int &live();
11 live();
13 live();
20 live();
22 live();
27 live();
32 live();
47 live(),
75 live(),
  /external/chromium_org/v8/src/
hydrogen-environment-liveness.h 38 // Trims live ranges of environment slots by doing explicit liveness analysis.
42 // live ranges of environment slots by zapping them with a constant after
54 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live);
56 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live);
57 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
77 // for which a new live range has started since (so they must not be zapped
78 // in that simulate when the end of another live range of theirs is found).
hydrogen-environment-liveness.cc 71 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->Contains(index))
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_RETURN.S 9 stmfd sp!, {r0-r2,lr} @ preserve live registers
14 ldmfd sp!, {r0-r2,lr} @ restore live registers
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 12 #define comment /##/ dead tokens live here
  /external/qemu/audio/
audio.c 955 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 < 0 || live > hw->samples))
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...]
noaudio.c 41 static int no_run_out (HWVoiceOut *hw, int live)
56 decr = audio_MIN (live, samples);
100 int live = audio_pcm_hw_get_live_in (hw); local
101 int dead = hw->samples - live;
winaudio.c 254 winaudio_out_run (HWVoiceOut *hw, int live)
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 = hw->samples - hw->total_samples_captured; local
    [all...]
coreaudio.c 169 int live; member in struct:coreAudioVoice
465 static int coreaudio_run_out (HWVoiceOut *hw, int live)
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 - decr
505 int rpos, live; local
    [all...]
esdaudio.c 73 int live; member in struct:__anon26568
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)
207 decr = audio_MIN (live, esd->decr);
209 esd->live = live - decr;
211 if (esd->live > 0) {
409 int live, incr, dead local
    [all...]
paaudio.c 46 int live; member in struct:__anon26575
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)
163 decr = audio_MIN (live, pa->decr);
165 pa->live = live - decr;
167 if (pa->live > 0) {
250 int live, incr, dead local
    [all...]
wavaudio.c 58 static int wav_out_run (HWVoiceOut *hw, int live)
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);
audio_template.h 418 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)
fmodaudio.c 227 static int fmod_run_out (HWVoiceOut *hw, int live)
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;
  /dalvik/libdex/
DexDebugInfo.cpp 117 bool live; member in struct:LocalInfo
123 if (localCb != NULL && localInReg[reg].live) {
170 localInReg[argReg].live = true;
207 localInReg[reg].live = true;
248 localInReg[reg].live = true;
259 localInReg[reg].live = false;
276 * If the register is live, the "restart" is superfluous,
279 if (!localInReg[reg].live) {
281 localInReg[reg].live = true;
  /external/chromium_org/chrome/browser/resources/options/chromeos/
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 {
158 .camera:not(.live):not(.animation) #flip-photo {
171 .camera:not(.live) #discard-photo {
177 .camera.live.online #take-photo {
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_user_image.css 59 * .camera: camera (live or photo) is selected;
60 * .live: camera is in live mode (no photo taken yet/last photo removed).
105 .camera.live #user-image-preview-img {
126 .camera.live .user-image-stream-area {
198 .camera:not(.live) #discard-photo {
204 .camera.live.online #take-photo {
235 .camera.live:not(.online) .user-image-stream-area .spinner {
screen_locally_managed_user_creation.css 335 .camera.live #managed-user-creation-image-preview-img {
356 .camera.live .managed-user-creation-image-stream-area {
427 .camera:not(.live) #managed-user-creation-discard-photo {
433 .camera.live.online #managed-user-creation-take-photo {
454 .camera.live:not(.online) .managed-user-creation-image-stream-area .spinner {
  /dalvik/vm/compiler/codegen/
RallocUtil.cpp 44 * live until it is either explicitly killed or reallocated.
65 regs[i].live = false;
77 p[i].reg, p[i].inUse, p[i].pair, p[i].partner, p[i].live,
112 if ((info1->live && info1->dirty) || (info2->live && info2->dirty)) {
127 if (info->live && info->dirty) {
142 if (p[i].live && p[i].dirty) {
149 p[i].live = false;
179 p[i].live = false;
203 if (!p[next].inUse && !p[next].live) {
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 82 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() const { return bucket_rep & kLive; function in struct:HeapProfileTable::AllocValue
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 79 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...]
  /dalvik/vm/compiler/codegen/mips/
RallocUtil.cpp 46 * live until it is either explicitly killed or reallocated.
67 regs[i].live = false;
79 p[i].reg, p[i].inUse, p[i].pair, p[i].partner, p[i].live,
114 if ((info1->live && info1->dirty) || (info2->live && info2->dirty)) {
129 if (info->live && info->dirty) {
144 if (p[i].live && p[i].dirty) {
151 p[i].live = false;
181 p[i].live = false;
205 if (!p[next].inUse && !p[next].live) {
    [all...]
  /art/compiler/dex/quick/
ralloc_util.cc 28 * live until it is either explicitly killed or reallocated.
55 regs[i].live = false;
67 p[i].live, p[i].dirty, p[i].s_reg, reinterpret_cast<uintptr_t>(p[i].def_start),
85 p[i].live = false;
105 /* Reset live temp tracking sanity checker */
275 if (p[next].is_temp && !p[next].in_use && !p[next].live) {
313 // First try to avoid allocating live registers
317 if ((p[next].is_temp && !p[next].in_use && !p[next].live) &&
318 (p[next+1].is_temp && !p[next+1].in_use && !p[next+1].live)) {
382 if (p[i].live && (p[i].s_reg == s_reg))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
MemoryCache.h 48 // depending on the live resource load. Here's an example of cache growth over time,
52 // |----------| Live: +
134 void adjustSize(bool live, int delta);
181 unsigned m_liveSize; // The number of bytes currently consumed by "live" resources in the cache.
189 // Lists just for live resources with decoded data. Access to this list is based off of painting the resource.

Completed in 435 milliseconds

1 2 3 4 5