Home
last modified time | relevance | path

Searched refs:option (Results 1 - 25 of 29) sorted by relevance

12

/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/build/scripts/
H A Dscons_utils.py176 def scons_usr_string_option(option):
178 value = options.get(option)
183 def scons_usr_int_option(option):
185 return int(options.get(option))
187 def scons_usr_bool_option(option):
189 if option in options.keys():
190 return options[option].lower()
196 def scons_sys_string_option(option):
198 if option in options.keys():
199 return options[option]
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/
H A Dscons_utils.py176 def scons_usr_string_option(option):
178 value = options.get(option)
183 def scons_usr_int_option(option):
185 return int(options.get(option))
187 def scons_usr_bool_option(option):
189 if option in options.keys():
190 return options[option].lower()
196 def scons_sys_string_option(option):
198 if option in options.keys():
199 return options[option]
[all...]
H A Dhi_config_parser.py74 for option in cfg.readlines():
75 option = option.strip()
76 if self.cfg_is_valid(option) is True:
77 marco, value = self.parse_option(option)
82 def cfg_is_valid(self, option):
83 if option is None:
85 if option == '':
87 if option.startswith('#') is True:
89 if option
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hifb/drv/hi3516cv500/
H A Dhifb_blit.c7 * of the License, or (at your option) any later version.
293 static hi_void blit_opt_get_filter_mode(hi_tde_opt *option, hifb_blit_opt *opt) in blit_opt_get_filter_mode() argument
297 option->filter_mode = HI_TDE_FILTER_MODE_COLOR; in blit_opt_get_filter_mode()
298 option->deflicker_mode = HI_TDE_DEFLICKER_LEVEL_MODE_NONE; in blit_opt_get_filter_mode()
301 option->filter_mode = HI_TDE_FILTER_MODE_COLOR; in blit_opt_get_filter_mode()
304 option->filter_mode = HI_TDE_FILTER_MODE_COLOR; in blit_opt_get_filter_mode()
307 option->filter_mode = HI_TDE_FILTER_MODE_COLOR; in blit_opt_get_filter_mode()
310 option->filter_mode = HI_TDE_FILTER_MODE_COLOR; in blit_opt_get_filter_mode()
313 option->deflicker_mode = HI_TDE_DEFLICKER_LEVEL_MODE_NONE; in blit_opt_get_filter_mode()
319 static hi_void blit_opt_get_mirror_mode(hi_tde_opt *option, hifb_blit_op argument
341 blit_opt_get_alpha(hi_tde_opt *option, hifb_blit_opt *opt) blit_opt_get_alpha() argument
353 drv_blit_option_init(hi_tde_surface *src_surface, hi_tde_surface *dst_surface, hi_tde_opt *option, hifb_blit_opt *opt) drv_blit_option_init() argument
478 hi_tde_opt option = { 0 }; hifb_drv_blit() local
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/
H A Dgetopt.h12 struct option { struct
19 int getopt_long(int, char *const *, const char *, const struct option *, int *);
20 int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dpdu.h88 * CoAP option types (be sure to update coap_option_check_critical() when
110 /* option types from RFC 7641 */
115 /* selected option types from RFC 7959 */
120 /* selected option types from RFC 7967 */
124 #define COAP_MAX_OPT 65535 /**< the highest option number we know */
251 #define COAP_OPT_LONG 0x0F /* OC == 0b1111 indicates that the option list
263 * coap_list_t.) The option's data will be added to the end of the coap_option
267 uint16_t key; /* the option key (no delta coding) */
271 #define COAP_OPTION_KEY(option) (option)
[all...]
/device/soc/rockchip/common/sdk_linux/arch/arm64/
H A DMakefile20 $(call ld-option, --no-apply-dynamic-relocs)
24 ifeq ($(call ld-option, --fix-cortex-a53-843419),)
52 KBUILD_CFLAGS += $(call cc-option,-mabi=lp64)
53 KBUILD_AFLAGS += $(call cc-option,-mabi=lp64)
71 branch-prot-flags-y += $(call cc-option,-mbranch-protection=none)
85 # we pass it only to the assembler. This option is utilized only in case of non
113 KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb -z norelro)
119 KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux -z norelro)
/device/qemu/riscv32_virt/liteos_m/board/
H A Dlos_start.S49 .option push
50 .option norelax
52 .option pop
/device/soc/rockchip/rk3588/kernel/include/trace/hooks/
H A Dsys.h13 TP_PROTO(int option, struct task_struct *task),
14 TP_ARGS(option, task));
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/include/
H A Ddrv_tde_ioctl.h7 * of the License, or (at your option) any later version.
64 hi_tde_opt option; /* < operating option */ member
76 hi_tde_opt option; /* < operating option */ member
122 hi_tde_mb_opt mb_option; /* < operating option */
167 hi_tde_pattern_fill_opt option; /* < option */ member
H A Ddrv_tde_type.h7 * of the License, or (at your option) any later version.
387 /* CSC parameter option */
477 hi_tde_csc_opt csc_opt; /* <CSC parameter option */
502 hi_tde_opt option; member
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/
H A Ddrm_modes.c1604 const char *delim, *option, *sep; in drm_mode_parse_cmdline_options() local
1606 option = str; in drm_mode_parse_cmdline_options()
1608 delim = strchr(option, '='); in drm_mode_parse_cmdline_options()
1610 delim = strchr(option, ','); in drm_mode_parse_cmdline_options()
1612 delim = option + strlen(option); in drm_mode_parse_cmdline_options()
1616 if (!strncmp(option, "rotate", delim - option)) { in drm_mode_parse_cmdline_options()
1641 } else if (!strncmp(option, "reflect_x", delim - option)) { in drm_mode_parse_cmdline_options()
[all...]
/device/soc/rockchip/common/sdk_linux/
H A DMakefile488 # Needed to be compatible with the O= option
578 CLANG_FLAGS += -Werror=unknown-warning-option
667 $(call cc-option,-fno-tree-loop-im) \
677 RETPOLINE_CFLAGS := $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
678 RETPOLINE_CFLAGS += $(call cc-option,-mindirect-branch-cs-prefix)
679 RETPOLINE_VDSO_CFLAGS := $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
742 KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
757 KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
758 KBUILD_CFLAGS += $(call cc-option,-fno-allow-store-data-races)
765 KBUILD_CFLAGS += $(call cc-option,
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/startup/
H A Driscv_init_flashboot.S38 .option norvc
122 .option push
123 .option norelax
125 .option pop
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/loaderboot/startup/
H A Driscv_init_loaderboot.S39 .option norvc
59 .option rvc
253 .option push
254 .option norelax
256 .option pop
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/
H A Dhi_mdm_types.h130 * @param option [IN] type #hi_u8,#HI_DIAG_CMD_INSTANCE_LOCAL and #HI_DIAG_CMD_INSTANCE_IREMOTE are supported.
140 typedef hi_u32 (*hi_diag_cmd_f)(hi_u16 cmd_id, hi_pvoid cmd_param, hi_u16 cmd_param_size, hi_u8 option);
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/
H A Dlinux.mak6 # of the License, or (at your option) any later version.
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/
H A Dlinker.lds.mk11 * the License, or (at your option) any later version.
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/
H A Dlinker.lds.mk11 * the License, or (at your option) any later version.
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/src/
H A Dtde_ioctl.c7 * of the License, or (at your option) any later version.
473 opt = ((bit_blt->null_indicator >> 7) & 1) ? HI_NULL : &(bit_blt->option); /* 7 Take the high */ in tde_osr_blit_blit()
502 opt = ((solid_draw->null_indicator >> 6) & 1) ? HI_NULL : &(solid_draw->option); /* 6 Take the high */ in tde_osr_solid_draw()
853 &(pattern_fill_cmd->option); in tde_osr_pattern_fill()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_cfgp2p.c1989 dongle_noa.option = WL_P2P_SCHED_OPTION_TSFOFS; in wl_cfgp2p_set_p2p_noa()
1994 dongle_noa.option = WL_P2P_SCHED_OPTION_NORMAL; in wl_cfgp2p_set_p2p_noa()
2005 dongle_noa.option = WL_P2P_SCHED_OPTION_BCNPCT; in wl_cfgp2p_set_p2p_noa()
2008 dongle_noa.option = WL_P2P_SCHED_OPTION_NORMAL; in wl_cfgp2p_set_p2p_noa()
2013 if (dongle_noa.option == WL_P2P_SCHED_OPTION_BCNPCT) { in wl_cfgp2p_set_p2p_noa()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/
H A Dcfg.mak6 # of the License, or (at your option) any later version.
/device/soc/hisilicon/hi3751v350/sdk_linux/
H A Dcfg.mak6 # of the License, or (at your option) any later version.
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/adp/tde_v2_0/
H A Dtde_osictl_k.c7 * of the License, or (at your option) any later version.
3555 * opt: operate option
3773 * Input: opt: operate option
4110 hi_tde_opt option = { 0 }; in tde_osi_quick_resize() local
4112 option.resize = HI_TRUE; in tde_osi_quick_resize()
4115 option.filter_mode = HI_TDE_FILTER_MODE_COLOR; in tde_osi_quick_resize()
4117 option.filter_mode = HI_TDE_FILTER_MODE_NONE; in tde_osi_quick_resize()
4130 return tde_osi_blit(handle, &double_src, &option); in tde_osi_quick_resize()
4244 hi_tde_opt option = { 0 }; in tde_osi_quick_flicker() local
4247 option in tde_osi_quick_flicker()
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/nouveau/
H A Dnouveau_drm.c38 #include <core/option.h>
71 MODULE_PARM_DESC(config, "option string to pass to driver core");

Completed in 33 milliseconds

12