Home
last modified time | relevance | path

Searched refs:body_size (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dcode-desc.h67 int body_size() const { return instr_size + unwinding_info_size; } in body_size() function
69 int metadata_size() const { return body_size() - instruction_size(); } in metadata_size()
/third_party/ffmpeg/libavformat/
Diff.c112 uint32_t body_size; member
377 iff->body_size = iff->body_end - iff->body_pos; in read_dst_frame()
508 iff->body_size = data_size; in iff_read_header()
852 if (iff->body_size > INT_MAX || !iff->body_size) in iff_read_packet()
854 ret = av_get_packet(pb, pkt, iff->body_size); in iff_read_packet()
888 if (iff->body_size > INT_MAX || !iff->body_size) in iff_read_packet()
890 ret = av_get_packet(pb, pkt, iff->body_size); in iff_read_packet()
/third_party/mesa3d/src/panfrost/lib/tests/
Dtest-layout.cpp388 EXPECT_EQ(l.slices[0].afbc.body_size, 32768); in TEST()
428 EXPECT_EQ(l.slices[0].afbc.body_size, 2097152); in TEST()
455 EXPECT_EQ(l.slices[0].afbc.body_size, 32 * 8); in TEST()
483 EXPECT_EQ(l.slices[0].afbc.body_size, 32 * 8 * 8 * 8); in TEST()
/third_party/mesa3d/src/panfrost/lib/
Dpan_layout.c408 slice->afbc.body_size = slice_one_size; in pan_image_layout_init()
418 slice->afbc.body_size *= depth; in pan_image_layout_init()
Dpan_texture.h70 unsigned body_size; member
Dpan_cs.c520 cfg->afbc.body_size = slice->afbc.body_size; in pan_prepare_rt()
/third_party/node/deps/v8/src/objects/
Dcode.h570 static int SizeFor(int body_size) { in SizeFor() argument
571 return RoundUp(kHeaderSize + body_size, kCodeAlignment); in SizeFor()
/third_party/mesa3d/docs/relnotes/
D21.0.3.rst59 - panfrost: Fix AFBC body_size for shared resources
D21.0.0.rst646 - panfrost: Add AFBC slice.body_size and slice.{row,surface}_stride fields
D21.1.0.rst715 - panfrost: Fix AFBC body_size for shared resources
/third_party/node/deps/v8/src/wasm/
Dwasm-code-manager.h1032 static size_t EstimateLiftoffCodeSize(int body_size);
Dwasm-code-manager.cc2064 size_t WasmCodeManager::EstimateLiftoffCodeSize(int body_size) { in EstimateLiftoffCodeSize() argument
2066 body_size * kLiftoffCodeSizeMultiplier; in EstimateLiftoffCodeSize()
/third_party/node/deps/v8/src/heap/
Dfactory.cc276 const int object_size = Code::SizeFor(code_desc_.body_size()); in AllocateCode()
308 const int object_size = Code::SizeFor(code_desc_.body_size()); in AllocateConcurrentSparkplugCode()
/third_party/glib/patch/
Dbackport-CVE-2023-24593_CVE-2023-25180-1.patch118 @@ -635,30 +635,62 @@ gvs_calculate_total_size (gsize body_size,
119 return body_size + 8 * offsets;
/third_party/node/deps/v8/src/compiler/
Dpipeline.cc3232 int codesize = result->code_desc.body_size(); in GenerateCodeForWasmFunction()
Dwasm-compiler.cc8106 int codesize = result.code_desc.body_size(); in CompileWasmImportCallWrapper()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc6645 int codesize = result.code_desc.body_size(); in ExecuteLiftoffCompilation()