Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 231) sorted by relevance

12345678910

/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/sys/
Dwait.h48 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument
49 #define WTERMSIG(s) ((s) & 0x7f) argument
50 #define WSTOPSIG(s) WEXITSTATUS(s) argument
51 #define WCOREDUMP(s) ((s) & 0x80) argument
52 #define WIFEXITED(s) (!WTERMSIG(s)) argument
53 #define WIFSTOPPED(s) ((short)((((s)&0xffff)*0x10001)>>8) > 0x7f00) argument
54 #define WIFSIGNALED(s) (((s)&0xffff)-1U < 0xffu) argument
55 #define WIFCONTINUED(s) ((s) == 0xffff) argument
Dselect.h38 #define FD_ZERO(s) do { int __i; unsigned long *__b=(s)->fds_bits; for(__i=sizeof (fd_set)/sizeof (… argument
39 #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long))))) argument
40 #define FD_CLR(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] &= ~(1UL<<((d)%(8*sizeof(long))))) argument
41 #define FD_ISSET(d, s) !!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long))))) argument
Dtime.h95 #define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \ argument
97 #define timeradd(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \ argument
100 #define timersub(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \ argument
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/
Dstdlib.h560 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument
561 #define WTERMSIG(s) ((s) & 0x7f) argument
562 #define WSTOPSIG(s) WEXITSTATUS(s) argument
563 #define WIFEXITED(s) (!WTERMSIG(s)) argument
564 #define WIFSTOPPED(s) ((short)((((s)&0xffff)*0x10001)>>8) > 0x7f00) argument
565 #define WIFSIGNALED(s) (((s)&0xffff)-1U < 0xffu) argument
710 #define WCOREDUMP(s) ((s) & 0x80) argument
711 #define WIFCONTINUED(s) ((s) == 0xffff) argument
/device/soc/hisilicon/common/platform/mmc/himci_v200/proc/
Dhimci_proc.c43 static int32_t ProcStatsCardPluggedPrint(struct MmcCntlr *mmc, struct SeqBuf *s) in ProcStatsCardPluggedPrint()
62 static int32_t ProcStatsCardConnectedPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCardConnectedPrint()
95 static int32_t ProcStatsCardTypePrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCardTypePrint()
138 static int32_t ProcStatsUhsPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsUhsPrint()
166 static int32_t ProcStatsSpeedPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsSpeedPrint()
209 static int32_t ProcStatsClkPrint(uint32_t clock, struct SeqBuf *s) in ProcStatsClkPrint()
239 static int32_t ProcStatsCidPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCidPrint()
251 static int32_t ProcStatsCardInfoPrint(struct MmcCntlr *mmc, struct SeqBuf *s) in ProcStatsCardInfoPrint()
299 static int32_t ProcStatsSeqPrint(struct SeqBuf *s) in ProcStatsSeqPrint()
/device/soc/hisilicon/common/platform/mmc/sdhci/proc/
Dsdhci_proc.c42 static int32_t ProcStatsCardPluggedPrint(struct MmcCntlr *mmc, struct SeqBuf *s) in ProcStatsCardPluggedPrint()
61 static int32_t ProcStatsCardConnectedPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCardConnectedPrint()
94 static int32_t ProcStatsCardTypePrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCardTypePrint()
137 static int32_t ProcStatsUhsPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsUhsPrint()
165 static int32_t ProcStatsSpeedPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsSpeedPrint()
208 static int32_t ProcStatsClkPrint(uint32_t clock, struct SeqBuf *s) in ProcStatsClkPrint()
238 static int32_t ProcStatsCidPrint(struct MmcDevice *card, struct SeqBuf *s) in ProcStatsCidPrint()
250 static int32_t ProcStatsCardInfoPrint(struct MmcCntlr *mmc, struct SeqBuf *s) in ProcStatsCardInfoPrint()
298 static int32_t ProcStatsSeqPrint(struct SeqBuf *s) in ProcStatsSeqPrint()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
Dsys.h55 #define sys_sem_new(s, c) ERR_OK argument
56 #define sys_sem_signal(s) argument
57 #define sys_sem_wait(s) argument
58 #define sys_arch_sem_wait(s, t) argument
59 #define sys_sem_free(s) argument
60 #define sys_sem_valid(s) 0 argument
61 #define sys_sem_valid_val(s) 0 argument
62 #define sys_sem_set_invalid(s) argument
63 #define sys_sem_set_invalid_val(s) argument
70 #define sys_mbox_new(m, s) ERR_OK argument
[all …]
Dsockets.h861 #define closesocket(s) close(s) argument
2449 #define accept(s, addr, addrlen) lwip_accept(s, addr, addrlen) argument
2451 #define bind(s, name, namelen) lwip_bind(s, name, namelen) argument
2453 #define shutdown(s, how) lwip_shutdown(s, how) argument
2455 #define getpeername(s, name, namelen) lwip_getpeername(s, name, namelen) argument
2457 #define getsockname(s, name, namelen) lwip_getsockname(s, name, namelen) argument
2459 #define setsockopt(s, level, optname, opval, optlen) lwip_setsockopt(s, level, optname, opval, optl… argument
2461 #define getsockopt(s, level, optname, opval, optlen) lwip_getsockopt(s, level, optname, opval, optl… argument
2463 #define closesocket(s) lwip_close(s) argument
2465 #define connect(s, name, namelen) lwip_connect(s, name, namelen) argument
[all …]
/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/include/
Dcsi_gcc.h1199 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local
1503 int32_t r = 0, s = 0; in __SSAT16() local
1524 int32_t r = 0, s = 0; in __USAT16() local
1551 int32_t r, s, t, u; in __QADD8() local
1580 int32_t r, s, t, u; in __UQADD8() local
1607 int32_t r, s, t, u; in __SADD8() local
1634 int32_t r, s, t, u; in __UADD8() local
1663 int32_t r, s, t, u; in __QSUB8() local
1692 int32_t r, s, t, u; in __UQSUB8() local
1719 int32_t r, s, t, u; in __SSUB8() local
[all …]
/device/soc/rockchip/rk2206/sdk_liteos/platform/system/
Dsystem.c70 const char *s = str; in _parse_integer_fixup_radix() local
94 const char *s = str; in _parse_integer() local
169 static int skip_atoi(const char **s) in skip_atoi()
293 char *s = (char *)va_arg(arg, char *); in pre_vsscanf() local
305 char *s = (char *)va_arg(arg, char *); in pre_vsscanf() local
370 signed char *s = (signed char *)va_arg(arg, signed char *); in pre_vsscanf() local
373 unsigned char *s = (unsigned char *)va_arg(arg, unsigned char *); in pre_vsscanf() local
379 short *s = (short *)va_arg(arg, short *); in pre_vsscanf() local
382 unsigned short *s = (unsigned short *)va_arg(arg, unsigned short *); in pre_vsscanf() local
407 size_t *s = (size_t *)va_arg(arg, size_t *); in pre_vsscanf() local
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/
Dosal_string.c58 char *osal_strchr(const char *s, int c) in osal_strchr()
63 char *osal_strnchr(const char *s, int count, int c) in osal_strnchr()
68 char *osal_strrchr(const char *s, int c) in osal_strrchr()
83 int osal_strlen(const char *s) in osal_strlen()
88 int osal_strnlen(const char *s, int count) in osal_strnlen()
98 char *osal_strsep(char **s, const char *ct) in osal_strsep()
103 int osal_strspn(const char *s, const char *accept) in osal_strspn()
108 int osal_strcspn(const char *s, const char *reject) in osal_strcspn()
123 void *osal_memchr(const void *s, int c, int n) in osal_memchr()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/vo/vo_dev/mkp/src/
Dvou_proc.c120 static hi_void vou_proc_dev_cfg(osal_proc_entry_t *s) in vou_proc_dev_cfg()
148 static hi_void vou_proc_dev_clk_info(osal_proc_entry_t *s) in vou_proc_dev_clk_info()
190 static hi_void vou_proc_dev_show(osal_proc_entry_t *s) in vou_proc_dev_show()
196 static hi_void vou_proc_module_param_show(osal_proc_entry_t *s) in vou_proc_module_param_show()
226 static hi_void vou_proc_dev_int_show(osal_proc_entry_t *s) in vou_proc_dev_int_show()
247 static hi_s32 vou_proc_show(osal_proc_entry_t *s) in vou_proc_show()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/hi3516cv500/mipi_rx/
Dmipi_rx.c1378 static void proc_show_mipi_device(osal_proc_entry_t *s) in proc_show_mipi_device()
1422 static void proc_show_mipi_lane(osal_proc_entry_t *s) in proc_show_mipi_lane()
1462 static void proc_show_mipi_phy_data(osal_proc_entry_t *s) in proc_show_mipi_phy_data()
1495 static void proc_show_mipi_detect_info(osal_proc_entry_t *s, combo_dev_t devno_array[], int mipi_cn… in proc_show_mipi_detect_info()
1513 static void proc_show_lvds_detect_info(osal_proc_entry_t *s, combo_dev_t devno_array[], int mipi_cn… in proc_show_lvds_detect_info()
1531 static void proc_show_lvds_lane_detect_info(osal_proc_entry_t *s, combo_dev_t devno_array[], int mi… in proc_show_lvds_lane_detect_info()
1555 static void proc_show_mipi_hs_mode(osal_proc_entry_t *s) in proc_show_mipi_hs_mode()
1570 static void proc_show_phy_cil_int_err_cnt(osal_proc_entry_t *s) in proc_show_phy_cil_int_err_cnt()
1597 static void proc_show_mipirx_crc_err(osal_proc_entry_t *s, const combo_dev_t devno_array[], int mip… in proc_show_mipirx_crc_err()
1624 static void proc_show_mipirx_vc_err(osal_proc_entry_t *s, const combo_dev_t devno_array[], int mipi… in proc_show_mipirx_vc_err()
[all …]
/device/soc/rockchip/rk3588/kernel/drivers/pinctrl/
Dpinconf.h79 static inline void pinconf_show_map(struct seq_file *s, in pinconf_show_map()
84 static inline void pinconf_show_setting(struct seq_file *s, in pinconf_show_setting()
112 struct seq_file *s, in pinconf_generic_dump_pins()
119 struct seq_file *s, in pinconf_generic_dump_config()
/device/soc/rockchip/common/sdk_linux/drivers/dma-buf/
Dsync_debug.c68 static void sync_print_fence(struct seq_file *s, struct dma_fence *fence, bool show) in sync_print_fence()
103 static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj) in sync_print_obj()
118 static void sync_print_sync_file(struct seq_file *s, struct sync_file *sync_file) in sync_print_sync_file()
137 static int sync_info_debugfs_show(struct seq_file *s, void *unused) in sync_info_debugfs_show()
/device/qemu/arm_virt/liteos_a/board/amba_pl011/
Damba_pl011.c85 STATIC VOID UartPutStr(UINTPTR base, const CHAR *s, UINT32 len) in UartPutStr()
97 UINT32 UartPutsReg(UINTPTR base, const CHAR *s, UINT32 len, BOOL isLock) in UartPutsReg()
116 VOID UartPuts(const CHAR *s, UINT32 len, BOOL isLock) in UartPuts()
122 INT32 uart_puts(const CHAR *s, UINTPTR len, VOID *state) in uart_puts()
/device/qemu/arm_virt/liteos_a_mini/board/amba_pl011/
Damba_pl011.c85 STATIC VOID UartPutStr(UINTPTR base, const CHAR *s, UINT32 len) in UartPutStr()
97 UINT32 UartPutsReg(UINTPTR base, const CHAR *s, UINT32 len, BOOL isLock) in UartPutsReg()
116 VOID UartPuts(const CHAR *s, UINT32 len, BOOL isLock) in UartPuts()
122 INT32 uart_puts(const CHAR *s, UINTPTR len, VOID *state) in uart_puts()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
Dstr.h27 uint8_t *s; /**< string data */ member
35 const uint8_t *s; /**< string data */ member
45 uint8_t *s; /**< binary data */ member
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
Dethernet.h165 #define eacopy(s, d) \ argument
172 #define ether_copy(s, d) eacopy(s, d) argument
175 #define ether_rcopy(s, d) \ argument
183 #define ehcopy32(s, d) \ argument
213 #define ETHER_MOVE_HDR(d, s) \ argument
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/
Dmali_kbase_trace_timeline.c58 static void *kbasep_trace_timeline_seq_start(struct seq_file *s, loff_t *pos) in kbasep_trace_timeline_seq_start()
66 static void kbasep_trace_timeline_seq_stop(struct seq_file *s, void *data) in kbasep_trace_timeline_seq_stop()
70 static void *kbasep_trace_timeline_seq_next(struct seq_file *s, void *data, loff_t *pos) in kbasep_trace_timeline_seq_next()
80 static int kbasep_trace_timeline_seq_show(struct seq_file *s, void *data) in kbasep_trace_timeline_seq_show()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/
Dmali_kbase_trace_timeline.c57 static void *kbasep_trace_timeline_seq_start(struct seq_file *s, loff_t *pos) in kbasep_trace_timeline_seq_start()
66 static void kbasep_trace_timeline_seq_stop(struct seq_file *s, void *data) in kbasep_trace_timeline_seq_stop()
70 static void *kbasep_trace_timeline_seq_next(struct seq_file *s, void *data, loff_t *pos) in kbasep_trace_timeline_seq_next()
81 static int kbasep_trace_timeline_seq_show(struct seq_file *s, void *data) in kbasep_trace_timeline_seq_show()
/device/soc/rockchip/rk3588/kernel/include/linux/
Dandroid_vendor.h30 #define ANDROID_VENDOR_DATA_ARRAY(n, s) u64 android_vendor_data##n[s] argument
33 #define ANDROID_OEM_DATA_ARRAY(n, s) u64 android_oem_data##n[s] argument
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/hi3516cv500/sysconfig/
Dsys_config.c82 int parse_sensor_index(char *s) in parse_sensor_index()
113 int parse_sensor_name(char *s, char *name, unsigned int name_len) in parse_sensor_name()
340 void clk_cfg_on_chip(const char *s, int cmos_yuv_flag) in clk_cfg_on_chip()
355 int clkcfg(char *s, int cmos_yuv_flag) in clkcfg()
843 int pinmux(const char *s, int cmos_yuv_flag) in pinmux()
927 static void sensor_clk_config(char *s) in sensor_clk_config()
952 int sensor_config(char *s) in sensor_config()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/debug/
Dmali_kbase_debug_ktrace.c241 static void *kbasep_ktrace_seq_start(struct seq_file *s, loff_t *pos) in kbasep_ktrace_seq_start()
264 static void kbasep_ktrace_seq_stop(struct seq_file *s, void *data) in kbasep_ktrace_seq_stop()
268 static void *kbasep_ktrace_seq_next(struct seq_file *s, void *data, loff_t *pos) in kbasep_ktrace_seq_next()
285 static int kbasep_ktrace_seq_show(struct seq_file *s, void *data) in kbasep_ktrace_seq_show()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/debug/
Dmali_kbase_debug_ktrace.c250 static void *kbasep_ktrace_seq_start(struct seq_file *s, loff_t *pos) in kbasep_ktrace_seq_start()
271 static void kbasep_ktrace_seq_stop(struct seq_file *s, void *data) in kbasep_ktrace_seq_stop()
275 static void *kbasep_ktrace_seq_next(struct seq_file *s, void *data, loff_t *pos) in kbasep_ktrace_seq_next()
290 static int kbasep_ktrace_seq_show(struct seq_file *s, void *data) in kbasep_ktrace_seq_show()

12345678910