/Zephyr-Core-2.7.6/subsys/net/lib/http/ |
D | http_parser_url.c | 111 #define LOWER(c) (unsigned char)(c | 0x20) argument 112 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z') argument 113 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') argument 114 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c)) argument 115 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) argument 117 #define IS_MARK(c) ((c) == '-' || (c) == '_' || (c) == '.' || \ argument 121 #define IS_USERINFO_CHAR(c) (IS_ALPHANUM(c) || IS_MARK(c) || (c) == '%' || \ argument 127 #define IS_URL_CHAR(c) (BIT_AT(normal_url_char, (unsigned char)c)) argument 128 #define IS_HOST_CHAR(c) (IS_ALPHANUM(c) || (c) == '.' || (c) == '-') argument 130 #define IS_URL_CHAR(c) \ argument [all …]
|
D | http_parser.c | 265 #define LOWER(c) (unsigned char)(c | 0x20) argument 266 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z') argument 267 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') argument 268 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c)) argument 269 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) argument 271 #define IS_MARK(c) ((c) == '-' || (c) == '_' || (c) == '.' || \ argument 275 #define IS_USERINFO_CHAR(c) (IS_ALPHANUM(c) || IS_MARK(c) || (c) == '%' || \ argument 280 #define STRICT_TOKEN(c) (tokens[(unsigned char)c]) argument 283 #define TOKEN(c) (tokens[(unsigned char)c]) argument 284 #define IS_HOST_CHAR(c) (IS_ALPHANUM(c) || (c) == '.' || (c) == '-') argument [all …]
|
/Zephyr-Core-2.7.6/lib/libc/minimal/include/ |
D | ctype.h | 21 static inline int isalpha(int c) in isalpha() 26 static inline int isspace(int c) in isspace() 31 static inline int isgraph(int c) in isgraph() 37 static inline int isprint(int c) in isprint()
|
D | stdio.h | 59 static inline int putc(int c, FILE *stream) in putc() 63 static inline int putchar(int c) in putchar()
|
/Zephyr-Core-2.7.6/lib/os/ |
D | heap.h | 96 static inline chunkid_t chunk_field(struct z_heap *h, chunkid_t c, in chunk_field() 109 static inline void chunk_set(struct z_heap *h, chunkid_t c, in chunk_set() 126 static inline bool chunk_used(struct z_heap *h, chunkid_t c) in chunk_used() 131 static inline chunksz_t chunk_size(struct z_heap *h, chunkid_t c) in chunk_size() 136 static inline void set_chunk_used(struct z_heap *h, chunkid_t c, bool used) in set_chunk_used() 161 static inline void set_chunk_size(struct z_heap *h, chunkid_t c, chunksz_t size) in set_chunk_size() 166 static inline chunkid_t prev_free_chunk(struct z_heap *h, chunkid_t c) in prev_free_chunk() 171 static inline chunkid_t next_free_chunk(struct z_heap *h, chunkid_t c) in next_free_chunk() 176 static inline void set_prev_free_chunk(struct z_heap *h, chunkid_t c, in set_prev_free_chunk() 182 static inline void set_next_free_chunk(struct z_heap *h, chunkid_t c, in set_next_free_chunk() [all …]
|
D | heap.c | 11 static void *chunk_mem(struct z_heap *h, chunkid_t c) in chunk_mem() 21 static void free_list_remove_bidx(struct z_heap *h, chunkid_t c, int bidx) in free_list_remove_bidx() 43 static void free_list_remove(struct z_heap *h, chunkid_t c) in free_list_remove() 51 static void free_list_add_bidx(struct z_heap *h, chunkid_t c, int bidx) in free_list_add_bidx() 77 static void free_list_add(struct z_heap *h, chunkid_t c) in free_list_add() 112 static void free_chunk(struct z_heap *h, chunkid_t c) in free_chunk() 148 chunkid_t c = mem_to_chunkid(h, mem); in sys_heap_free() local 195 chunkid_t c = b->next; in alloc_chunk() local 212 chunkid_t c = h->buckets[minbucket].next; in alloc_chunk() local 231 chunkid_t c = alloc_chunk(h, chunk_sz); in sys_heap_alloc() local [all …]
|
D | printk.c | 45 __attribute__((weak)) int arch_printk_char_out(int c) in arch_printk_char_out() 95 static int buf_char_out(int c, void *ctx_p) in buf_char_out() 112 static int char_out(int c, void *ctx_p) in char_out() 149 void z_impl_k_str_out(char *c, size_t n) in z_impl_k_str_out() 166 static inline void z_vrfy_k_str_out(char *c, size_t n) in z_vrfy_k_str_out() 215 static int str_out(int c, struct str_context *ctx) in str_out()
|
D | hex.c | 12 int char2hex(char c, uint8_t *x) in char2hex() 27 int hex2char(uint8_t x, char *c) in hex2char()
|
/Zephyr-Core-2.7.6/include/sys/ |
D | math_extras_impl.h | 54 uint16_t c = a + b; in u16_add_overflow() local 63 uint32_t c = a + b; in u32_add_overflow() local 72 uint64_t c = a + b; in u64_add_overflow() local 81 size_t c = a + b; in size_add_overflow() local 112 uint16_t c = a * b; in u16_mul_overflow() local 121 uint32_t c = a * b; in u32_mul_overflow() local 130 uint64_t c = a * b; in u64_mul_overflow() local 139 size_t c = a * b; in size_mul_overflow() local
|
/Zephyr-Core-2.7.6/lib/libc/minimal/source/stdout/ |
D | stdout_console.c | 14 static int _stdout_hook_default(int c) in _stdout_hook_default() 28 int z_impl_zephyr_fputc(int c, FILE *stream) in z_impl_zephyr_fputc() 34 static inline int z_vrfy_zephyr_fputc(int c, FILE *stream) in z_vrfy_zephyr_fputc() 41 int fputc(int c, FILE *stream) in fputc()
|
/Zephyr-Core-2.7.6/subsys/console/ |
D | tty.c | 22 uint8_t c; in tty_uart_isr() local 48 static int tty_irq_input_hook(struct tty_serial *tty, uint8_t c) in tty_irq_input_hook() 69 static int tty_putchar(struct tty_serial *tty, uint8_t c) in tty_putchar() 144 uint8_t c; in tty_getchar() local 170 uint8_t c; in tty_read_unbuf() local
|
D | getchar.c | 32 int console_putchar(char c) in console_putchar() 39 uint8_t c; in console_getchar() local
|
/Zephyr-Core-2.7.6/samples/subsys/console/getchar/src/ |
D | main.c | 18 uint8_t c = console_getchar(); in main() local
|
/Zephyr-Core-2.7.6/drivers/bluetooth/ |
D | util.h | 11 uint8_t c; in bt_uart_drain() local
|
/Zephyr-Core-2.7.6/samples/subsys/console/echo/src/ |
D | main.c | 20 uint8_t c = console_getchar(); in main() local
|
/Zephyr-Core-2.7.6/drivers/serial/ |
D | serial_test.c | 17 static int serial_vnd_poll_in(const struct device *dev, unsigned char *c) in serial_vnd_poll_in() 22 static void serial_vnd_poll_out(const struct device *dev, unsigned char c) in serial_vnd_poll_out()
|
D | uart_xmc4xxx.c | 23 static int uart_xmc4xxx_poll_in(const struct device *dev, unsigned char *c) in uart_xmc4xxx_poll_in() 33 static void uart_xmc4xxx_poll_out(const struct device *dev, unsigned char c) in uart_xmc4xxx_poll_out()
|
/Zephyr-Core-2.7.6/tests/kernel/common/src/ |
D | multilib.c | 24 volatile long long c = a / b; in test_multilib() local
|
/Zephyr-Core-2.7.6/drivers/console/ |
D | semihost_console.c | 16 char c = _c; in arch_printk_char_out() local
|
/Zephyr-Core-2.7.6/lib/libc/minimal/source/string/ |
D | strstr.c | 47 char c, sc; in strstr() local
|
D | strncasecmp.c | 13 unsigned char c = 1U; in strncasecmp() local
|
/Zephyr-Core-2.7.6/scripts/west_commands/zspdx/ |
D | spdxids.py | 7 def getSPDXIDSafeCharacter(c): argument
|
/Zephyr-Core-2.7.6/lib/libc/armstdc/src/ |
D | libc-hooks.c | 10 static int _stdout_hook_default(int c) in _stdout_hook_default()
|
/Zephyr-Core-2.7.6/boards/arm/nrf9160dk_nrf9160/ |
D | nrf52840_reset.c | 23 char c; in bt_hci_transport_setup() local
|
/Zephyr-Core-2.7.6/lib/util/fnmatch/ |
D | fnmatch.c | 61 char c, c2; in rangematch() local 107 char c, test; in fnmatchx() local
|