OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_slot
(Results
1 - 3
of
3
) sorted by null
/system/extras/tests/bootloader/
haltest.py
72
new_slot
= (slot + 1) % num_slots
73
self.assertTrue(self.bootctl.set_active_boot_slot(
new_slot
))
80
self.assertEqual(
new_slot
, self.bootctl.get_current_slot())
94
new_slot
= (slot + 1) % num_slots
97
self.assertTrue(self.bootctl.set_active_boot_slot(
new_slot
))
98
self.assertTrue(self.bootctl.is_slot_bootable(
new_slot
))
99
self.assertTrue(self.bootctl.set_slot_as_unbootable_slot(
new_slot
))
100
self.assertFalse(self.bootctl.is_slot_bootable(
new_slot
))
106
self.assertFalse(self.bootctl.is_slot_bootable(
new_slot
))
107
self.assertTrue(self.bootctl.set_active_boot_slot(
new_slot
))
[
all
...]
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
split_collection_operators.cc
79
auto*
new_slot
= stats_proto->add_node_to_slot();
local
80
new_slot
->set_node_id(pair.first);
82
pair.second->PackToProto(
new_slot
);
84
new_slot
->set_depth(pair.second->depth());
/art/runtime/base/
mutex.cc
314
uint32_t
new_slot
;
local
317
new_slot
= (slot + 1) % kContentionLogSize;
318
} while (!data->cur_content_log_entry.CompareAndSetWeakRelaxed(slot,
new_slot
));
319
log[
new_slot
].blocked_tid = blocked_tid;
320
log[
new_slot
].owner_tid = owner_tid;
321
log[
new_slot
].count.StoreRelaxed(1);
[
all
...]
Completed in 671 milliseconds