Home
last modified time | relevance | path

Searched refs:select (Results 1 - 17 of 17) sorted by relevance

/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/ipa_control/
H A Dmali_kbase_csf_ipa_control.c112 static int apply_select_config(struct kbase_device *kbdev, u64 *select) in apply_select_config() argument
116 u32 select_cshw_lo = (u32)(select[KBASE_IPA_CORE_TYPE_CSHW] & U32_MAX); in apply_select_config()
118 (u32)((select[KBASE_IPA_CORE_TYPE_CSHW] >> 32) & U32_MAX); in apply_select_config()
120 (u32)(select[KBASE_IPA_CORE_TYPE_MEMSYS] & U32_MAX); in apply_select_config()
122 (u32)((select[KBASE_IPA_CORE_TYPE_MEMSYS] >> 32) & U32_MAX); in apply_select_config()
124 (u32)(select[KBASE_IPA_CORE_TYPE_TILER] & U32_MAX); in apply_select_config()
126 (u32)((select[KBASE_IPA_CORE_TYPE_TILER] >> 32) & U32_MAX); in apply_select_config()
128 (u32)(select[KBASE_IPA_CORE_TYPE_SHADER] & U32_MAX); in apply_select_config()
130 (u32)((select[KBASE_IPA_CORE_TYPE_SHADER] >> 32) & U32_MAX); in apply_select_config()
213 &ipa_ctrl->blocks[i].select[ in build_select_config()
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/sys/
H A Dselect.h2 * @defgroup select Select
44 * @ingroup select
47 * The select function examines the file descriptor sets whose addresses are passed in the readfds, writefds, and errorfds parameters to see whether
50 * Upon successful completion, the select function would modify the objects pointed to by the readfds, writefds, and errorfds arguments to indicate
54 * select function shall block until at least one of the requested operations becomes ready, until the timeout occurs. The timeout parameter controls how
55 * long the select function shall take before timing out. If the timeout parameter is not a null pointer, it specifies a maximum interval to wait for the selection
57 * a null pointer, then the call to select would block indefinitely until at least one descriptor meets the specified criteria.\n\n
74 * operation is meaningless for a particular file type, the select shall indicate that the descriptor is ready for read or write operations, and shall indicate that the
80 * File descriptors associated with regular files shall always select true for ready to read, ready to write, and error conditions.\n\n
82 * If the readfds, writefds, and errorfds arguments are all null pointers and the timeout argument is not a null pointer, the select() functio
[all...]
H A Dtypes.h74 #include <sys/select.h>
H A Dtime.h14 #include <sys/select.h>
/device/qemu/drivers/virtio/
H A Dvirtinput.c61 uint8_t select; member
191 conf->select = VIRTIO_INPUT_CFG_ABS_INFO; in VirtinFillHidAbsInfo()
214 conf->select = VIRTIO_INPUT_CFG_EV_BITS; in VirtinFillHidCodeBitmap()
246 conf->select = VIRTIO_INPUT_CFG_ID_DEVIDS; in VirtinFillHidDevIds()
/device/qemu/riscv32_virt/liteos_m/board/driver/
H A Dvirtinput.c63 uint8_t select; member
203 conf->select = VIRTIO_INPUT_CFG_EV_BITS; in VirtinFillHidCodeBitmap()
237 conf->select = VIRTIO_INPUT_CFG_ID_DEVIDS; in VirtinFillHidDevIds()
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/uart_sample/
H A Duart.c173 ret = select(fd + 1, &rset, NULL, NULL, &time); // 非阻塞式读取数据 in UartRead()
180 printf("select error!\r\n"); in UartRead()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/paho.mqtt.c/include/mqtt/
H A DSocket.h51 #include <sys/select.h>
116 fd_set rset, /**< socket read set (see select doc) */
118 int maxfdp1; /**< max descriptor used +1 (again see select doc) */
123 fd_set pending_wset; /**< socket pending write set for select */
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dsockets.h826 #define lwip_select select
2156 * select() allows a program to monitor multiple file
2163 * select() can monitor only file descriptors numbers that are less than
2166 * select() uses a timeout that is a struct timeval (with seconds
2178 * using select() within a loop, the sets must be reinitialized before
2188 * is part of the set; this is useful after select() returns.
2194 * The timeout argument specifies the interval that select() should
2203 * timeval structure are zero, then select() returns immediately. (This
2204 * is useful for polling.) If timeout is NULL (no timeout), select()
2222 * - select() doe
2482 #define select global() macro
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/common/
H A Dsample_comm_venc.c23 #include <sys/select.h>
1037 s32Ret = select(s32VencFd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_VENC_SnapProcess()
1039 SAMPLE_PRT("snap select failed!\n"); in SAMPLE_COMM_VENC_SnapProcess()
1180 s32Ret = select(s32VencFd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_VENC_SaveJpeg()
1182 SAMPLE_PRT("snap select failed!\n"); in SAMPLE_COMM_VENC_SaveJpeg()
1592 s32Ret = select(maxfd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_VENC_GetVencStreamProc()
1594 SAMPLE_PRT("select failed!\n"); in SAMPLE_COMM_VENC_GetVencStreamProc()
1824 s32Ret = select(maxfd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_VENC_GetVencStreamProc()
1826 SAMPLE_PRT("select failed!\n"); in SAMPLE_COMM_VENC_GetVencStreamProc()
H A Dsample_comm_audio.c25 #include <sys/select.h>
174 printf("%s: select acodec input_mode failed\n", __FUNCTION__); in SAMPLE_INNER_CODEC_CfgAudio()
319 s32Ret = select(AiFd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_AUDIO_AiProc()
323 printf("%s: get ai frame select time out\n", __FUNCTION__); in SAMPLE_COMM_AUDIO_AiProc()
395 s32Ret = select(AencFd + 1, &read_fds, NULL, NULL, &TimeoutVal); in SAMPLE_COMM_AUDIO_AencProc()
399 printf("%s: get aenc stream select time out\n", __FUNCTION__); in SAMPLE_COMM_AUDIO_AencProc()
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/
H A Dhi_net_api.h858 * select() can monitor only file descriptors numbers that are less than FD_SETSIZE.
859 * select() uses a timeout that is a struct timeval (with seconds and microseconds).
860 * CNcomment:select()只能监视小于FD_SETSIZE的文件描述符编号.
861 * select()使用的超时值是struct timeval(秒和微秒)CNend
883 int select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
896 * @param cmd [IN] Type #int Indicates a command to select an operation[F_GETFL, F_SETFL].
/device/soc/rockchip/common/sdk_linux/tools/usb/ffs-aio-example/multibuff/device_app/
H A Daio_multibuff.c381 ret = select(((ep0 > evfd) ? ep0 : evfd) + 1, &rfds, NULL, NULL, NULL); in main()
386 perror("select"); in main()
/device/soc/rockchip/common/sdk_linux/tools/usb/ffs-aio-example/simple/device_app/
H A Daio_simple.c364 ret = select(((ep0 > evfd) ? ep0 : evfd) + 1, &rfds, NULL, NULL, NULL); in main()
369 perror("select"); in main()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_defs.h1048 * @select: Current performance counter configuration.
1054 select[KBASE_IPA_CONTROL_NUM_BLOCK_COUNTERS]; member
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/interconnection_server/
H A Dhisignalling.c417 ret = select(uartFd + 1, &rset, NULL, NULL, &time); in UartRead()
424 printf("select error!\r\n"); in UartRead()
/device/soc/rockchip/common/sdk_linux/drivers/irqchip/
H A Dirq-gic-v3.c1560 .select = gic_irq_domain_select,
1591 .select = gic_irq_domain_select,

Completed in 21 milliseconds