Home
last modified time | relevance | path

Searched refs:padding_bytes (Results 1 - 10 of 10) sorted by relevance

/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dstruct_layout.rs134 self.latest_offset += self.padding_bytes(layout) + layout.size; in saw_base()
201 let padding_bytes = match field_offset { in saw_field_with_layout()
212 self.padding_bytes(field_layout) in saw_field_with_layout()
214 self.padding_bytes(l) in saw_field_with_layout()
221 self.latest_offset += padding_bytes; in saw_field_with_layout()
230 padding_bytes >= field_layout.align || in saw_field_with_layout()
235 self.latest_offset - padding_bytes, in saw_field_with_layout()
244 padding_bytes, in saw_field_with_layout()
254 if need_padding && padding_bytes != 0 { in saw_field_with_layout()
255 Some(Layout::new(padding_bytes, padding_alig in saw_field_with_layout()
383 fn padding_bytes(&self, layout: Layout) -> usize { padding_bytes() functions
[all...]
/third_party/ffmpeg/libavformat/
H A Did3v2enc.c422 int padding_bytes) in ff_id3v2_finish()
426 if (padding_bytes < 0) in ff_id3v2_finish()
427 padding_bytes = 10; in ff_id3v2_finish()
435 padding_bytes = av_clip(padding_bytes, 10, 268435455 - id3->len); in ff_id3v2_finish()
436 ffio_fill(pb, 0, padding_bytes); in ff_id3v2_finish()
437 id3->len += padding_bytes; in ff_id3v2_finish()
421 ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb, int padding_bytes) ff_id3v2_finish() argument
H A Did3v2.h150 void ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb, int padding_bytes);
/third_party/node/deps/v8/src/diagnostics/
H A Dperf-jit.cc405 char padding_bytes[8] = {0}; in LogWriteDebugInfo() local
406 LogWriteBytes(padding_bytes, padding); in LogWriteDebugInfo()
473 char padding_bytes[8] = {0}; in LogWriteDebugInfo() local
474 LogWriteBytes(padding_bytes, padding); in LogWriteDebugInfo()
508 char padding_bytes[] = "\0\0\0\0\0\0\0\0"; in LogWriteUnwindingInfo() local
509 DCHECK_LT(padding_size, static_cast<int>(sizeof(padding_bytes))); in LogWriteUnwindingInfo()
510 LogWriteBytes(padding_bytes, static_cast<int>(padding_size)); in LogWriteUnwindingInfo()
/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h153 IMGUI_API void* ImFileLoadToMemory(const char* filename, const char* file_open_mode, size_t* out_file_size = NULL, int padding_bytes = 0);
H A Dimgui.cpp1528 void* ImFileLoadToMemory(const char* filename, const char* file_open_mode, size_t* out_file_size, int padding_bytes) in ImFileLoadToMemory() argument
1546 void* file_data = ImGui::MemAlloc(file_size + padding_bytes); in ImFileLoadToMemory()
1558 if (padding_bytes > 0) in ImFileLoadToMemory()
1559 memset((void*)(((char*)file_data) + file_size), 0, (size_t)padding_bytes); in ImFileLoadToMemory()
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1606 void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size, int padding_bytes) in ImFileLoadToMemory() argument
1623 void* file_data = IM_ALLOC(file_size + padding_bytes); in ImFileLoadToMemory()
1635 if (padding_bytes > 0) in ImFileLoadToMemory()
1636 memset((void*)(((char*)file_data) + file_size), 0, (size_t)padding_bytes); in ImFileLoadToMemory()
H A Dimgui_internal.h381 IMGUI_API void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size = NULL, int padding_bytes = 0);
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_msl.cpp4022 uint32_t padding_bytes = spirv_mbr_offset - aligned_msl_offset; in align_struct() local
4023 set_extended_member_decoration(ib_type_id, mbr_idx, SPIRVCrossDecorationPaddingTarget, padding_bytes); in align_struct()
4026 msl_offset += padding_bytes; in align_struct()
/third_party/mesa3d/src/amd/compiler/
H A Daco_instruction_selection.cpp4240 int padding_bytes =
4244 aco_opcode::p_create_vector, Format::PSEUDO, info.num_components + !!padding_bytes, 1)};
4247 if (padding_bytes)
4248 vec->operands[info.num_components] = Operand(RegClass::get(RegType::vgpr, padding_bytes));

Completed in 102 milliseconds