Searched refs:nof (Results 1 - 8 of 8) sorted by relevance

/external/v8/src/
H A Dhandles.h260 void SetExpectedNofProperties(Handle<JSFunction> func, int nof);
H A Dhandles.cc157 void SetExpectedNofProperties(Handle<JSFunction> func, int nof) { argument
165 func->shared()->set_expected_nof_properties(nof);
170 new_initial_map->set_unused_property_fields(nof);
H A Dobjects-inl.h1891 int nof = number_of_descriptors(); local
1892 if (nof == 0) return kNotFound;
1896 if (StringShape(name).IsSymbol() && nof < kMaxElementsForLinearSearch) {
1897 return LinearSearch(name, nof);
1901 return BinarySearch(name, 0, nof - 1);
H A Dobjects.cc10989 int nof = NumberOfElements() + n; local
10994 if (nod <= (capacity - nof) >> 1) {
10995 int needed_free = nof >> 1;
10996 if (nof + needed_free <= capacity) return this;
11004 Allocate(nof * 2, pretenure ? TENURED : NOT_TENURED);
11015 int nof = NumberOfElements(); local
11019 if (nof > (capacity >> 2)) return this;
11024 int at_least_room_for = nof;
H A Dobjects.h2819 void SetNumberOfElements(int nof) { argument
2820 set(kNumberOfElementsIndex, Smi::FromInt(nof));
H A Dhydrogen.cc3709 int nof = boilerplate->map()->inobject_properties(); local
3710 for (int i = 0; i < nof; i++) {
H A Druntime.cc164 int nof = copy->map()->inobject_properties(); local
165 for (int i = 0; i < nof; i++) {
/external/v8/test/cctest/
H A Dtest-api.cc10826 const int nof = 2; local
10827 const char* sources[nof] = {
10832 for (int i = 0; i < nof; i++) {

Completed in 243 milliseconds