OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsBitSet
(Results
1 - 18
of
18
) sorted by null
/art/runtime/base/
bit_vector_test.cc
36
EXPECT_FALSE(bv.
IsBitSet
(i));
49
EXPECT_TRUE(bv.
IsBitSet
(0));
51
EXPECT_FALSE(bv.
IsBitSet
(i));
53
EXPECT_TRUE(bv.
IsBitSet
(kBits - 1));
bit_vector.cc
62
bool BitVector::
IsBitSet
(uint32_t num) const {
69
return
IsBitSet
(storage_, num);
378
bool BitVector::
IsBitSet
(const uint32_t* storage, uint32_t num) {
436
if (
IsBitSet
(i)) {
450
buffer <<
IsBitSet
(i);
bit_vector.h
156
bool
IsBitSet
(uint32_t num) const;
203
static bool
IsBitSet
(const uint32_t* storage, uint32_t num);
/art/compiler/optimizing/
nodes.cc
35
if (!visited.
IsBitSet
(i)) {
54
if (visited->
IsBitSet
(id)) return;
60
if (visiting->
IsBitSet
(successor->GetBlockId())) {
104
if (visited.
IsBitSet
(second->GetBlockId())) {
235
if (blocks_.
IsBitSet
(block->GetBlockId())) {
271
return blocks_.
IsBitSet
(block.GetBlockId());
275
return other.blocks_.
IsBitSet
(header_->GetBlockId());
stack_map_test.cc
27
if (region.LoadBit(i) != bit_vector.
IsBitSet
(i)) {
liveness_test.cc
37
buffer << vector->
IsBitSet
(i);
ssa_liveness_analysis.cc
53
if (visited->
IsBitSet
(block->GetBlockId())) {
find_loops_test.cc
129
ASSERT_TRUE(blocks.
IsBitSet
(blocks_in_loop[i]));
register_allocator.cc
254
if (liveness_of_spill_slot->
IsBitSet
(j)) {
271
if (liveness_of_register->
IsBitSet
(j)) {
[
all
...]
/art/compiler/dex/
mir_graph.cc
545
bool in_try_block = try_block_addr->
IsBitSet
(cur_offset);
[
all
...]
ssa_transformation.cc
217
if ((curr_bb->taken != NullBasicBlockId) && curr_bb->dominators->
IsBitSet
(curr_bb->taken)) {
530
if (!phi_bb->data_flow_info->live_in_v->
IsBitSet
(dalvik_reg)) {
mir_optimization.cc
92
if (!is_constant_v_->
IsBitSet
(mir->ssa_rep->uses[i])) break;
[
all
...]
vreg_analysis.cc
446
loc[i].is_const = is_constant_v_->
IsBitSet
(i);
mir_graph.h
710
return is_constant_v_->
IsBitSet
(s_reg);
[
all
...]
local_value_numbering.cc
509
bool live = live_in_v->
IsBitSet
(gvn_->GetMirGraph()->SRegToVReg(entry.first));
532
bool live_and_same = live_in_v->
IsBitSet
(gvn_->GetMirGraph()->SRegToVReg(entry.first));
[
all
...]
mir_dataflow.cc
902
if (!def_v->
IsBitSet
(dalvik_reg_id)) {
[
all
...]
/art/runtime/
stack_map.h
187
region.StoreBit(i, sp_map.
IsBitSet
(i));
oat_file.cc
555
if (!BitVector::
IsBitSet
(bitmap_, method_index)) {
Completed in 1040 milliseconds