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

1 2 3 4

  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /external/v8/src/ia32/
register-allocator-ia32.cc 42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
44 if (CodeGeneratorScope::Current()->IsUnsafeSmi(handle())) {
45 CodeGeneratorScope::Current()->MoveUnsafeSmi(fresh.reg(), handle());
47 CodeGeneratorScope::Current()->masm()->Set(fresh.reg(),
60 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
63 CodeGeneratorScope::Current()->masm()->mov(fresh.reg(), reg());
66 if (CodeGeneratorScope::Current()->IsUnsafeSmi(handle())) {
67 CodeGeneratorScope::Current()->MoveUnsafeSmi(fresh.reg(), handle());
69 CodeGeneratorScope::Current()->masm()->Set(fresh.reg(),
75 ASSERT(CodeGeneratorScope::Current()->has_valid_frame())
    [all...]
  /external/v8/src/x64/
register-allocator-x64.cc 42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
44 CodeGeneratorScope::Current()->masm()->Move(fresh.reg(), handle());
55 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
58 CodeGeneratorScope::Current()->masm()->movq(fresh.reg(), reg());
61 CodeGeneratorScope::Current()->masm()->Move(fresh.reg(), handle());
65 ASSERT(CodeGeneratorScope::Current()->has_valid_frame());
66 CodeGeneratorScope::Current()->frame()->Spill(target);
67 ASSERT(CodeGeneratorScope::Current()->allocator()->count(target) == 1);
  /external/v8/src/
register-allocator-inl.h 67 CodeGeneratorScope::Current()->allocator()->Unuse(reg());
74 CodeGeneratorScope::Current()->allocator()->Unuse(reg());
83 CodeGeneratorScope::Current()->allocator()->Use(reg());
jump-target-inl.h 35 return CodeGeneratorScope::Current();
register-allocator.cc 42 CodeGeneratorScope::Current()->allocator()->Use(reg);
89 // Ask the current frame to spill a register.
  /external/opencore/engines/2way/test/src/
alloc_dealloc_test.cpp 61 scheduler = OsclExecScheduler::Current();
connect_cancel_test.cpp 27 scheduler = OsclExecScheduler::Current();
init_cancel_test.cpp 26 scheduler = OsclExecScheduler::Current();
init_test.cpp 27 scheduler = OsclExecScheduler::Current();
init_rec_reset_test.cpp 27 scheduler = OsclExecScheduler::Current();
user_input_test.cpp 37 scheduler = OsclExecScheduler::Current();
connect_test.cpp 29 scheduler = OsclExecScheduler::Current();
init_play_reset_test.cpp 35 scheduler = OsclExecScheduler::Current();
init_play_test.cpp 34 scheduler = OsclExecScheduler::Current();
init_rec_test.cpp 27 scheduler = OsclExecScheduler::Current();
  /external/opencore/oscl/oscl/osclproc/src/
oscl_scheduler_threadcontext.cpp 67 //Set current thread scheduler.
106 //static routine to get current context.
122 if (OsclExecScheduler::Current() != NULL)
  /external/bison/data/
glr.c 111 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
131 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
485 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
486 If N is 0, then set CURRENT to the empty location which ends
492 # define YYLLOC_DEFAULT(Current, Rhs, N) \
496 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
497 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
498 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
499 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
503 (Current).first_line = (Current).last_line =
    [all...]
lalr1.cc 83 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
84 If N is 0, then set CURRENT to the empty location which ends
88 # define YYLLOC_DEFAULT(Current, Rhs, N) \
92 (Current).begin = (Rhs)[1].begin; \
93 (Current).end = (Rhs)[N].end; \
97 (Current).begin = (Current).end = (Rhs)[0].end; \
139 /// The current debugging stream.
141 /// Set the current debugging stream.
146 /// The current debugging level
    [all...]
yacc.c 103 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
123 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
591 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
592 If N is 0, then set CURRENT to the empty location which ends
597 # define YYLLOC_DEFAULT(Current, Rhs, N) \
601 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
602 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
603 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
604 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
608 (Current).first_line = (Current).last_line =
    [all...]
glr.cc 265 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
266 If N is 0, then set CURRENT to the empty location which ends
270 # define YYLLOC_DEFAULT(Current, Rhs, N) \
274 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
275 (Current).end = YYRHSLOC (Rhs, N).end; \
279 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
320 /// The current debugging stream.
322 /// Set the current debugging stream.
327 /// The current debugging level
    [all...]
  /external/v8/tools/
test.py 801 def Current(self, length = 1):
815 while self.HasMore() and self.Current().isspace():
824 if self.Current() == '(':
827 elif self.Current() == ')':
830 elif self.Current() == '$':
833 elif self.Current() == ',':
836 elif IsAlpha(self.Current()):
838 while self.HasMore() and IsAlpha(self.Current()):
839 buf += self.Current()
842 elif self.Current(2) == '&&'
    [all...]
  /external/libpcap/
grammar.c     [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 103 // Dereferences the current iterator and provides (read-only) access
105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; }
320 // responsible for not calling Current() on an out-of-range iterator.
321 virtual const T* Current() const {
348 // value_ needs to be mutable to be accessed in Current().
  /external/bison/src/
parse-gram.c 222 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
870 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
871 If N is 0, then set CURRENT to the empty location which ends
876 # define YYLLOC_DEFAULT(Current, Rhs, N) \
880 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
881 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
882 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
883 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
887 (Current).first_line = (Current).last_line =
    [all...]

Completed in 261 milliseconds

1 2 3 4