Home
last modified time | relevance | path

Searched refs:kMaxInObjectProperties (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dglobals.h84 const int kMaxFastLiteralProperties = JSObject::kMaxInObjectProperties;
/third_party/node/deps/v8/src/objects/
Djs-function.cc1276 if (expected_nof_properties <= JSObject::kMaxInObjectProperties - count) { in CalculateExpectedNofProperties()
1279 return JSObject::kMaxInObjectProperties; in CalculateExpectedNofProperties()
1293 if (expected_nof_properties > JSObject::kMaxInObjectProperties) { in CalculateExpectedNofProperties()
1294 expected_nof_properties = JSObject::kMaxInObjectProperties; in CalculateExpectedNofProperties()
1314 CHECK_LE(max_nof_fields, JSObject::kMaxInObjectProperties); in CalculateInstanceSizeHelper()
Dshared-function-info.cc603 STATIC_ASSERT(JSObject::kMaxInObjectProperties <= kMaxUInt8); in UpdateExpectedNofPropertiesFromEstimate()
622 STATIC_ASSERT(JSObject::kMaxInObjectProperties <= kMaxUInt8); in UpdateAndFinalizeExpectedNofPropertiesFromEstimate()
Djs-objects.h845 static const int kMaxInObjectProperties = variable
847 STATIC_ASSERT(kMaxInObjectProperties <= kMaxNumberOfDescriptors);
Dmap.cc1672 if (inobject_properties > JSObject::kMaxInObjectProperties) { in Create()
1673 inobject_properties = JSObject::kMaxInObjectProperties; in Create()