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

1 2 3 4 5 6 7 8

  /external/clang/test/CodeGen/
2002-02-18-64bitConstant.c 8 long long Var = 123455678902ll;
9 printf("%lld\n", Var);
  /external/compiler-rt/test/tsan/
stack_race.cc 12 int Var = 42;
14 pthread_create(&t, 0, Thread, &Var);
15 Var = 43;
stack_race2.cc 11 int Var = 42;
13 pthread_create(&t, 0, Thread2, &Var);
14 Var = 42;
tls_race.cc 12 static __thread int Var = 42;
14 pthread_create(&t, 0, Thread, &Var);
15 Var = 43;
tls_race2.cc 11 static __thread int Var = 42;
13 pthread_create(&t, 0, Thread2, &Var);
14 Var = 42;
  /external/v8/src/
effects.h 76 template<class Var, class Base, class Effects>
81 Effect Lookup(Var var) {
83 return this->Find(var, &locator)
87 Bounds LookupBounds(Var var) {
88 Effect effect = Lookup(var);
94 void Seq(Var var, Effect effect) {
96 if (!this->Insert(var, &locator))
    [all...]
  /external/elfutils/libelf/
common.h 138 #define CONVERT(Var) \
139 (Var) = (sizeof (Var) == 1 \
140 ? (unsigned char) (Var) \
141 : (sizeof (Var) == 2 \
142 ? bswap_16 (Var) \
143 : (sizeof (Var) == 4 \
144 ? bswap_32 (Var) \
145 : bswap_64 (Var))))
147 #define CONVERT_TO(Dst, Var) \
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 46 MDNode *Var;
57 SDDbgValue(MDNode *Var, MDNode *Expr, SDNode *N, unsigned R, bool indir,
59 : Var(Var), Expr(Expr), Offset(off), DL(dl), Order(O), IsIndirect(indir) {
66 SDDbgValue(MDNode *Var, MDNode *Expr, const Value *C, uint64_t off,
68 : Var(Var), Expr(Expr), Offset(off), DL(dl), Order(O), IsIndirect(false) {
74 SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl,
76 : Var(Var), Expr(Expr), Offset(off), DL(dl), Order(O), IsIndirect(false)
    [all...]
  /build/kati/
var.h 45 class Var : public Evaluable {
47 virtual ~Var();
60 Var();
63 class SimpleVar : public Var {
90 class RecursiveVar : public Var {
115 class UndefinedVar : public Var {
136 class RuleVar : public Var {
138 RuleVar(Var* v, AssignOp op)
166 Var* v() const { return v_; }
170 Var* v_
    [all...]
symtab.h 28 class Var;
58 Var* GetGlobalVar() const;
59 void SetGlobalVar(Var* v) const;
71 ScopedGlobalVar(Symbol name, Var* var);
76 Var* orig_;
var.cc 17 #include "var.h"
40 Var::Var() {
43 Var::~Var() {
46 void Var::AppendVar(Evaluator*, Value*) {
121 Var* Vars::Lookup(Symbol name) const {
125 Var* v = found->second;
133 void Vars::Assign(Symbol name, Var* v) {
136 Var* orig = p.first->second
    [all...]
eval.h 31 class Var;
46 Var* LookupVar(Symbol name);
48 Var* LookupVarInCurrentScope(Symbol name);
93 Var* EvalRHS(Symbol lhs, Value* rhs, StringPiece orig_rhs, AssignOp op,
97 Var* LookupVarGlobal(Symbol name);
dep.h 29 class Var;
47 Var* depfile_var;
  /external/llvm/lib/CodeGen/AsmPrinter/
DbgValueHistoryCalculator.h 43 void startInstrRange(InlinedVariable Var, const MachineInstr &MI);
44 void endInstrRange(InlinedVariable Var, const MachineInstr &MI);
45 // Returns register currently describing @Var. If @Var is currently
47 unsigned getRegisterForVar(InlinedVariable Var) const;
DbgValueHistoryCalculator.cpp 36 void DbgValueHistoryMap::startInstrRange(InlinedVariable Var,
41 auto &Ranges = VarInstrRanges[Var];
51 void DbgValueHistoryMap::endInstrRange(InlinedVariable Var,
53 auto &Ranges = VarInstrRanges[Var];
62 unsigned DbgValueHistoryMap::getRegisterForVar(InlinedVariable Var) const {
63 const auto &I = VarInstrRanges.find(Var);
78 // \brief Claim that @Var is not described by @RegNo anymore.
80 InlinedVariable Var) {
84 const auto &VarPos = std::find(VarSet.begin(), VarSet.end(), Var);
92 // \brief Claim that @Var is now described by @RegNo
    [all...]
  /external/libunwind/doc/
unw_flush_cache.tex 15 \Type{void} \Func{unw\_flush\_cache}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_word\_t} \Var{lo}, \Type{unw\_word\_t} \Var{hi});\\
20 relates to address-range \Var{lo} to \Var{hi} (non-inclusive) in the
21 target address-space \Var{as}. In addition, all info cached for
22 address-space \Var{as} that is not tied to a particular code-range is
26 \Var{lo} and \Var{hi} should be understood as a hint:
31 As a special case, if arguments \Var{lo} and \Var{hi} are both 0, al
    [all...]
unw_create_addr_space.tex 15 \Type{unw\_addr\_space\_t} \Func{unw\_create\_addr\_space}(\Type{unw\_accessors\_t~*}\Var{ap}, \Type{int} \Var{byteorder});\\
21 passed via the \Var{ap} pointer and the specified \Var{byteorder}.
23 \Var{byteorder} can be set to 0 to request the default byte-order of
25 \Var{byteorder} can be set to any constant defined by
35 routines are specified via the \Var{ap} argument, which points to a
42 identifier (\Var{as}) and the last argument is an arbitrary,
43 application-specified void-pointer (\Var{arg}). When invoking a
44 call-back routine, \Prog{libunwind} sets the \Var{as} argument to th
    [all...]
unw_init_remote.tex 15 \Type{int} \Func{unw\_init\_remote}(\Type{unw\_cursor\_t~*}\Var{c}, \Type{unw\_addr\_space\_t~}\Var{as}, \Type{void~*}\Var{arg});\\
20 pointed to by \Var{c} for unwinding in the address space identified by
21 \Var{as}. The \Var{as} argument can either be set to
22 \Var{unw\_local\_addr\_space} (local address space) or to an arbitrary
25 The \Var{arg} void-pointer tells the address space exactly what entity
26 should be unwound. For example, if \Var{unw\_local\_addr\_space} is
27 passed in \Var{as}, then \Var{arg} needs to be a pointer to a contex
    [all...]
unw_backtrace.tex 15 \Type{int} \Func{unw\_backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\
19 \Type{int} \Func{backtrace}(\Type{void~**}\Var{buffer}, \Type{int}~\Var{size});\\
24 the calling program. The routine fills up to \Var{size} addresses in the array
25 pointed by \Var{buffer}. The routine is only available for local unwinding.
38 \Var{buffer}. The return value may be zero to indicate that no addresses were
unw_strerror.tex 15 \Type{const char *} \Func{unw\_strerror}(\Type{int} \Var{err\_code});\\
19 The \Func{unw\_strerror}() routine maps the (negative) \Var{err\_code}
24 The message that corresponds to \Var{err\_code} or, if the
25 \Var{err\_code} has no corresponding message, the text "invalid error
unw_get_proc_info_by_ip.tex 15 \Type{int} \Func{unw\_get\_proc\_info\_by\_ip}(\Type{unw\_addr\_space\_t~}\Var{as}, \Type{unw\_word\_t~}\Var{ip}, \Type{unw\_proc\_info\_t~*}\Var{pip}, \Type{void~*}\Var{arg});\\
28 The routine expects the followins arguments: \Var{as} is the
31 \Var{unw\_local\_addr\_space} can be passed for this argument.
32 Argument \Var{ip} is the instruction-pointer for which the procedure
33 info should be looked up and \Var{pip} is a pointer to a structure of
35 Lastly, \Var{arg} is the address-space argument that should be used
39 \Var{unw\_local\_addr\_space}), \Const{NULL} must be passed for thi
    [all...]
unw_get_proc_name.tex 15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \Type{size\_t} \Var{len}, \Type{unw\_word\_t~*}\Var{offp});\\
21 \Var{cp}. The \Var{bufp} argument is a pointer to a character buffer
22 that is at least \Var{len} bytes long. This buffer is used to return
23 the name of the procedure. The \Var{offp} argument is a pointer to a
25 saved in the stack frame identified by \Var{cp}, relative to the start
29 return a value of 0x80 in the word pointed to by \Var{offp} (assumin
    [all...]
  /external/llvm/tools/llvm-pdbdump/
ExternalSymbolDumper.cpp 24 while (auto Var = Vars->getNext())
25 Var->dump(*this);
VariableDumper.cpp 34 void VariableDumper::start(const PDBSymbolData &Var) {
35 if (Var.isCompilerGenerated() && opts::ExcludeCompilerGenerated)
37 if (Printer.IsSymbolExcluded(Var.getName()))
40 auto VarType = Var.getType();
42 switch (auto LocType = Var.getLocationType()) {
47 << format_hex(Var.getVirtualAddress(), 10);
50 dumpSymbolTypeAndName(*VarType, Var.getName());
58 dumpSymbolTypeAndName(*VarType, Var.getName());
60 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue();
66 << "+" << format_hex(Var.getOffset(), 4) << " "
    [all...]
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 45 VarDecl *Var;
49 BlockVarChecker(VarDecl *var) : Var(var) { }
54 if (ref->getDecl() == Var) {
58 Var->getASTContext().getLangOpts().CPlusPlus)
67 if (E->getDecl() == Var)
82 VarDecl *var = I.getVariable(); local
84 var->getType()->isObjCObjectPointerType() &&
85 isImplicitStrong(var->getType()))
91 VarDecl *var = BlockVars[i]; local
136 VarDecl *var = *I; local
    [all...]

Completed in 722 milliseconds

1 2 3 4 5 6 7 8