OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Live
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_variable.h
51
struct live_intervals
Live
[4];
radeon_pair_regalloc.c
51
struct live_intervals
Live
[4];
178
reg->
Live
[i].Used = 1;
179
reg->
Live
[i].Start = 0;
180
reg->
Live
[i].End =
563
/* Compute the
live
intervals */
598
/* Calculate
live
intervals for input registers */
617
if (s->Input[i].
Live
[chan].Used) {
650
if (overlap_live_intervals_array(var_a->
Live
, var_b->
Live
)) {
671
if (overlap_live_intervals_array(s->Input[i].
Live
,
[
all
...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.h
51
struct live_intervals
Live
[4];
radeon_pair_regalloc.c
51
struct live_intervals
Live
[4];
178
reg->
Live
[i].Used = 1;
179
reg->
Live
[i].Start = 0;
180
reg->
Live
[i].End =
563
/* Compute the
live
intervals */
598
/* Calculate
live
intervals for input registers */
617
if (s->Input[i].
Live
[chan].Used) {
650
if (overlap_live_intervals_array(var_a->
Live
, var_b->
Live
)) {
671
if (overlap_live_intervals_array(s->Input[i].
Live
,
[
all
...]
/external/chromium_org/components/test/data/password_manager/
tests.py
226
class
Live
(WebsiteTest):
229
self.GoTo("https://login.
live
.com")
312
environment.AddWebsiteTest(
Live
("
live
", username_not_auto=True),
/external/llvm/lib/CodeGen/
LiveVariables.cpp
1
//===-- LiveVariables.cpp -
Live
Variable Analysis for Machine Code -------===//
17
// This class computes
live
variables using a sparse implementation based on
18
// the machine code SSA form. This class computes
live
variable information for
20
// uses the dominance properties of SSA form to efficiently compute
live
22
//
live
within a single basic block (allowing it to do a single local analysis
47
"
Live
Variable Analysis", false, false)
50
"
Live
Variable Analysis", false, false)
109
return; // We already know the block is
live
142
//
live
range by updating the kill instruction.
176
// Update all dominating blocks to mark them as "known
live
"
[
all
...]
/external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp
86
enum Liveness {
Live
, MaybeLive };
99
/// arguments it uses. This allows the MaybeLive values to be marked
live
100
/// when any of its users is marked
live
.
117
/// This set contains all values that have been determined to be
live
.
388
///
live
, it adds Use to the MaybeLiveUses argument. Returns the determined
391
// We're
live
if our use or its Function is already marked as
live
.
393
return
Live
;
395
// We're maybe
live
otherwise, but remember that we must become
live
i
[
all
...]
Completed in 961 milliseconds