Home
last modified time | relevance | path

Searched refs:param (Results 1626 - 1650 of 5350) sorted by relevance

1...<<61626364656667686970>>...214

/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hifb/drm_hal/
H A Ddrm_hal_gfx.h34 DRM_HAL_GFX_ATTR_SIZE, /* param is pointer to struct drm_hal_rect */
37 DRM_HAL_GFX_ATTR_FORMAT, /* param is pointer to enum drm_hal_color_fmt */
39 DRM_HAL_GFX_ATTR_STRIDE, /* param is pointer to unsigned int */
72 int (*get_attr)(enum drm_hal_gfx_layer layer, enum drm_hal_gfx_attr_type type, const void *param);
73 int (*set_attr)(enum drm_hal_gfx_layer layer, enum drm_hal_gfx_attr_type type, const void *param);
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/based/
H A DMakefile19 PARAM_FILE:=../../Makefile.param
24 CBB_PARAM_FILE:=../Makefile.param
/device/board/hihope/rk3568/audio_drivers/dsp/src/
H A Drk3568_dsp_ops.c23 int32_t DspDaiHwParams(const struct AudioCard *card, const struct AudioPcmHwParams *param) in DspDaiHwParams() argument
26 (void)param; in DspDaiHwParams()
/device/board/hisilicon/hispark_taurus/audio_drivers/unittest/src/
H A Dhi3516_dai_ops_test.c58 struct AudioPcmHwParams *param = NULL; in TestDaiHwParams() local
60 ret = Hi3516DaiHwParams(card, param); in TestDaiHwParams()
85 HDF_LOGE("TestDaiTrigger: cpuDai param is NULL."); in TestDaiTrigger()
/device/qemu/arm_virt/liteos_a/board/extcmd/
H A Dreset_shell.c43 UINT32 osReHookFuncAdd(STORAGE_HOOK_FUNC handler, VOID *param) in osReHookFuncAdd() argument
53 pstFuncNode->pParam = param; in osReHookFuncAdd()
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/include/
H A Dhi_isr.h58 * @param param [IN] type #hi_u32,Callback input parameter.CNcomment:回调入参。CNend
66 typedef hi_void (*irq_routine)(hi_u32 param);
83 * @param None
105 * @param int_value [IN] type #hi_u32,Interrupt status.CNcomment:中断状态。CNend
125 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
144 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
177 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
178 * @param flag [IN] type #hi_u32, attributes like priority,etc.CNcomment:中断优先级等属性。CNend
179 * @param routin
[all...]
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
H A Dhmac_mgmt_ap.h81 hi_u32 hmac_ap_wait_start_rx_mgmt(hmac_vap_stru *hmac_vap, hi_void *param);
82 hi_u32 hmac_mgmt_timeout_ap(hi_void *param);
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/
H A Dhi_isr.h62 * @param param [IN] type #hi_u32,Callback input parameter.CNcomment:回调入参。CNend
69 typedef hi_void (*irq_routine)(hi_u32 param);
86 * @param None
107 * @param int_value [IN] type #hi_u32,Interrupt status.CNcomment:中断状态。CNend
125 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
143 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
175 * @param vector [IN] type #hi_u32,Interrupt ID.CNcomment:中断号。CNend
176 * @param flag [IN] type #hi_u32, attributes like priority,etc.CNcomment:中断优先级等属性。CNend
177 * @param routin
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4/
H A Dsched.h66 struct ch_sched_queue param; member
71 struct ch_sched_flowc param; member
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddss_features.h78 unsigned long dss_feat_get_param_min(enum dss_range_param param);
79 unsigned long dss_feat_get_param_max(enum dss_range_param param);
/kernel/linux/linux-5.10/include/linux/
H A Di8042.h60 int i8042_command(unsigned char *param, int command);
76 static inline int i8042_command(unsigned char *param, int command) in i8042_command() argument
/kernel/linux/linux-6.6/include/linux/
H A Dlibps2.h68 int __ps2_command(struct ps2dev *ps2dev, u8 *param, unsigned int command);
69 int ps2_command(struct ps2dev *ps2dev, u8 *param, unsigned int command);
H A Di8042.h61 int i8042_command(unsigned char *param, int command);
77 static inline int i8042_command(unsigned char *param, int command) in i8042_command() argument
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddss_features.h78 unsigned long dss_feat_get_param_min(enum dss_range_param param);
79 unsigned long dss_feat_get_param_max(enum dss_range_param param);
/kernel/linux/linux-6.6/drivers/net/ethernet/chelsio/cxgb4/
H A Dsched.h66 struct ch_sched_queue param; member
71 struct ch_sched_flowc param; member
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/
H A DIt_posix_pthread_103.c52 struct sched_param param = { 31 }; in HwiF01() local
57 ret = pthread_setschedparam(g_testNewTh, SCHED_RR, &param); in HwiF01()
/kernel/linux/linux-6.6/tools/crypto/ccp/
H A Ddbc.c58 .param = *data, in process_param()
70 *data = tmp.param; in process_param()
/kernel/liteos_a/testsuites/unittest/extended/signal/full/
H A DIt_ipc_sigaction_001.cpp35 static void CatchAction1(int param) in CatchAction1() argument
38 printf("---------%d---signum-%d-----\n", g_actionCnt1, param); in CatchAction1()
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/smoke/
H A Dpthread_test_023.cpp48 struct sched_param param = { in ChildProcess() local
57 ret = sched_setscheduler(getpid(), SCHED_DEADLINE, &param); in ChildProcess()
H A Dpthread_test_025.cpp51 struct sched_param param = { in ChildProcess() local
68 ret = sched_setscheduler(getpid(), SCHED_DEADLINE, &param); in ChildProcess()
H A Dpthread_test_024.cpp47 struct sched_param param = { in ChildProcess() local
61 ret = sched_setscheduler(getpid(), SCHED_DEADLINE, &param); in ChildProcess()
H A Dpthread_test_027.cpp38 struct sched_param param = { in ChildProcess() local
54 ret = sched_setscheduler(getpid(), SCHED_DEADLINE, &param); in ChildProcess()
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dinitndk.cpp37 void *param; in InitModule() local
38 int ret = init_module(param, PARAM_5, "0"); in InitModule()
H A Dptyndk.cpp27 int param = PARAM_0; in Forkpty() local
28 pid_t pid = forkpty(&param, nullptr, nullptr, nullptr); in Forkpty()
/third_party/cups-filters/filter/pdftopdf/
H A Dnup.h56 NupParameters param;
57 param.xyz=...; // fill it with your data!
59 NupState nup(param);
68 NupState(const NupParameters &param);
80 NupParameters param; member in NupState

Completed in 8 milliseconds

1...<<61626364656667686970>>...214