Home
last modified time | relevance | path

Searched refs:space_name (Results 1 – 9 of 9) sorted by relevance

/third_party/node/test/parallel/
Dtest-worker-resource-limits.js44 for (const { space_name, space_size } of v8.getHeapSpaceStatistics()) { property
45 if (space_name === 'new_space') {
49 } else if (space_name === 'old_space') {
52 } else if (space_name === 'code_space') {
Dtest-v8-stats.js48 const actualHeapSpaceNames = heapSpaceStatistics.map((s) => s.space_name);
51 assert.strictEqual(typeof heapSpace.space_name, 'string');
/third_party/node/doc/api/
Dv8.md96 * `space_name` {string}
105 "space_name": "new_space",
112 "space_name": "old_space",
119 "space_name": "code_space",
126 "space_name": "map_space",
133 "space_name": "large_object_space",
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/
Dgen_knobs.h150 def space_name(name, max_len):
Dgen_knobs.cpp139 def space_name(name, max_len):
/third_party/node/lib/
Dv8.js187 space_name: kHeapSpaces[i], property
/third_party/node/src/
Dnode_v8.cc197 heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.space_name()) in Initialize()
Denv.cc1160 if (strcmp(stats.space_name(), "new_space") == 0 || in NearHeapLimitCallback()
1161 strcmp(stats.space_name(), "new_large_object_space") == 0) { in NearHeapLimitCallback()
Dnode_report.cc592 writer->json_objectstart(v8_heap_space_stats.space_name()); in PrintGCStatistics()