OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsInContext
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
vmap_table.h
54
bool
IsInContext
(size_t vreg, VRegKind kind, uint32_t* vmap_offset) const {
89
// by
IsInContext
above). If the kind is floating point then the result will be a floating point
stack.cc
164
// TODO:
IsInContext
stops before spotting floating point registers.
165
if (vmap_table.
IsInContext
(vreg, kind, &vmap_offset)) {
218
// TODO:
IsInContext
stops before spotting floating point registers.
219
if (vmap_table.
IsInContext
(vreg, kind_lo, &vmap_offset_lo) &&
220
vmap_table.
IsInContext
(vreg + 1, kind_hi, &vmap_offset_hi)) {
265
// TODO:
IsInContext
stops before spotting floating point registers.
266
if (vmap_table.
IsInContext
(vreg, kind, &vmap_offset)) {
329
// TODO:
IsInContext
stops before spotting floating point registers.
330
if (vmap_table.
IsInContext
(vreg, kind_lo, &vmap_offset_lo) &&
331
vmap_table.
IsInContext
(vreg + 1, kind_hi, &vmap_offset_hi))
[
all
...]
thread.cc
[
all
...]
/art/oatdump/
oatdump.cc
706
if (vmap_table.
IsInContext
(reg, kind, &vmap_offset)) {
[
all
...]
Completed in 45 milliseconds