OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LValue
(Results
1 - 12
of
12
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp
92
static SVal makeZeroElementRegion(ProgramStateRef State, SVal
LValue
,
99
LValue
= State->getLValue(Ty, SVB.makeZeroArrayIndex(),
LValue
);
102
return
LValue
;
130
SVal
LValue
= State->getLValue(Var, LCtx);
132
LValue
= makeZeroElementRegion(State,
LValue
, Ty);
133
Target =
LValue
.getAsRegion();
BugReporterVisitors.cpp
211
if (Optional<Loc>
LValue
= RetVal.getAs<Loc>())
212
RetVal = State->getSVal(*
LValue
);
264
Optional<Loc>
LValue
;
266
if ((
LValue
= V.getAs<Loc>())) {
267
SVal RValue = State->getRawSVal(*
LValue
, RetE->getType());
314
if (
LValue
) {
315
if (const MemRegion *MR =
LValue
->getAsRegion()) {
920
// Alternately, if we hit a known
lvalue
for the statement, we know we've
921
// gone too far (though we can likely track the
lvalue
better anyway).
[
all
...]
ExprEngine.cpp
481
SVal
LValue
= State->getSVal(Init, stackFrame);
482
if (Optional<Loc> LValueLoc =
LValue
.getAs<Loc>())
[
all
...]
/external/clang/include/clang/AST/
APValue.h
48
LValue
,
187
bool isLValue() const { return Kind ==
LValue
; }
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp
225
LValue
::
LValue
(Function *fn, DataFile file)
240
LValue
::
LValue
(Function *fn,
LValue
*lval)
257
LValue
*
258
LValue
::clone(ClonePolicy<Function>& pol) const
260
LValue
*that = new_LValue(pol.context(), reg.file);
272
LValue
::isUniform() const
1002
mem_LValue(sizeof(
LValue
), 8)
[
all
...]
nv50_ir.h
308
class
LValue
;
417
int8_t indirect[2]; // >= 0 if relative to
lvalue
in insn->src(indirect[i])
448
inline void setSSA(
LValue
*);
449
inline const
LValue
*preSSA() const;
452
Value *value; // should make this
LValue
* ...
453
LValue
*origin; // pre SSA value
478
inline
LValue
*asLValue();
498
// TODO: these should be in
LValue
:
503
class
LValue
: public Value
506
LValue
(Function *, DataFile file)
[
all
...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp
225
LValue
::
LValue
(Function *fn, DataFile file)
240
LValue
::
LValue
(Function *fn,
LValue
*lval)
257
LValue
*
258
LValue
::clone(ClonePolicy<Function>& pol) const
260
LValue
*that = new_LValue(pol.context(), reg.file);
272
LValue
::isUniform() const
1002
mem_LValue(sizeof(
LValue
), 8)
[
all
...]
nv50_ir.h
308
class
LValue
;
417
int8_t indirect[2]; // >= 0 if relative to
lvalue
in insn->src(indirect[i])
448
inline void setSSA(
LValue
*);
449
inline const
LValue
*preSSA() const;
452
Value *value; // should make this
LValue
* ...
453
LValue
*origin; // pre SSA value
478
inline
LValue
*asLValue();
498
// TODO: these should be in
LValue
:
503
class
LValue
: public Value
506
LValue
(Function *, DataFile file)
[
all
...]
/external/clang/lib/CodeGen/
CGValue.h
105
///
LValue
- This represents an
lvalue
references. Because C/C++ allow
108
class
LValue
{
134
// The alignment to use when accessing this
lvalue
. (For vector elements,
144
//
LValue
is non-gc'able for any reason, including being a parameter or local
148
//
Lvalue
is a global reference of an objective-c object
151
//
Lvalue
is a thread local reference
154
//
Lvalue
has ARC imprecise lifetime. We store this inverted to try
165
/// TBAAInfo - TBAA information to attach to dereferences of this
LValue
.
261
// simple
lvalue
[
all
...]
/external/clang/lib/AST/
ExprConstant.cpp
58
struct
LValue
;
87
/// Get an
LValue
path entry, which is known to not be an array index, as a
96
/// Get an
LValue
path entry, which is known to not be an array index, as a
101
/// Get an
LValue
path entry, which is known to not be an array index, as a
106
/// Determine whether this
LValue
path entry for a base class names a virtual
154
/// and we cannot perform
lvalue
-to-rvalue conversions on them.
303
const
LValue
*This;
317
const FunctionDecl *Callee, const
LValue
*This,
331
ThisOverrideRAII(CallStackFrame &Frame, const
LValue
*NewThis, bool Enable)
341
const
LValue
*OldThis
[
all
...]
/external/chromium_org/v8/src/arm/
constants-arm.h
658
inline int
LValue
() const { return Bit(20); }
701
inline bool HasL() const { return
LValue
() == 1; }
/external/v8/src/arm/
constants-arm.h
662
inline int
LValue
() const { return Bit(20); }
702
inline bool HasL() const { return
LValue
() == 1; }
Completed in 2502 milliseconds