/Zephyr-latest/drivers/fpga/ |
D | Kconfig.eos_s3 | 1 # FPGA EOS S3 driver configuration options 7 bool "EOS S3 fpga driver" 9 Enable EOS S3 FPGA driver.
|
/Zephyr-latest/dts/bindings/gpio/ |
D | quicklogic,eos-s3-gpio.yaml | 1 description: EOS S3 GPIO node 3 compatible: "quicklogic,eos-s3-gpio" 19 a primary(0) or a secondary(1) pin. EOS S3 supports up to 8 GPIOs
|
/Zephyr-latest/lib/posix/options/ |
D | fnmatch.c | 49 #define EOS '\0' macro 95 if (c == EOS) { in rangematch() 101 if (c2 != EOS && c2 != ']') { in rangematch() 107 if (c2 == EOS) { in rangematch() 139 case EOS: in fnmatchx() 144 return *string == EOS ? 0 : FNM_NOMATCH; in fnmatchx() 146 if (*string == EOS) { in fnmatchx() 176 if (c == EOS) { in fnmatchx() 197 if (test == EOS) { in fnmatchx() 216 if (*string == EOS) { in fnmatchx() [all …]
|
/Zephyr-latest/dts/bindings/pinctrl/ |
D | quicklogic,eos-s3-pinctrl.yaml | 5 Quicklogic EOS S3 IO MUX binding covers the 46 IOMUX_PAD_x_CTRL registers 13 #include <dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h> 26 compatible: "quicklogic,eos-s3-pinctrl" 54 Quicklogic EOS S3 pin's configuration (pin, IO function).
|
/Zephyr-latest/tests/subsys/fs/common/ |
D | test_fs_util.c | 21 char *eos = pp->eos; in path_vextend() local 22 size_t rem = (endp - eos); in path_vextend() 28 eos = sp + 1; in path_vextend() 30 eos = sp; in path_vextend() 32 } else if ((1 + len + 1) < rem) { /* /, ep, EOS */ in path_vextend() 33 *eos = '/'; in path_vextend() 34 ++eos; in path_vextend() 35 memcpy(eos, ep, len); in path_vextend() 36 eos += len; in path_vextend() 40 *eos = 0; in path_vextend() [all …]
|
D | test_fs_util.h | 37 char *eos; member 92 size_t len = sp->eos - sp->path; in testfs_path_copy() 95 dp->eos = dp->path + len; in testfs_path_copy()
|
/Zephyr-latest/drivers/pinctrl/ |
D | Kconfig.eos_s3 | 5 bool "QuickLogic EOS S3 SoC pinctrl driver" 9 Enable driver for the QuickLogic EOS S3 SoC pinctrl driver
|
D | pinctrl_eos_s3.c | 13 #include <zephyr/dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h>
|
/Zephyr-latest/samples/boards/quicklogic/qomu/ |
D | README.rst | 6 This sample demonstrates how to load bitstream on EOS-S3 FPGA and use the 12 * `QuickLogic Qomu board <https://www.quicklogic.com/products/eos-s3/quickfeather-development-kit/>…
|
/Zephyr-latest/soc/quicklogic/eos_s3/ |
D | Kconfig.soc | 7 QuickLogic EOS S3 SoC
|
/Zephyr-latest/drivers/gpio/ |
D | Kconfig.eos_s3 | 11 Enable the EOS S3 gpio driver.
|
/Zephyr-latest/dts/arm/quicklogic/ |
D | quicklogic_eos_s3.dtsi | 57 compatible = "quicklogic,eos-s3-gpio"; 68 compatible = "quicklogic,eos-s3-pinctrl";
|
/Zephyr-latest/boards/quicklogic/qomu/doc/ |
D | index.rst | 6 The Qomu board is a platform with an on-board QuickLogic EOS S3 Sensor Processing Platform. 11 - QuickLogic EOS S3 MCU Platform
|
/Zephyr-latest/boards/quicklogic/quick_feather/ |
D | quick_feather_defconfig | 14 # EOS S3 Configuration Manager copies software from external flash to MCU
|
D | quick_feather.dts | 9 #include <zephyr/dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h>
|
/Zephyr-latest/boards/quicklogic/qomu/ |
D | qomu_defconfig | 15 # EOS S3 Configuration Manager copies software from external flash to MCU
|
D | qomu.dts | 9 #include <zephyr/dt-bindings/pinctrl/quicklogic-eos-s3-pinctrl.h>
|
/Zephyr-latest/boards/quicklogic/quick_feather/doc/ |
D | index.rst | 7 EOS S3 Sensor Processing Platform. 12 - QuickLogic EOS S3 MCU Platform
|
/Zephyr-latest/subsys/shell/ |
D | shell_wildcard.c | 34 /* make place for new command: + 1 for space + 1 for EOS */ in command_add() 154 /* +1 for EOS*/ in z_shell_wildcard_prepare()
|
D | shell_vt100.h | 206 #define SHELL_VT100_PF4 "\eOS\0" 226 #define SHELL_VT100_ALT_3 "\eOs\0"
|
D | shell_utils.c | 254 shift = z_shell_strlen(pattern_addr) - pattern_len + 1; /* +1 for EOS */ in z_shell_pattern_remove() 444 /* +1 for EOS */ in z_shell_spaces_trim()
|
D | shell_ops.c | 235 /* Clear eos is needed only when newly printed command is shorter than in reprint_from_cursor()
|
/Zephyr-latest/lib/libc/minimal/source/stdout/ |
D | sprintf.c | 20 if (p->len > 1) { /* need to reserve a byte for EOS */ in sprintf_out()
|
/Zephyr-latest/tests/subsys/fs/littlefs/src/ |
D | test_util.c | 74 "missing overrun EOS"); in ZTEST()
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_huffman.c | 280 static const struct decode_elem eos = { variable 309 if (huffman_bits_compare(bits, &eos)) { in huffman_decode_bits() 310 return &eos; in huffman_decode_bits() 385 if (decoded == &eos) { in http_hpack_huffman_decode() 387 LOG_ERR("eos reached prematurely"); in http_hpack_huffman_decode()
|