/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/ |
H A D | oal_schedule.h | 122 [3]from 源 127 static inline hi_u32 oal_copy_from_user(hi_void *to, hi_u32 len, const hi_void *from, hi_u32 size) in oal_copy_from_user() argument 130 if (memcpy_s(to, len, from, size) != EOK) { in oal_copy_from_user() 136 return (hi_u32)copy_from_user(to, from, (hi_u32)size); in oal_copy_from_user() 144 [3]from 源 149 static inline hi_u32 oal_copy_to_user(hi_void *to, hi_u32 len, const hi_void *from, hi_u32 size) in oal_copy_to_user() argument 152 if (memcpy_s(to, len, from, size) != EOK) { in oal_copy_to_user() 158 return (hi_u32)copy_to_user(to, from, (hi_u32)size); in oal_copy_to_user()
|
H A D | oal_netbuf.h | 187 #define oal_netbuf_copy_queue_mapping(to, from)
240 #define oal_netbuf_splice_init(from, to) skb_queue_splice_init(from, to)
241 #define oal_netbuf_copy_queue_mapping(to, from) skb_copy_queue_mapping(to, from)
294 static inline void oal_netbuf_splice_sync(oal_netbuf_head_stru *to, oal_netbuf_head_stru *from)
in oal_netbuf_splice_sync() argument 299 nb = NetBufQueueDequeueTail(from);
in oal_netbuf_splice_sync()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/ |
H A D | osal_addr.c | 75 unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n) in osal_copy_from_user() argument 77 return copy_from_user(to, from, n); in osal_copy_from_user() 81 unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n) in osal_copy_to_user() argument 83 return copy_to_user(to, from, n); in osal_copy_to_user()
|
/device/soc/hisilicon/common/platform/mtd/hifmc100/spi_nor/ |
H A D | hifmc100_spi_nor.c | 204 static int32_t HifmcCntlrEraseOneBlock(struct HifmcCntlr *cntlr, struct SpiFlash *spi, off_t from) in HifmcCntlrEraseOneBlock() argument 225 reg = from; in HifmcCntlrEraseOneBlock() 244 static int32_t HifmcSpinorErase(struct MtdDevice *mtdDevice, off_t from, size_t len, off_t *failAddr) in HifmcSpinorErase() argument 261 HDF_LOGD("%s: start erase one block, addr=[%jd]", __func__, from); in HifmcSpinorErase() 263 ret = HifmcCntlrEraseOneBlock(cntlr, spi, from); in HifmcSpinorErase() 265 *failAddr = from; in HifmcSpinorErase() 269 from += mtdDevice->eraseSize; in HifmcSpinorErase() 358 HDF_LOGE("%s: copy from user failed, num = %zu", __func__, num); in HifmcCntlrDmaWriteReadOnce() 456 static int32_t HifmcSpinorRead(struct MtdDevice *mtdDevice, off_t from, size_t len, uint8_t *buf) in HifmcSpinorRead() argument 467 HDF_LOGD("%s: start read buf:%p from in HifmcSpinorRead() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_specific.h | 8 * A copy of the licence is included with the program, and can also be obtained from Free Software 61 MALI_STATIC_INLINE u32 _mali_osk_copy_from_user(void *to, void *from, u32 n) in _mali_osk_copy_from_user() argument 63 return (u32)copy_from_user(to, from, (unsigned long)n); in _mali_osk_copy_from_user()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_specific.h | 7 * A copy of the licence is included with the program, and can also be obtained from Free Software 62 MALI_STATIC_INLINE u32 _mali_osk_copy_from_user(void *to, void *from, u32 n) in _mali_osk_copy_from_user() argument 64 return (u32)copy_from_user(to, from, (unsigned long)n); in _mali_osk_copy_from_user()
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/osal/ |
H A D | osal_addr.c | 181 unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n) in osal_copy_from_user() argument 183 return copy_from_user(to, from, n); in osal_copy_from_user() 187 unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n) in osal_copy_to_user() argument 189 return copy_to_user(to, from, n); in osal_copy_to_user() 217 * Maps @size from @phys_addr into contiguous kernel virtual space 263 * which was created from the phys_addr passed to osal_vunmap()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/ |
H A D | drv_osal_sys_linux.c | 28 * if can't get cpu address from the table, then call system api to map it. 272 * if can't get cpu address from the table, then call system api to map it. in crypto_mem_map() 301 * if can't get cpu address from the table, then call system api to unmap it. in crypto_mem_unmap() 401 const hi_void *from, unsigned long from_len) in crypto_copy_from_user() 408 hi_log_chk_param_return(from == HI_NULL); in crypto_copy_from_user() 412 return (hi_s32)copy_from_user(to, from, from_len); in crypto_copy_from_user() 416 const hi_void *from, unsigned long from_len) in crypto_copy_to_user() 423 hi_log_chk_param_return(from == HI_NULL); in crypto_copy_to_user() 427 return (hi_s32)copy_to_user(to, from, from_len); in crypto_copy_to_user() 400 crypto_copy_from_user(hi_void *to, unsigned long to_len, const hi_void *from, unsigned long from_len) crypto_copy_from_user() argument 415 crypto_copy_to_user(hi_void *to, unsigned long to_len, const hi_void *from, unsigned long from_len) crypto_copy_to_user() argument
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | bcm_ring.h | 23 * derived from this software. The special exception does not apply to any 70 * - bcm_ring_sync_read: Sync read offset in peer ring, from local ring 71 * - bcm_ring_sync_write: Sync write offset in peer ring, from local ring 118 * derived from this software. The special exception does not apply to any 171 static INLINE void bcm_ring_copy(bcm_ring_t *to, bcm_ring_t *from); 216 * @from: pointer to orig ring context 219 bcm_ring_copy(bcm_ring_t *to, bcm_ring_t *from) in bcm_ring_copy() argument 223 to->write = from->write; in bcm_ring_copy() 224 to->read = from->read; in bcm_ring_copy() 590 * @workq_prod: producer's workq whose read index must be refreshed from pee [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/ |
H A D | drv_osal_lib_linux.h | 78 const hi_void *from, unsigned long from_len); 81 const hi_void *from, unsigned long from_len);
|
/device/soc/rockchip/rk3588/kernel/include/trace/hooks/ |
H A D | binder.h | 42 TP_PROTO(struct task_struct *tsk, struct task_struct *from), 43 TP_ARGS(tsk, from));
|
/device/soc/rockchip/rk3588/kernel/scripts/ |
H A D | mkbootimg | 16 from __future__ import print_function 18 from argparse import ArgumentParser, FileType, Action 19 from hashlib import sha1 20 from os import fstat 22 from struct import pack
|
/device/soc/rockchip/common/sdk_linux/drivers/mmc/core/ |
H A D | core.h | 106 int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr, unsigned int arg); 112 int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from, unsigned int nr);
|
/device/soc/rockchip/common/sdk_linux/include/linux/ |
H A D | iova.h | 40 /* Call-Back from IOVA code into IOMMU drivers */ 49 /* Timeout (in ms) after which entries are flushed from the Flush-Queue */ 150 void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); 211 static inline void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to) in copy_reserved_iova() argument
|
/device/soc/rockchip/common/sdk_linux/kernel/cgroup/ |
H A D | cgroup-v1.c | 54 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' 55 * @from: attach to all cgroups of a given task 58 int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk) in cgroup_attach_task_all() argument 74 from_cgrp = task_cgroup_from_root(from, root); in cgroup_attach_task_all() 90 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another 92 * @from: cgroup in which the tasks currently reside 100 int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) in cgroup_transfer_tasks() argument 121 /* all tasks in @from are being moved, all csets are source */ in cgroup_transfer_tasks() 123 list_for_each_entry(link, &from->cset_links, cset_link) cgroup_migrate_add_src(link->cset, to, &mgctx); in cgroup_transfer_tasks() 132 * Migrate tasks one-by-one until @from i in cgroup_transfer_tasks() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/ |
H A D | mali_base_kernel.h | 11 * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
244 * as future releases from ARM might include other new types
271 * Return value from functions returning @ref base_mem_handle on error.
402 * @offset Offset within the handle to start aliasing from, in pages.
462 /* Requirements that come from the HW */
573 * - Priority is inherited from the replay job.
689 * the CPU may read from or partially overwrite memory addressed by the job
777 * The scheduling between base contexts/processes and between atoms from
922 * @param[in] from The dependency to make a copy from 925 base_jd_atom_dep_copy(struct base_dependency *dep, const struct base_dependency *from) base_jd_atom_dep_copy() argument [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/ |
H A D | mali_base_kernel.h | 11 * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 251 * as future releases from ARM might include other new types 278 * Return value from functions returning @ref base_mem_handle on error. 413 * @offset Offset within the handle to start aliasing from, in pages. 474 /* Requirements that come from the HW */ 585 * - Priority is inherited from the replay job. 701 * the CPU may read from or partially overwrite memory addressed by the job 792 * The scheduling between base contexts/processes and between atoms from 940 * @param[in] from The dependency to make a copy from 943 base_jd_atom_dep_copy(struct base_dependency *dep, const struct base_dependency *from) base_jd_atom_dep_copy() argument [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/startup/ |
H A D | riscv_init_flashboot.S | 90 #ecall from M-mode 100 #ecall from U-mode 161 /* copy .data .sdata section from FIX_ROM to SRAM */ 175 /* copy .data .sdata section from CODE_ROM to SRAM */
|
/device/soc/hisilicon/common/platform/i2c/ |
H A D | i2c_hi35xx.c | 452 static int HdfCopyFromUser(void *to, const void *from, unsigned long n) in HdfCopyFromUser() argument 455 ret = LOS_CopyToKernel(to, n, from, n); in HdfCopyFromUser() 457 HDF_LOGE("%s: copy from kernel fail:%d", __func__, ret); in HdfCopyFromUser() 463 static int HdfCopyToUser(void *to, const void *from, unsigned long n) in HdfCopyToUser() argument 466 ret = LOS_CopyFromKernel(to, n, from, n); in HdfCopyToUser() 468 HDF_LOGE("%s: copy from kernel fail:%d", __func__, ret); in HdfCopyToUser()
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/boot/ |
H A D | _udivsi3.S | 47 @ too much from the dividend, but the result will be ok, since the
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/boot/ |
H A D | _udivsi3.S | 47 @ too much from the dividend, but the result will be ok, since the
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | raw.h | 3 * raw API (to be used from TCPIP thread)\n 20 * derived from this software without specific prior written permission. 89 * @param addr the remote IP address from which the packet was received 180 void raw_pkt_input (struct pbuf *p, struct netif *inp, struct raw_pcb *from);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | x509.h | 51 * Set this to a low value to prevent an adversary from making you waste 98 #define MBEDTLS_X509_BADCRL_FUTURE 0x0400 /**< The CRL is from the future */ 265 * \param from mbedtls_x509_time to check 270 int mbedtls_x509_time_is_future( const mbedtls_x509_time *from );
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/include/ |
H A D | hi_osal.h | 268 extern unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n); 269 extern unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n);
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
H A D | hi_osal.h | 265 extern unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n); 266 extern unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n);
|