HomeSort by relevance Sort by last modified time
    Searched refs:objects_ (Results 1 - 17 of 17) sorted by null

  /external/vixl/src/
pool-manager-impl.h 53 if (objects_.empty()) return pc;
72 if (pc < objects_[0].min_location_) {
73 int32_t padding = objects_[0].min_location_ - pc;
82 for (objects_iter iter = objects_.begin(); iter != objects_.end();) {
207 if (objects_.empty()) {
243 const PoolObject<T>& last = objects_.back();
255 // Check (conservatively) if we can fit it into the objects_ array, without
261 // Will temp be the last object in objects_?
268 for (int i = static_cast<int>(objects_.size()) - 1; i >= 0; --i)
    [all...]
pool-manager.h 459 for (const_objects_iter iter = objects_.begin(); iter != objects_.end();
471 // Comparison function for using std::sort() on objects_. PoolObject A is
483 // Helper function to add a new object into a sorted objects_ array.
486 // Helper functions to remove an object from objects_ and delete the
504 bool PoolIsEmptyForTest() const { return objects_.empty(); }
508 // The objects we are tracking references to. The objects_ vector is sorted
513 std::vector<PoolObject<T> > objects_; member in class:vixl::PoolManager
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
object_tracker.cc 63 for (TrackedObjectMap::iterator iter = objects_.begin();
64 iter != objects_.end(); iter++) {
132 if (config_->always_track || objects_.size() > 0) {
133 LOGV("Tracking %zu targets", objects_.size());
154 if (objects_.find(id) != objects_.end()) {
155 return objects_[id];
169 objects_[id] = object;
191 if (objects_.find(id) == objects_.end())
    [all...]
object_tracker.h 118 return objects_.find(id) != objects_.end();
123 TrackedObjectMap::const_iterator iter = objects_.find(id);
124 CHECK_ALWAYS(iter != objects_.end(),
132 TrackedObjectMap::iterator iter = objects_.find(id);
133 CHECK_ALWAYS(iter != objects_.end(),
203 TrackedObjectMap objects_; member in class:tf_tracking::ObjectTracker
263 stream << tracker.objects_;
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
rpc_rendezvous_mgr.cc 166 for (size_t i = 0; i < objects_.size(); i++) {
167 delete objects_[i];
174 if (!objects_.empty()) {
175 RpcRecvTensorCall* result = objects_.back();
176 objects_.pop_back();
187 if (objects_.size() < kMaxObjects) {
188 objects_.push_back(obj);
199 std::vector<RpcRecvTensorCall*> objects_ GUARDED_BY(mu_);
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 94 const std::vector<Object> &objects() const { return objects_; }
103 std::vector<Object> objects_; member in class:Simulation
Simulation.cpp 246 objects_.reserve(object_count);
251 objects_.emplace_back(Object{
260 for (auto &obj : objects_) {
268 auto &obj = objects_[i];
  /frameworks/base/media/mca/filterfw/jni/
jni_util.h 117 objects_[id] = object;
125 typename CObjMap::const_iterator iter = objects_.find(obj_id);
126 return iter == objects_.end() ? NULL : iter->second;
154 typename CObjMap::iterator iter = objects_.find(obj_id);
155 const bool found = iter != objects_.end();
159 objects_.erase(iter);
178 return objects_.size();
198 CObjMap objects_; member in class:ObjectPool
  /toolchain/binutils/binutils-2.27/gold/
cref.cc 47 : objects_(), archives_(), current_(&this->objects_)
116 Objects objects_; member in class:gold::Cref_inputs
137 gold_assert(this->current_ == &this->objects_);
153 gold_assert(this->current_ != &this->objects_);
154 this->current_ = &this->objects_;
203 this->print_objects_symbol_counts(symtab, f, &this->objects_);
290 this->gather_cref(&this->objects_, &table);
plugin.h 131 : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL),
238 if (handle >= this->objects_.size())
240 return this->objects_[handle];
341 Object_list objects_; member in class:gold::Plugin_manager
plugin.cc 458 for (Object_list::iterator obj = this->objects_.begin();
459 obj != this->objects_.end();
462 this->objects_.clear();
491 unsigned int handle = this->objects_.size();
499 this->objects_.push_back(elf_object);
511 if (this->objects_.size() > handle
512 && this->objects_[handle]->pluginobj() != NULL)
513 return this->objects_[handle]->pluginobj();
760 if (this->objects_.size() != handle
761 && this->objects_[handle]->pluginobj() != NULL
    [all...]
incremental.h 310 objects_()
317 this->objects_.push_back(obj_entry);
323 { return this->objects_.size(); }
329 gold_assert(n < this->objects_.size());
330 return this->objects_[n];
345 std::vector<Incremental_input_entry*> objects_; member in class:gold::Incremental_script_entry
    [all...]
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 814 explicit HCheckMapsEffects(Zone* zone) : objects_(0, zone) { }
825 objects_.Add(store->object(), zone);
830 objects_.Add(HTransitionElementsKind::cast(instr)->object(), zone);
854 for (int i = 0; i < objects_.length(); ++i) {
855 table->Kill(objects_[i]->ActualValue());
862 for (int i = 0; i < that->objects_.length(); ++i) {
863 objects_.Add(that->objects_[i], zone);
868 ZoneList<HValue*> objects_; variable
  /external/v8/src/compiler/
escape-analysis.cc 297 : states_(zone), objects_(zone), fields_(zone) {
299 objects_.reserve(5);
303 ZoneVector<VirtualObject*>& objects() { return objects_; }
307 objects_.clear();
317 ZoneVector<VirtualObject*> objects_; member in class:v8::internal::compiler::MergeCache
324 objects_.clear();
329 objects_.push_back(obj);
338 objects_.clear();
344 objects_.push_back(obj);
351 Node* rep = pos >= objects_.front()->field_count(
    [all...]
instruction-selector.cc 479 explicit StateObjectDeduplicator(Zone* zone) : objects_(zone) {}
483 for (size_t i = 0; i < objects_.size(); ++i) {
484 if (objects_[i] == node) {
492 size_t id = objects_.size();
493 objects_.push_back(node);
498 ZoneVector<Node*> objects_; member in class:v8::internal::compiler::StateObjectDeduplicator
    [all...]
  /external/vixl/test/
test-pool-manager.cc 291 printf("Number of objects: %d\n", static_cast<int>(objects_.size())));
294 for (int i = 0; i < static_cast<int>(objects_.size()); ++i) {
295 const PoolObject<int32_t> &object = objects_[i];
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 2162 List<Handle<JSGlobalObject> > objects_; member in class:v8::internal::GlobalObjectsEnumerator
    [all...]

Completed in 591 milliseconds