Home
last modified time | relevance | path

Searched refs:pad (Results 151 - 175 of 606) sorted by relevance

12345678910>>...25

/third_party/ffmpeg/libavformat/
H A Dwtvenc.c173 // update the chunk_len field and pad. in finish_chunk_noindex()
381 int i, pad, ret; in write_header() local
403 pad = (1 << WTV_SECTOR_BITS) - avio_tell(pb); in write_header()
404 write_pad(pb, pad); in write_header()
509 int pad = 0; in write_table0_header_legacy_attrib() local
513 pad = WTV_PAD8(sizeof(legacy_attrib)) - sizeof(legacy_attrib); in write_table0_header_legacy_attrib()
514 write_pad(pb, pad); in write_table0_header_legacy_attrib()
542 int size, pad; in write_root_table() local
579 pad = WTV_SECTOR_SIZE- size; in write_root_table()
580 write_pad(pb, pad); in write_root_table()
731 int sector_bits, nb_sectors, pad; finish_file() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/
H A Dtlv_util.cpp372 NG::PaddingProperty pad; in ReadPaddingProperty() local
374 return pad; in ReadPaddingProperty()
380 pad.left = ReadCalcLength(buff, cursor); in ReadPaddingProperty()
384 pad.top = ReadCalcLength(buff, cursor); in ReadPaddingProperty()
388 pad.bottom = ReadCalcLength(buff, cursor); in ReadPaddingProperty()
392 pad.right = ReadCalcLength(buff, cursor); in ReadPaddingProperty()
399 return pad; in ReadPaddingProperty()
/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/mock/
H A Dmeta_file_clouddisk_mock.cpp152 uint32_t pad = static_cast<uint32_t>(len) | (static_cast<uint32_t>(len) << 8); in Str2HashBuf() local
153 pad |= pad << 16; /* hash pad length 16 */ in Str2HashBuf()
155 uint32_t val = pad; in Str2HashBuf()
159 val = pad; in Str2HashBuf()
165 val = pad; in Str2HashBuf()
173 *buf++ = pad; in Str2HashBuf()
/third_party/ffmpeg/libavfilter/
H A Dsrc_movie.c310 AVFilterPad pad = { 0 }; in movie_common_init() local
312 pad.type = movie->st[i].st->codecpar->codec_type; in movie_common_init()
313 pad.name = av_asprintf("out%d", i); in movie_common_init()
314 if (!pad.name) in movie_common_init()
316 pad.config_props = movie_config_output_props; in movie_common_init()
317 pad.request_frame = movie_request_frame; in movie_common_init()
318 if ((ret = ff_append_outpad_free_name(ctx, &pad)) < 0) in movie_common_init()
H A Dvf_premultiply.c780 AVFilterPad pad = { 0 }; in init() local
786 pad.type = AVMEDIA_TYPE_VIDEO; in init()
787 pad.name = "main"; in init()
788 pad.config_props = config_input; in init()
790 if ((ret = ff_append_inpad(ctx, &pad)) < 0) in init()
794 pad.type = AVMEDIA_TYPE_VIDEO; in init()
795 pad.name = "alpha"; in init()
796 pad.config_props = NULL; in init()
798 if ((ret = ff_append_inpad(ctx, &pad)) < 0) in init()
H A Dvf_extractplanes.c379 AVFilterPad pad = { 0 }; in init() local
388 pad.name = name; in init()
389 pad.type = AVMEDIA_TYPE_VIDEO; in init()
390 pad.config_props = config_output; in init()
392 if ((ret = ff_append_outpad_free_name(ctx, &pad)) < 0) in init()
H A Davf_aphasemeter.c352 AVFilterPad pad; in init() local
355 pad = (AVFilterPad){ in init()
359 ret = ff_append_outpad(ctx, &pad); in init()
364 pad = (AVFilterPad){ in init()
369 ret = ff_append_outpad(ctx, &pad); in init()
H A Dvf_mergeplanes.c107 AVFilterPad pad = { 0 }; in init() local
109 pad.type = AVMEDIA_TYPE_VIDEO; in init()
110 pad.name = av_asprintf("in%d", i); in init()
111 if (!pad.name) in init()
114 if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0) in init()
/third_party/mesa3d/include/drm-uapi/
H A Ddrm.h598 __u32 pad; member
859 __u32 pad; member
869 __u32 pad; member
878 __u32 pad; member
891 __u32 pad; member
903 __u32 pad; member
910 __u32 pad; member
H A Ddrm_mode.h511 /** @pad: Padding, must be zero. */
512 __u32 pad; member
992 __u32 pad; member
1072 __u32 pad; member
1144 /** @pad: Padding. */
1145 __u32 pad; member
1171 /** @pad: Padding. */
1172 __u32 pad; member
/third_party/libdrm/include/drm/
H A Ddrm.h598 __u32 pad; member
859 __u32 pad; member
869 __u32 pad; member
878 __u32 pad; member
891 __u32 pad; member
903 __u32 pad; member
910 __u32 pad; member
H A Ddrm_mode.h479 /** @pad: Padding, must be zero. */
480 __u32 pad; member
908 __u32 pad; member
988 __u32 pad; member
1060 /** @pad: Padding. */
1061 __u32 pad; member
1087 /** @pad: Padding. */
1088 __u32 pad; member
/third_party/pulseaudio/src/modules/rtp/
H A Drtp-gstreamer.c375 static void on_pad_added(GstElement *element, GstPad *pad, gpointer userdata) { in on_pad_added() argument
386 ret = gst_pad_link(pad, sinkpad); in on_pad_added()
406 static GstPadProbeReturn udpsrc_buffer_probe(GstPad *pad, GstPadProbeInfo *info, gpointer userdata) { in udpsrc_buffer_probe() argument
426 GstPad *pad; in init_receive_pipeline() local
498 g_signal_connect(G_OBJECT(rtpbin), "pad-added", G_CALLBACK(on_pad_added), c); in init_receive_pipeline()
504 pad = gst_element_get_static_pad(udpsrc, "src"); in init_receive_pipeline()
505 gst_pad_add_probe(pad, GST_PAD_PROBE_TYPE_BUFFER, udpsrc_buffer_probe, c, NULL); in init_receive_pipeline()
506 gst_object_unref(pad); in init_receive_pipeline()
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_idct_10bit.asm513 %assign pad 16-gprsize-(stack_offset&15)
514 sub rsp, pad
516 add rsp, pad
523 %assign pad 256+16-gprsize
524 sub rsp, pad
605 add rsp, pad
637 %assign pad 16-gprsize-(stack_offset&15)
638 SUB rsp, pad
648 ADD rsp, pad
/foundation/communication/dsoftbus/core/common/include/
H A Dsoftbus_queue.h42 uint8_t pad[56]; /* cache line pad */ member
50 uint8_t pad[48]; /* cache line pad */ member
59 uint8_t pad[48]; /* cache line pad */ member
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dspirv_target_env.cpp380 std::string spvTargetEnvList(const int pad, const int wrap) { in spvTargetEnvList() argument
382 size_t max_line_len = wrap - pad; // The first line isn't padded in spvTargetEnvList()
392 line.assign(pad, ' '); in spvTargetEnvList()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dspirv_target_env.cpp380 std::string spvTargetEnvList(const int pad, const int wrap) { in spvTargetEnvList() argument
382 size_t max_line_len = wrap - pad; // The first line isn't padded in spvTargetEnvList()
392 line.assign(pad, ' '); in spvTargetEnvList()
/third_party/skia/bench/
H A DBlurRectBench.cpp60 SkScalar pad = fRadius*3/2 + SK_Scalar1; variable
61 SkRect r = SkRect::MakeWH(2 * pad + SK_Scalar1, 2 * pad + SK_Scalar1);
/third_party/spirv-tools/source/
H A Dspirv_target_env.cpp401 std::string spvTargetEnvList(const int pad, const int wrap) { in spvTargetEnvList() argument
403 size_t max_line_len = wrap - pad; // The first line isn't padded in spvTargetEnvList()
413 line.assign(pad, ' '); in spvTargetEnvList()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c345 unsigned int len = (i == (x4 - 1) ? last : frag), pad, j; in tls1_multi_block_encrypt() local
365 /* pad */ in tls1_multi_block_encrypt()
366 pad = 15 - len % 16; in tls1_multi_block_encrypt()
367 for (j = 0; j <= pad; j++) in tls1_multi_block_encrypt()
368 *(out++) = pad; in tls1_multi_block_encrypt()
369 len += pad + 1; in tls1_multi_block_encrypt()
466 /* pad the payload|hmac */ in aesni_cbc_hmac_sha256_cipher()
492 unsigned int res, maxpad, pad, bitlen; in aesni_cbc_hmac_sha256_cipher() local
511 pad = out[len - 1]; in aesni_cbc_hmac_sha256_cipher()
516 mask = constant_time_ge(maxpad, pad); in aesni_cbc_hmac_sha256_cipher()
[all...]
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha256_hw.c345 unsigned int len = (i == (x4 - 1) ? last : frag), pad, j; in tls1_multi_block_encrypt() local
365 /* pad */ in tls1_multi_block_encrypt()
366 pad = 15 - len % 16; in tls1_multi_block_encrypt()
367 for (j = 0; j <= pad; j++) in tls1_multi_block_encrypt()
368 *(out++) = pad; in tls1_multi_block_encrypt()
369 len += pad + 1; in tls1_multi_block_encrypt()
466 /* pad the payload|hmac */ in aesni_cbc_hmac_sha256_cipher()
492 unsigned int res, maxpad, pad, bitlen; in aesni_cbc_hmac_sha256_cipher() local
511 pad = out[len - 1]; in aesni_cbc_hmac_sha256_cipher()
516 mask = constant_time_ge(maxpad, pad); in aesni_cbc_hmac_sha256_cipher()
[all...]
/third_party/node/lib/internal/test_runner/
H A Dutils.js318 function getCoverageReport(pad, summary, symbol, color, table) {
319 const prefix = `${pad}${symbol}`;
364 function getCell(string, width, pad, truncate, coverage) {
368 if (pad) result = pad(result, width);
/third_party/python/Objects/stringlib/
H A Dtransmogrify.h106 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill) in pad() function
154 return pad(self, 0, width - STRINGLIB_LEN(self), fillchar); in stringlib_ljust_impl()
178 return pad(self, width - STRINGLIB_LEN(self), 0, fillchar); in stringlib_rjust_impl()
207 return pad(self, left, marg - left, fillchar); in stringlib_center_impl()
235 s = pad(self, fill, 0, '0'); in stringlib_zfill_impl()
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dclat_utils.h62 char pad; // +1 to make packet truncation obvious member
68 char pad; // +1 to make packet truncation obvious member
/third_party/elfutils/backends/
H A Di386_corenote.c48 { .offset = at * 4, .regno = dwreg, .count = n, .bits = 16, .pad = 2 }
102 { .offset = 32, .regno = 11, .count = 8, .bits = 80, .pad = 6 }, /* stN */

Completed in 26 milliseconds

12345678910>>...25