Lines Matching refs:objs

127   virtual void *add_stack (Vector<Histable*> *objs);
144 CallStackNode *add_stack (long start, long end, Vector<Histable*> *objs, CallStackNode *myRoot);
148 void *add_stack_d (Vector<Histable*> *objs);
994 CallStackP::add_stack_d (Vector<Histable*> *objs) in add_stack_d() argument
998 for (int i = 0, j = objs->size () - 1; i < j; ++i, --j) in add_stack_d()
999 objs->swap (i, j); in add_stack_d()
1000 return add_stack (objs); in add_stack_d()
1013 CallStackNode::compare (long start, long end, Vector<Histable*> *objs, CallStackNode *mRoot) in compare() argument
1017 if (p == NULL || p->get_instr () != objs->get (i)) in compare()
1040 CallStackP::add_stack (Vector<Histable*> *objs) in add_stack() argument
1043 uint64_t hash = objs->size (); in add_stack()
1044 for (long i = objs->size () - 1; i >= 0; --i) in add_stack()
1045 hash ^= (unsigned long long) objs->get (i); in add_stack()
1053 call_stack_size[objs->size () > 200 ? 200 : objs->size ()]++; in add_stack()
1056 (long long) total_calls_add_stack, (long long) objs->size (), in add_stack()
1058 for (long i = 0, sz = VecSize (objs); i < sz; i++) in add_stack()
1060 (int) i, NTXT (" "), (long long) objs->get (i), in add_stack()
1061 (long long) objs->get (i)->id, STR (objs->get (i)->get_name ())); in add_stack()
1064 if (node && node->compare (0, objs->size (), objs, root)) in add_stack()
1073 for (long i = objs->size () - 1; i >= 0; i--) in add_stack()
1075 Histable *instr = objs->get (i); in add_stack()
1105 node = new_Node (anc, objs->get (i)); in add_stack()