Home
last modified time | relevance | path

Searched refs:byte_size (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dmemswap.c6 void mem_bswap_32(void *src, int byte_size) in mem_bswap_32() argument
9 while (byte_size > 0) { in mem_bswap_32()
11 byte_size -= sizeof(u32); in mem_bswap_32()
16 void mem_bswap_64(void *src, int byte_size) in mem_bswap_64() argument
20 while (byte_size > 0) { in mem_bswap_64()
22 byte_size -= sizeof(u64); in mem_bswap_64()
H A Dmemswap.h12 void mem_bswap_64(void *src, int byte_size);
13 void mem_bswap_32(void *src, int byte_size);
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/
H A D0001-Bug-fix-for-data-type-length-judgment.patch7 if (byte_size == sizeof(long)) {
31 @@ -190,7 +190,7 @@ static bool get_integer_base_type(enum arg_type *type, int byte_size,
35 - if (byte_size == sizeof(long)) {
36 + if (byte_size == sizeof(long long)) {
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp_log.c33 byte_size = 3, in mod_hdcp_dump_binary_message() local
38 uint32_t target_size = (byte_size * bytes_per_line + newline_size) * line_count + in mod_hdcp_dump_binary_message()
39 byte_size * trailing_bytes + newline_size + terminator_size; in mod_hdcp_dump_binary_message()
48 buf_pos += byte_size; in mod_hdcp_dump_binary_message()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_send.c390 u32 *byte_size, in dr_get_tbl_copy_details() argument
396 if (htbl->chunk->byte_size > dmn->send_ring->max_post_send_size) { in dr_get_tbl_copy_details()
397 *iterations = htbl->chunk->byte_size / in dr_get_tbl_copy_details()
399 *byte_size = dmn->send_ring->max_post_send_size; in dr_get_tbl_copy_details()
400 alloc_size = *byte_size; in dr_get_tbl_copy_details()
401 *num_stes = *byte_size / DR_STE_SIZE; in dr_get_tbl_copy_details()
447 u32 byte_size = htbl->chunk->byte_size; in mlx5dr_send_postsend_htbl() local
455 ret = dr_get_tbl_copy_details(dmn, htbl, &data, &byte_size, in mlx5dr_send_postsend_htbl()
462 u32 ste_index = i * (byte_size / DR_STE_SIZE); in mlx5dr_send_postsend_htbl()
487 send_info.write.length = byte_size; in mlx5dr_send_postsend_htbl()
[all …]
H A Ddr_icm_pool.c250 chunk->byte_size = chunk->num_of_entries * bucket->entry_size; in dr_icm_chunks_create()
H A Ddr_types.h816 u32 byte_size; member
/OK3568_Linux_fs/u-boot/cmd/
H A Dpci.c353 int byte_size; in pci_cfg_display() local
356 byte_size = pci_byte_size(size); in pci_cfg_display()
358 length = 0x40 / byte_size; /* Standard PCI config space */ in pci_cfg_display()
363 nbytes = length * byte_size; in pci_cfg_display()
367 for (i = 0; i < linebytes; i += byte_size) { in pci_cfg_display()
372 addr += byte_size; in pci_cfg_display()
/OK3568_Linux_fs/kernel/sound/hda/
H A Dhdac_stream.c682 unsigned int byte_size, struct snd_dma_buffer *bufp) in snd_hdac_dsp_prepare() argument
699 byte_size, bufp); in snd_hdac_dsp_prepare()
704 azx_dev->bufsize = byte_size; in snd_hdac_dsp_prepare()
705 azx_dev->period_bytes = byte_size; in snd_hdac_dsp_prepare()
716 err = setup_bdle(bus, bufp, azx_dev, &bdl, 0, byte_size, 0); in snd_hdac_dsp_prepare()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/pidgin/pidgin-sipe/
H A D0001-Migrate-to-use-g_memdup2.patch18 g_memdup2(gconstpointer mem, gsize byte_size) {
21 if(mem && byte_size != 0) {
22 new_mem = g_malloc (byte_size);
23 memcpy (new_mem, mem, byte_size);
/OK3568_Linux_fs/kernel/drivers/oprofile/
H A Dcpu_buffer.c69 unsigned long byte_size = buffer_size * (sizeof(struct op_sample) + in alloc_cpu_buffers() local
72 op_ring_buffer = ring_buffer_alloc(byte_size, OP_BUFFER_FLAGS); in alloc_cpu_buffers()
/OK3568_Linux_fs/u-boot/drivers/crypto/rockchip/
H A Dcrypto_v2_pka.c820 u32 byte_size = word_size * sizeof(u32); in rk_mpa_alloc() local
835 tmp_mpa->d = memalign(alignment, byte_size); in rk_mpa_alloc()
842 memcpy(tmp_mpa->d, data, byte_size); in rk_mpa_alloc()
844 memset(tmp_mpa->d, 0x00, byte_size); in rk_mpa_alloc()
/OK3568_Linux_fs/kernel/sound/soc/intel/skylake/
H A Dskl-sst-dsp.h163 unsigned int byte_size,
/OK3568_Linux_fs/kernel/include/sound/
H A Dhdaudio.h614 unsigned int byte_size, struct snd_dma_buffer *bufp);
626 unsigned int byte_size, struct snd_dma_buffer *bufp) in snd_hdac_dsp_prepare() argument
/OK3568_Linux_fs/kernel/sound/pci/hda/
H A Dhda_controller.c968 unsigned int byte_size, in snd_hda_codec_load_dsp_prepare() argument
987 err = snd_hdac_dsp_prepare(hstr, format, byte_size, bufp); in snd_hda_codec_load_dsp_prepare()