HelenOS sources

c                  40 abi/include/abi/fourcc.h #define FOURCC(a, b, c, d) \
c                  42 abi/include/abi/fourcc.h 	    (((uint32_t) (c)) << 16) | (((uint32_t) (d)) << 24))
c                  47 abi/include/abi/fourcc.h #define FOURCC_COMPACT(a, b, c, d) \
c                  49 abi/include/abi/fourcc.h 	    (CC_COMPACT(c) << 18) | (CC_COMPACT(d) << 25))
c                  64 boot/arch/arm64/include/arch/regutils.h #define UWORD64(c)  UINT64_C(c)
c                  70 boot/arch/arm64/include/arch/regutils.h #define UWORD64(c)  c
c                 185 boot/genarch/src/division.c int __divmodsi3(int a, int b, int *c)
c                 191 boot/genarch/src/division.c 		*c = rem;
c                 195 boot/genarch/src/division.c 	*c = -rem;
c                 200 boot/genarch/src/division.c     unsigned int *c)
c                 202 boot/genarch/src/division.c 	return divandmod32(a, b, c);
c                 205 boot/genarch/src/division.c long long __divmoddi3(long long a, long long b, long long *c)
c                 211 boot/genarch/src/division.c 		*c = rem;
c                 215 boot/genarch/src/division.c 	*c = -rem;
c                 220 boot/genarch/src/division.c     unsigned long long *c)
c                 222 boot/genarch/src/division.c 	return divandmod64(a, b, c);
c                  32 boot/generic/src/tar.c static int _digit_val(char c)
c                  34 boot/generic/src/tar.c 	if (c >= '0' && c <= '9') {
c                  35 boot/generic/src/tar.c 		return c - '0';
c                  37 boot/generic/src/tar.c 	if (c >= 'a' && c <= 'z') {
c                  38 boot/generic/src/tar.c 		return c - 'a' + 10;
c                  40 boot/generic/src/tar.c 	if (c >= 'A' && c <= 'Z') {
c                  41 boot/generic/src/tar.c 		return c - 'A' + 10;
c                 347 common/adt/odict.c 	odlink_t *c;
c                 363 common/adt/odict.c 		c = odlink->a;
c                 365 common/adt/odict.c 		c = odlink->b;
c                 370 common/adt/odict.c 		assert(c == NULL);
c                 376 common/adt/odict.c 	if (c != NULL && c->color == odc_red) {
c                 378 common/adt/odict.c 		c->color = odc_black;
c                 379 common/adt/odict.c 		odict_replace_subtree(c, odlink);
c                 387 common/adt/odict.c 	assert(c == NULL);
c                 897 common/adt/odict.c 	odict_color_t c;
c                 948 common/adt/odict.c 	c = a->color;
c                 950 common/adt/odict.c 	b->color = c;
c                  62 common/include/mem.h #define memchr(s, c, cnt)  __builtin_memchr((s), (c), (cnt))
c                  37 common/stdc/ctype.c int islower(int c)
c                  39 common/stdc/ctype.c 	return ((c >= 'a') && (c <= 'z'));
c                  42 common/stdc/ctype.c int isupper(int c)
c                  44 common/stdc/ctype.c 	return ((c >= 'A') && (c <= 'Z'));
c                  47 common/stdc/ctype.c int isalpha(int c)
c                  49 common/stdc/ctype.c 	return (islower(c) || isupper(c));
c                  52 common/stdc/ctype.c int isdigit(int c)
c                  54 common/stdc/ctype.c 	return ((c >= '0') && (c <= '9'));
c                  57 common/stdc/ctype.c int isalnum(int c)
c                  59 common/stdc/ctype.c 	return (isalpha(c) || isdigit(c));
c                  62 common/stdc/ctype.c int isblank(int c)
c                  64 common/stdc/ctype.c 	return c == ' ' || c == '\t';
c                  67 common/stdc/ctype.c int iscntrl(int c)
c                  69 common/stdc/ctype.c 	return (c >= 0 && c < 0x20) || c == 0x7E;
c                  72 common/stdc/ctype.c int isprint(int c)
c                  74 common/stdc/ctype.c 	return c >= 0 && c < 0x80 && !iscntrl(c);
c                  77 common/stdc/ctype.c int isgraph(int c)
c                  79 common/stdc/ctype.c 	return isprint(c) && c != ' ';
c                  82 common/stdc/ctype.c int isspace(int c)
c                  84 common/stdc/ctype.c 	switch (c) {
c                  97 common/stdc/ctype.c int ispunct(int c)
c                  99 common/stdc/ctype.c 	return !isspace(c) && !isalnum(c) && isprint(c);
c                 102 common/stdc/ctype.c int isxdigit(int c)
c                 104 common/stdc/ctype.c 	return isdigit(c) ||
c                 105 common/stdc/ctype.c 	    (c >= 'a' && c <= 'f') ||
c                 106 common/stdc/ctype.c 	    (c >= 'A' && c <= 'F');
c                 109 common/stdc/ctype.c int tolower(int c)
c                 111 common/stdc/ctype.c 	if (isupper(c))
c                 112 common/stdc/ctype.c 		return (c + ('a' - 'A'));
c                 114 common/stdc/ctype.c 		return c;
c                 117 common/stdc/ctype.c int toupper(int c)
c                 119 common/stdc/ctype.c 	if (islower(c))
c                 120 common/stdc/ctype.c 		return (c + ('A' - 'a'));
c                 122 common/stdc/ctype.c 		return c;
c                 282 common/stdc/mem.c void *memchr(const void *s, int c, size_t n)
c                 285 common/stdc/mem.c 	unsigned char uc = (unsigned char) c;
c                1061 common/str.c   	char32_t c;
c                1065 common/str.c   	while ((c = str_decode(src, &offset, STR_NO_LIMIT)) != 0) {
c                1066 common/str.c   		if (c > 0x10000) {
c                1071 common/str.c   			c = (c - 0x10000);
c                1072 common/str.c   			dest[idx] = 0xD800 | (c >> 10);
c                1073 common/str.c   			dest[idx + 1] = 0xDC00 | (c & 0x3FF);
c                1076 common/str.c   			dest[idx] = c;
c                1172 common/str.c   	char32_t c;
c                1183 common/str.c   		c = str_decode(src, &offset, STR_NO_LIMIT);
c                1184 common/str.c   		dest[di++] = c;
c                1185 common/str.c   	} while (c != '\0');
c                1262 common/str.c   	char32_t c;
c                1266 common/str.c   	while ((c = str_decode(str, &off, STR_NO_LIMIT))) {
c                1267 common/str.c   		if (c != ch) {
c                  54 common/strtol.c static inline int _digit_value(int c)
c                  56 common/strtol.c 	if (isdigit(c)) {
c                  57 common/strtol.c 		return c - '0';
c                  58 common/strtol.c 	} else if (islower(c)) {
c                  59 common/strtol.c 		return c - 'a' + 10;
c                  60 common/strtol.c 	} else if (isupper(c)) {
c                  61 common/strtol.c 		return c - 'A' + 10;
c                  47 kernel/arch/amd64/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  49 kernel/arch/amd64/include/arch/context.h 		(c)->pc = (uintptr_t) (_pc); \
c                  50 kernel/arch/amd64/include/arch/context.h 		(c)->sp = ((uintptr_t) (stack)) + (size) - SP_DELTA; \
c                  51 kernel/arch/amd64/include/arch/context.h 		(c)->rbp = 0; \
c                  47 kernel/arch/arm32/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  49 kernel/arch/arm32/include/arch/context.h 		(c)->pc = (uintptr_t) (_pc); \
c                  50 kernel/arch/arm32/include/arch/context.h 		(c)->sp = ((uintptr_t) (stack)) + (size) - SP_DELTA; \
c                  51 kernel/arch/arm32/include/arch/context.h 		(c)->fp = 0; \
c                  52 kernel/arch/arm32/include/arch/context.h 		(c)->cpu_mode = SUPERVISOR_MODE; \
c                  83 kernel/arch/arm32/include/arch/regutils.h GEN_STATUS_WRITE(current, cpsr, control, c);
c                  46 kernel/arch/arm64/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  48 kernel/arch/arm64/include/arch/context.h 		(c)->pc = (uint64_t) (_pc); \
c                  49 kernel/arch/arm64/include/arch/context.h 		(c)->sp = ((uint64_t) (stack)) + (size) - SP_DELTA; \
c                  51 kernel/arch/arm64/include/arch/context.h 		(c)->x29 = 0; \
c                  64 kernel/arch/arm64/include/arch/regutils.h #define UWORD64(c)  UINT64_C(c)
c                  70 kernel/arch/arm64/include/arch/regutils.h #define UWORD64(c)  c
c                 259 kernel/arch/arm64/src/arm64.c void early_putuchar(char32_t c)
c                 262 kernel/arch/arm64/src/arm64.c 	if (c == '\n')
c                 265 kernel/arch/arm64/src/arm64.c 	machine_early_uart_output(c);
c                 124 kernel/arch/arm64/src/mach/hikey960/hikey960.c static void hikey960_early_uart_output(char32_t c)
c                 134 kernel/arch/arm64/src/mach/hikey960/hikey960.c 	*uartdr = c;
c                 104 kernel/arch/arm64/src/machine_func.c void machine_early_uart_output(char32_t c)
c                 107 kernel/arch/arm64/src/machine_func.c 		machine_ops->machine_early_uart_output(c);
c                  51 kernel/arch/ia32/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  53 kernel/arch/ia32/include/arch/context.h 		(c)->pc = (uintptr_t) (_pc); \
c                  54 kernel/arch/ia32/include/arch/context.h 		(c)->sp = ((uintptr_t) (stack)) + (size) - SP_DELTA; \
c                  55 kernel/arch/ia32/include/arch/context.h 		(c)->ebp = 0; \
c                  54 kernel/arch/ia64/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  56 kernel/arch/ia64/include/arch/context.h 		(c)->pc = (uintptr_t) _pc; \
c                  57 kernel/arch/ia64/include/arch/context.h 		(c)->bsp = ((uintptr_t) stack) + ALIGN_UP((size / 2), REGISTER_STACK_ALIGNMENT); \
c                  58 kernel/arch/ia64/include/arch/context.h 		(c)->ar_pfs &= PFM_MASK; \
c                  59 kernel/arch/ia64/include/arch/context.h 		(c)->ar_fpsr = FPSR_TRAPS_ALL | FPSR_SF1_CTRL; \
c                  60 kernel/arch/ia64/include/arch/context.h 		(c)->sp = ((uintptr_t) stack) + ALIGN_UP((size / 2), STACK_ALIGNMENT) - SP_DELTA; \
c                  61 kernel/arch/ia64/include/arch/context.h 		(c)->r1 = (uintptr_t) &__gp; \
c                 109 kernel/arch/ia64/src/mm/tlb.c 	int c = cnt;
c                 129 kernel/arch/ia64/src/mm/tlb.c 	while (c >>= 1)
c                 422 kernel/arch/ia64/src/mm/tlb.c 	entry.ma = t->c ? MA_WRITEBACK : MA_UNCACHEABLE;
c                 452 kernel/arch/ia64/src/mm/tlb.c 	entry.ma = t->c ? MA_WRITEBACK : MA_UNCACHEABLE;
c                  72 kernel/arch/mips32/include/arch/mm/tlb.h 		unsigned c : 3;     /* cache coherency attribute */
c                  80 kernel/arch/mips32/include/arch/mm/tlb.h 		unsigned c : 3;     /* cache coherency attribute */
c                 270 kernel/arch/mips32/src/mm/tlb.c 	lo->c = cacheable ? PAGE_CACHEABLE_EXC_WRITE : PAGE_UNCACHED;
c                 307 kernel/arch/mips32/src/mm/tlb.c 		    lo0.g, lo0.v, lo0.d, lo0.c, LO_PFN2ADDR(lo0.pfn));
c                 309 kernel/arch/mips32/src/mm/tlb.c 		    lo1.g, lo1.v, lo1.d, lo1.c, LO_PFN2ADDR(lo1.pfn));
c                  53 kernel/arch/ppc32/include/arch/mm/tlb.h 	unsigned int c : 1;          /**< Change */
c                  70 kernel/arch/ppc32/include/arch/mm/tlb.h 	unsigned int c : 1;
c                 169 kernel/arch/ppc32/src/mm/pht.c 	phte[base + i].c = 0;
c                  45 kernel/arch/sparc64/include/arch/context.h #define context_set(c, _pc, stack, size) \
c                  47 kernel/arch/sparc64/include/arch/context.h 		(c)->pc = ((uintptr_t) _pc) - 8; \
c                  48 kernel/arch/sparc64/include/arch/context.h 		(c)->sp = ((uintptr_t) stack) + ALIGN_UP((size), \
c                  50 kernel/arch/sparc64/include/arch/context.h 		(c)->fp = -STACK_BIAS; \
c                  97 kernel/arch/sparc64/src/drivers/niagara.c static inline void do_putchar(char c)
c                 100 kernel/arch/sparc64/src/drivers/niagara.c 	while (__hypercall_fast1(CONS_PUTCHAR, c) == HV_EWOULDBLOCK)
c                 144 kernel/arch/sparc64/src/drivers/niagara.c 	uint64_t c;
c                 145 kernel/arch/sparc64/src/drivers/niagara.c 	if (__hypercall_fast_ret1(0, 0, 0, 0, 0, CONS_GETCHAR, &c) == HV_EOK) {
c                 151 kernel/arch/sparc64/src/drivers/niagara.c 			indev_push_character(instance->srlnin, c);
c                 157 kernel/arch/sparc64/src/drivers/niagara.c 			input_buffer.data[input_buffer.write_ptr] = (char) c;
c                 151 kernel/arch/sparc64/src/mm/sun4u/tlb.c 	data.cp = t->c;
c                 153 kernel/arch/sparc64/src/mm/sun4u/tlb.c 	data.cv = t->c;
c                 188 kernel/arch/sparc64/src/mm/sun4u/tlb.c 	data.cp = t->c;
c                 110 kernel/arch/sparc64/src/mm/sun4u/tsb.c 	tte->data.cp = t->c;	/* cp as cache in phys.-idxed, c as cacheable */
c                 154 kernel/arch/sparc64/src/mm/sun4u/tsb.c 	tte->data.cp = t->c;
c                 156 kernel/arch/sparc64/src/mm/sun4u/tsb.c 	tte->data.cv = t->c;
c                 172 kernel/arch/sparc64/src/mm/sun4v/tlb.c 	data.cp = t->c;
c                 174 kernel/arch/sparc64/src/mm/sun4v/tlb.c 	data.cv = t->c;
c                 199 kernel/arch/sparc64/src/mm/sun4v/tlb.c 	data.cp = t->c;
c                 110 kernel/arch/sparc64/src/mm/sun4v/tsb.c 	tte->data.cp = t->c;	/* cp as cache in phys.-idxed, c as cacheable */
c                 156 kernel/arch/sparc64/src/mm/sun4v/tsb.c 	tte->data.cp = t->c;	/* cp as cache in phys.-idxed, c as cacheable */
c                 158 kernel/arch/sparc64/src/mm/sun4v/tsb.c 	tte->data.cv = t->c;
c                  56 kernel/genarch/include/genarch/mm/as_ht.h 	unsigned c : 1;		/**< Cacheable. */
c                 173 kernel/genarch/src/mm/page_ht.c 		pte->c = (flags & PAGE_CACHEABLE) != 0;
c                 284 kernel/genarch/src/mm/page_ht.c 	assert(pte->c == t->c);
c                 188 kernel/genarch/src/softint/division.c int __divmodsi3(int a, int b, int *c)
c                 194 kernel/genarch/src/softint/division.c 		*c = rem;
c                 198 kernel/genarch/src/softint/division.c 	*c = -rem;
c                 203 kernel/genarch/src/softint/division.c     unsigned int *c)
c                 205 kernel/genarch/src/softint/division.c 	return divandmod32(a, b, c);
c                 208 kernel/genarch/src/softint/division.c long long __divmoddi3(long long a, long long b, long long *c)
c                 214 kernel/genarch/src/softint/division.c 		*c = rem;
c                 218 kernel/genarch/src/softint/division.c 	*c = -rem;
c                 223 kernel/genarch/src/softint/division.c     unsigned long long *c)
c                 225 kernel/genarch/src/softint/division.c 	return divandmod64(a, b, c);
c                 229 kernel/genarch/src/softint/division.c     unsigned long long *c)
c                 231 kernel/genarch/src/softint/division.c 	return divandmod64(a, b, c);
c                 347 kernel/generic/common/adt/odict.c 	odlink_t *c;
c                 363 kernel/generic/common/adt/odict.c 		c = odlink->a;
c                 365 kernel/generic/common/adt/odict.c 		c = odlink->b;
c                 370 kernel/generic/common/adt/odict.c 		assert(c == NULL);
c                 376 kernel/generic/common/adt/odict.c 	if (c != NULL && c->color == odc_red) {
c                 378 kernel/generic/common/adt/odict.c 		c->color = odc_black;
c                 379 kernel/generic/common/adt/odict.c 		odict_replace_subtree(c, odlink);
c                 387 kernel/generic/common/adt/odict.c 	assert(c == NULL);
c                 897 kernel/generic/common/adt/odict.c 	odict_color_t c;
c                 948 kernel/generic/common/adt/odict.c 	c = a->color;
c                 950 kernel/generic/common/adt/odict.c 	b->color = c;
c                  62 kernel/generic/common/include/mem.h #define memchr(s, c, cnt)  __builtin_memchr((s), (c), (cnt))
c                  37 kernel/generic/common/stdc/ctype.c int islower(int c)
c                  39 kernel/generic/common/stdc/ctype.c 	return ((c >= 'a') && (c <= 'z'));
c                  42 kernel/generic/common/stdc/ctype.c int isupper(int c)
c                  44 kernel/generic/common/stdc/ctype.c 	return ((c >= 'A') && (c <= 'Z'));
c                  47 kernel/generic/common/stdc/ctype.c int isalpha(int c)
c                  49 kernel/generic/common/stdc/ctype.c 	return (islower(c) || isupper(c));
c                  52 kernel/generic/common/stdc/ctype.c int isdigit(int c)
c                  54 kernel/generic/common/stdc/ctype.c 	return ((c >= '0') && (c <= '9'));
c                  57 kernel/generic/common/stdc/ctype.c int isalnum(int c)
c                  59 kernel/generic/common/stdc/ctype.c 	return (isalpha(c) || isdigit(c));
c                  62 kernel/generic/common/stdc/ctype.c int isblank(int c)
c                  64 kernel/generic/common/stdc/ctype.c 	return c == ' ' || c == '\t';
c                  67 kernel/generic/common/stdc/ctype.c int iscntrl(int c)
c                  69 kernel/generic/common/stdc/ctype.c 	return (c >= 0 && c < 0x20) || c == 0x7E;
c                  72 kernel/generic/common/stdc/ctype.c int isprint(int c)
c                  74 kernel/generic/common/stdc/ctype.c 	return c >= 0 && c < 0x80 && !iscntrl(c);
c                  77 kernel/generic/common/stdc/ctype.c int isgraph(int c)
c                  79 kernel/generic/common/stdc/ctype.c 	return isprint(c) && c != ' ';
c                  82 kernel/generic/common/stdc/ctype.c int isspace(int c)
c                  84 kernel/generic/common/stdc/ctype.c 	switch (c) {
c                  97 kernel/generic/common/stdc/ctype.c int ispunct(int c)
c                  99 kernel/generic/common/stdc/ctype.c 	return !isspace(c) && !isalnum(c) && isprint(c);
c                 102 kernel/generic/common/stdc/ctype.c int isxdigit(int c)
c                 104 kernel/generic/common/stdc/ctype.c 	return isdigit(c) ||
c                 105 kernel/generic/common/stdc/ctype.c 	    (c >= 'a' && c <= 'f') ||
c                 106 kernel/generic/common/stdc/ctype.c 	    (c >= 'A' && c <= 'F');
c                 109 kernel/generic/common/stdc/ctype.c int tolower(int c)
c                 111 kernel/generic/common/stdc/ctype.c 	if (isupper(c))
c                 112 kernel/generic/common/stdc/ctype.c 		return (c + ('a' - 'A'));
c                 114 kernel/generic/common/stdc/ctype.c 		return c;
c                 117 kernel/generic/common/stdc/ctype.c int toupper(int c)
c                 119 kernel/generic/common/stdc/ctype.c 	if (islower(c))
c                 120 kernel/generic/common/stdc/ctype.c 		return (c + ('A' - 'a'));
c                 122 kernel/generic/common/stdc/ctype.c 		return c;
c                 282 kernel/generic/common/stdc/mem.c void *memchr(const void *s, int c, size_t n)
c                 285 kernel/generic/common/stdc/mem.c 	unsigned char uc = (unsigned char) c;
c                1061 kernel/generic/common/str.c 	char32_t c;
c                1065 kernel/generic/common/str.c 	while ((c = str_decode(src, &offset, STR_NO_LIMIT)) != 0) {
c                1066 kernel/generic/common/str.c 		if (c > 0x10000) {
c                1071 kernel/generic/common/str.c 			c = (c - 0x10000);
c                1072 kernel/generic/common/str.c 			dest[idx] = 0xD800 | (c >> 10);
c                1073 kernel/generic/common/str.c 			dest[idx + 1] = 0xDC00 | (c & 0x3FF);
c                1076 kernel/generic/common/str.c 			dest[idx] = c;
c                1172 kernel/generic/common/str.c 	char32_t c;
c                1183 kernel/generic/common/str.c 		c = str_decode(src, &offset, STR_NO_LIMIT);
c                1184 kernel/generic/common/str.c 		dest[di++] = c;
c                1185 kernel/generic/common/str.c 	} while (c != '\0');
c                1262 kernel/generic/common/str.c 	char32_t c;
c                1266 kernel/generic/common/str.c 	while ((c = str_decode(str, &off, STR_NO_LIMIT))) {
c                1267 kernel/generic/common/str.c 		if (c != ch) {
c                  54 kernel/generic/common/strtol.c static inline int _digit_value(int c)
c                  56 kernel/generic/common/strtol.c 	if (isdigit(c)) {
c                  57 kernel/generic/common/strtol.c 		return c - '0';
c                  58 kernel/generic/common/strtol.c 	} else if (islower(c)) {
c                  59 kernel/generic/common/strtol.c 		return c - 'a' + 10;
c                  60 kernel/generic/common/strtol.c 	} else if (isupper(c)) {
c                  61 kernel/generic/common/strtol.c 		return c - 'A' + 10;
c                 105 kernel/generic/include/macros.h #define islower(c)     (((c) >= 'a') && ((c) <= 'z'))
c                 106 kernel/generic/include/macros.h #define isupper(c)     (((c) >= 'A') && ((c) <= 'Z'))
c                 107 kernel/generic/include/macros.h #define isalpha(c)     (is_lower((c)) || is_upper((c)))
c                 108 kernel/generic/include/macros.h #define isalphanum(c)  (is_alpha((c)) || is_digit((c)))
c                 109 kernel/generic/include/macros.h #define isspace(c) \
c                 110 kernel/generic/include/macros.h 	(((c) == ' ') || ((c) == '\t') || ((c) == '\n') || ((c) == '\r'))
c                 115 kernel/generic/include/macros.h #define min3(a, b, c)  ((a) < (b) ? (min(a, c)) : (min(b, c)))
c                 116 kernel/generic/include/macros.h #define max3(a, b, c)  ((a) > (b) ? (max(a, c)) : (max(b, c)))
c                 104 uspace/app/bdsh/cmds/builtins/batch/batch.c 		int c = fgetc(batch);
c                 106 uspace/app/bdsh/cmds/builtins/batch/batch.c 			if (c == '\n' || c == EOF || cur == end) {
c                 121 uspace/app/bdsh/cmds/builtins/batch/batch.c 				if (rc == 0 && c != EOF) {
c                 129 uspace/app/bdsh/cmds/builtins/batch/batch.c 				*cur++ = c;
c                 131 uspace/app/bdsh/cmds/builtins/batch/batch.c 			c = fgetc(batch);
c                 157 uspace/app/bdsh/cmds/modules/cat/cat.c static void paged_char(char32_t c)
c                 163 uspace/app/bdsh/cmds/modules/cat/cat.c 	putuchar(c);
c                 164 uspace/app/bdsh/cmds/modules/cat/cat.c 	last_char_was_newline = c == '\n';
c                 167 uspace/app/bdsh/cmds/modules/cat/cat.c 		if (c == '\n' || chars_remaining == 0) {
c                 272 uspace/app/bdsh/cmds/modules/cat/cat.c 					char32_t c = str_decode(buff, &offset, bytes);
c                 273 uspace/app/bdsh/cmds/modules/cat/cat.c 					if (c == 0) {
c                 276 uspace/app/bdsh/cmds/modules/cat/cat.c 					} else if (c == U_SPECIAL && offset + 2 >= (size_t)bytes) {
c                 285 uspace/app/bdsh/cmds/modules/cat/cat.c 					paged_char(c);
c                 314 uspace/app/bdsh/cmds/modules/cat/cat.c 	int c, opt_ind;
c                 341 uspace/app/bdsh/cmds/modules/cat/cat.c 	c = 0;
c                 346 uspace/app/bdsh/cmds/modules/cat/cat.c 	while (c != -1) {
c                 347 uspace/app/bdsh/cmds/modules/cat/cat.c 		c = getopt_long(argc, argv, "xhvmH:t:b:sn", long_options, &opt_ind);
c                 348 uspace/app/bdsh/cmds/modules/cat/cat.c 		switch (c) {
c                 121 uspace/app/bdsh/cmds/modules/cmp/cmp.c 	int c, opt_ind;
c                 125 uspace/app/bdsh/cmds/modules/cmp/cmp.c 	c = 0;
c                 130 uspace/app/bdsh/cmds/modules/cmp/cmp.c 	while (c != -1) {
c                 131 uspace/app/bdsh/cmds/modules/cmp/cmp.c 		c = getopt_long(argc, argv, "hv", long_options, &opt_ind);
c                 132 uspace/app/bdsh/cmds/modules/cmp/cmp.c 		switch (c) {
c                 488 uspace/app/bdsh/cmds/modules/cp/cp.c 	int c, opt_ind;
c                 494 uspace/app/bdsh/cmds/modules/cp/cp.c 	c = 0;
c                 499 uspace/app/bdsh/cmds/modules/cp/cp.c 	while (c != -1) {
c                 500 uspace/app/bdsh/cmds/modules/cp/cp.c 		c = getopt_long(argc, argv, "hvVfirb:", long_options, &opt_ind);
c                 501 uspace/app/bdsh/cmds/modules/cp/cp.c 		switch (c) {
c                 419 uspace/app/bdsh/cmds/modules/ls/ls.c 	int c, opt_ind;
c                 430 uspace/app/bdsh/cmds/modules/ls/ls.c 	c = 0;
c                 435 uspace/app/bdsh/cmds/modules/ls/ls.c 	while (c != -1) {
c                 436 uspace/app/bdsh/cmds/modules/ls/ls.c 		c = getopt_long(argc, argv, "hure1", long_options, &opt_ind);
c                 437 uspace/app/bdsh/cmds/modules/ls/ls.c 		switch (c) {
c                 166 uspace/app/bdsh/cmds/modules/mkdir/mkdir.c 	int c, opt_ind;
c                 170 uspace/app/bdsh/cmds/modules/mkdir/mkdir.c 	c = 0;
c                 175 uspace/app/bdsh/cmds/modules/mkdir/mkdir.c 	while (c != -1) {
c                 176 uspace/app/bdsh/cmds/modules/mkdir/mkdir.c 		c = getopt_long(argc, argv, "pvhVfm:", long_options, &opt_ind);
c                 177 uspace/app/bdsh/cmds/modules/mkdir/mkdir.c 		switch (c) {
c                 126 uspace/app/bdsh/cmds/modules/mkfile/mkfile.c 	int c, opt_ind;
c                 142 uspace/app/bdsh/cmds/modules/mkfile/mkfile.c 	c = 0;
c                 147 uspace/app/bdsh/cmds/modules/mkfile/mkfile.c 	while (c != -1) {
c                 148 uspace/app/bdsh/cmds/modules/mkfile/mkfile.c 		c = getopt_long(argc, argv, "ps:h", long_options, &opt_ind);
c                 149 uspace/app/bdsh/cmds/modules/mkfile/mkfile.c 		switch (c) {
c                 135 uspace/app/bdsh/cmds/modules/mount/mount.c 	int c, opt_ind;
c                 142 uspace/app/bdsh/cmds/modules/mount/mount.c 	c = 0;
c                 147 uspace/app/bdsh/cmds/modules/mount/mount.c 	while (c != -1) {
c                 148 uspace/app/bdsh/cmds/modules/mount/mount.c 		c = getopt_long(argc, argv, "i:ht", long_options, &opt_ind);
c                 149 uspace/app/bdsh/cmds/modules/mount/mount.c 		switch (c) {
c                 251 uspace/app/bdsh/cmds/modules/rm/rm.c 	int c, opt_ind;
c                 269 uspace/app/bdsh/cmds/modules/rm/rm.c 	c = 0;
c                 274 uspace/app/bdsh/cmds/modules/rm/rm.c 	while (c != -1) {
c                 275 uspace/app/bdsh/cmds/modules/rm/rm.c 		c = getopt_long(argc, argv, "hvrfs", long_options, &opt_ind);
c                 276 uspace/app/bdsh/cmds/modules/rm/rm.c 		switch (c) {
c                  81 uspace/app/bdsh/cmds/modules/touch/touch.c 	int c;
c                  90 uspace/app/bdsh/cmds/modules/touch/touch.c 	c = 0;
c                  95 uspace/app/bdsh/cmds/modules/touch/touch.c 	while (c != -1) {
c                  96 uspace/app/bdsh/cmds/modules/touch/touch.c 		c = getopt_long(argc, argv, "c", long_options, &longind);
c                  97 uspace/app/bdsh/cmds/modules/touch/touch.c 		switch (c) {
c                 370 uspace/app/calculator/calculator.c static bool is_digit(char c)
c                 372 uspace/app/calculator/calculator.c 	return ((c >= '0') && (c <= '9'));
c                 375 uspace/app/calculator/calculator.c static int get_digit(char c)
c                 377 uspace/app/calculator/calculator.c 	assert(is_digit(c));
c                 379 uspace/app/calculator/calculator.c 	return (c - '0');
c                 382 uspace/app/calculator/calculator.c static bool is_plus(char c)
c                 384 uspace/app/calculator/calculator.c 	return (c == '+');
c                 387 uspace/app/calculator/calculator.c static bool is_minus(char c)
c                 389 uspace/app/calculator/calculator.c 	return (c == '-');
c                 392 uspace/app/calculator/calculator.c static bool is_finish(char c)
c                 394 uspace/app/calculator/calculator.c 	return (c == 0);
c                 397 uspace/app/calculator/calculator.c static operator_t get_operator(char c)
c                 399 uspace/app/calculator/calculator.c 	switch (c) {
c                 413 uspace/app/calculator/calculator.c static bool is_operator(char c)
c                 415 uspace/app/calculator/calculator.c 	return (get_operator(c) != OPERATOR_NONE);
c                  54 uspace/app/date/date.c 	int c;
c                  66 uspace/app/date/date.c 	while ((c = getopt(argc, argv, "hd:t:")) != -1) {
c                  67 uspace/app/date/date.c 		switch (c) {
c                 196 uspace/app/edit/edit.c static void insert_char(char32_t c);
c                 688 uspace/app/edit/edit.c 		if (ev->c >= 32 || ev->c == '\t') {
c                 690 uspace/app/edit/edit.c 			insert_char(ev->c);
c                 712 uspace/app/edit/edit.c 		if (ev->c >= 32 || ev->c == '\t') {
c                 714 uspace/app/edit/edit.c 			insert_char(ev->c);
c                 957 uspace/app/edit/edit.c 	char32_t c;
c                 976 uspace/app/edit/edit.c 		c = str_decode(buf, &off, bcnt);
c                 977 uspace/app/edit/edit.c 		if (c == '\0')
c                 983 uspace/app/edit/edit.c 		insert_char(c);
c                1246 uspace/app/edit/edit.c 	char32_t c;
c                1315 uspace/app/edit/edit.c 			c = str_decode(row_buf, &pos, size);
c                1316 uspace/app/edit/edit.c 			if (c != '\t') {
c                1318 uspace/app/edit/edit.c 				rc = chr_encode(c, cbuf, &cpos, sizeof(cbuf));
c                1538 uspace/app/edit/edit.c static void insert_char(char32_t c)
c                1547 uspace/app/edit/edit.c 	chr_encode(c, cbuf, &offs, STR_BOUNDS(1) + 1);
c                1553 uspace/app/edit/edit.c 	if (c == '\n')
c                2007 uspace/app/edit/edit.c 	char32_t c;
c                2017 uspace/app/edit/edit.c 		c = str_decode(str, &off, STR_NO_LIMIT);
c                2018 uspace/app/edit/edit.c 		if (c == '\0')
c                2021 uspace/app/edit/edit.c 		insert_char(c);
c                 197 uspace/app/edit/sheet.c 	char32_t c;
c                 206 uspace/app/edit/sheet.c 		c = str_decode(spp, &off, copy_sz);
c                 207 uspace/app/edit/sheet.c 	} while (c != '\0');
c                 224 uspace/app/edit/sheet.c 	char32_t c;
c                 243 uspace/app/edit/sheet.c 		c = str_decode(sh->data, &cur_pos, sh->text_size);
c                 244 uspace/app/edit/sheet.c 		if (c == '\n') {
c                 247 uspace/app/edit/sheet.c 		} else if (c == '\t') {
c                 293 uspace/app/edit/sheet.c 	char32_t c;
c                 301 uspace/app/edit/sheet.c 		c = str_decode(sh->data, &off, sh->text_size);
c                 302 uspace/app/edit/sheet.c 		if (c == '\n') {
c                 305 uspace/app/edit/sheet.c 		} else if (c == '\t') {
c                 393 uspace/app/fontedit/fontedit.c 	if (event->c == '\0')
c                 396 uspace/app/fontedit/fontedit.c 	printf("Character '%lc'\n", event->c);
c                 397 uspace/app/fontedit/fontedit.c 	snprintf(str, sizeof(str), "%lc", event->c);
c                 792 uspace/app/mkexfat/mkexfat.c 	int c, opt_ind;
c                 804 uspace/app/mkexfat/mkexfat.c 	c = 0;
c                 807 uspace/app/mkexfat/mkexfat.c 	while (c != -1) {
c                 808 uspace/app/mkexfat/mkexfat.c 		c = getopt_long(argc, argv, "hs:c:L:",
c                 810 uspace/app/mkexfat/mkexfat.c 		switch (c) {
c                 112 uspace/app/mkmfs/mkmfs.c 	int c, opt_ind;
c                 135 uspace/app/mkmfs/mkmfs.c 	c = 0;
c                 138 uspace/app/mkmfs/mkmfs.c 	while (c != -1) {
c                 139 uspace/app/mkmfs/mkmfs.c 		c = getopt_long(argc, argv, "lh12b:i:",
c                 141 uspace/app/mkmfs/mkmfs.c 		switch (c) {
c                 198 uspace/app/nav/test/panel.c 	event.c = '\0';
c                 213 uspace/app/nav/test/panel.c 	event.c = '\0';
c                  73 uspace/app/netecho/netecho.c static void send_char(char32_t c)
c                  80 uspace/app/netecho/netecho.c 	chr_encode(c, cbuf, &offs, STR_BOUNDS(1));
c                  95 uspace/app/netecho/netecho.c 		if (ev->c >= 32 || ev->c == '\t' || ev->c == '\b') {
c                  96 uspace/app/netecho/netecho.c 			send_char(ev->c);
c                  60 uspace/app/nterm/nterm.c static void send_char(char32_t c)
c                  67 uspace/app/nterm/nterm.c 	chr_encode(c, cbuf, &offs, STR_BOUNDS(1));
c                  82 uspace/app/nterm/nterm.c 		if (ev->c >= 32 || ev->c == '\t' || ev->c == '\b') {
c                  83 uspace/app/nterm/nterm.c 			send_char(ev->c);
c                 235 uspace/app/ping/ping.c 	int c;
c                 236 uspace/app/ping/ping.c 	while ((c = getopt(argc, argv, short_options)) != -1) {
c                 237 uspace/app/ping/ping.c 		switch (c) {
c                  57 uspace/app/sbi/src/lex.c static bool_t is_wstart(char c);
c                  58 uspace/app/sbi/src/lex.c static bool_t is_wcont(char c);
c                  59 uspace/app/sbi/src/lex.c static bool_t is_digit(char c);
c                  65 uspace/app/sbi/src/lex.c static int digit_value(char c);
c                 804 uspace/app/sbi/src/lex.c static bool_t is_wstart(char c)
c                 806 uspace/app/sbi/src/lex.c 	return ((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z')) ||
c                 807 uspace/app/sbi/src/lex.c 	    (c == '_');
c                 816 uspace/app/sbi/src/lex.c static bool_t is_wcont(char c)
c                 818 uspace/app/sbi/src/lex.c 	return is_digit(c) || is_wstart(c);
c                 826 uspace/app/sbi/src/lex.c static bool_t is_digit(char c)
c                 828 uspace/app/sbi/src/lex.c 	return ((c >= '0') && (c <= '9'));
c                 836 uspace/app/sbi/src/lex.c static int digit_value(char c)
c                 838 uspace/app/sbi/src/lex.c 	return (c - '0');
c                  96 uspace/app/sbi/src/os/helenos.c 	char32_t c;
c                 102 uspace/app/sbi/src/os/helenos.c 		c = str_decode(str, &offset, STR_NO_LIMIT);
c                 103 uspace/app/sbi/src/os/helenos.c 		assert(c != '\0');
c                 104 uspace/app/sbi/src/os/helenos.c 		assert(c != U_SPECIAL);
c                 105 uspace/app/sbi/src/os/helenos.c 		(void) c;
c                 157 uspace/app/sbi/src/os/helenos.c 	char32_t c = 0;
c                 164 uspace/app/sbi/src/os/helenos.c 		c = str_decode(str, &offset, STR_NO_LIMIT);
c                 165 uspace/app/sbi/src/os/helenos.c 		if (c == '\0')
c                 167 uspace/app/sbi/src/os/helenos.c 		if (c == U_SPECIAL)
c                 171 uspace/app/sbi/src/os/helenos.c 	*out_char = (int) c;
c                  58 uspace/app/sysinfo/sysinfo.c 		char32_t c = str_decode(data, &offset, size);
c                  59 uspace/app/sysinfo/sysinfo.c 		printf("%lc", (wint_t) c);
c                 486 uspace/app/terminal/terminal.c 			    event->ev.key.c != 0) {
c                 488 uspace/app/terminal/terminal.c 					event->ev.key.c,
c                  76 uspace/app/tester/stdio/stdio1.c 		int c = fgetc(file);
c                  77 uspace/app/tester/stdio/stdio1.c 		if (c == EOF)
c                  71 uspace/app/tester/stdio/stdio2.c 		int c = fgetc(file);
c                  72 uspace/app/tester/stdio/stdio2.c 		if (c == EOF)
c                  74 uspace/app/tester/stdio/stdio2.c 		TPRINTF("%c", c);
c                 175 uspace/app/tetris/scores.c 		} else if (kev->c != '\0') {
c                 177 uspace/app/tetris/scores.c 				if (chr_encode(kev->c, scores[NUMSPOTS - 1].hs_name,
c                 147 uspace/app/tetris/screen.c void moveto(sysarg_t r, sysarg_t c)
c                 150 uspace/app/tetris/screen.c 	console_set_pos(console, c, r);
c                 247 uspace/app/tetris/screen.c 		static int r = 5, c = 2;
c                 254 uspace/app/tetris/screen.c 		moveto(r - 1, c - 1);
c                 256 uspace/app/tetris/screen.c 		moveto(r, c - 1);
c                 258 uspace/app/tetris/screen.c 		moveto(r + 1, c - 1);
c                 260 uspace/app/tetris/screen.c 		moveto(r + 2, c - 1);
c                 263 uspace/app/tetris/screen.c 		moveto(r - 3, c - 2);
c                 268 uspace/app/tetris/screen.c 		moveto(r, 2 * c);
c                 271 uspace/app/tetris/screen.c 			t = c + r * B_COLS;
c                 399 uspace/app/tetris/screen.c 	char32_t c = 0;
c                 401 uspace/app/tetris/screen.c 	while (c == 0) {
c                 413 uspace/app/tetris/screen.c 			c = event.ev.key.c;
c                 416 uspace/app/tetris/screen.c 	return (int) c;
c                 424 uspace/app/tetris/screen.c 	char32_t c = 0;
c                 427 uspace/app/tetris/screen.c 	while (c == 0) {
c                 437 uspace/app/tetris/screen.c 			c = event.ev.key.c;
c                 440 uspace/app/tetris/screen.c 	return (int) c;
c                  70 uspace/app/tetris/screen.h extern void moveto(sysarg_t r, sysarg_t c);
c                 246 uspace/app/tetris/tetris.c 	int c;
c                 335 uspace/app/tetris/tetris.c 			c = tgetchar();
c                 336 uspace/app/tetris/tetris.c 			if (c < 0) {
c                 370 uspace/app/tetris/tetris.c 			if (c == keys[5]) {
c                 375 uspace/app/tetris/tetris.c 			if (c == keys[4]) {
c                 393 uspace/app/tetris/tetris.c 			if (c == keys[0]) {
c                 400 uspace/app/tetris/tetris.c 			if (c == keys[1]) {
c                 410 uspace/app/tetris/tetris.c 			if (c == keys[2]) {
c                 417 uspace/app/tetris/tetris.c 			if (c == keys[3]) {
c                 426 uspace/app/tetris/tetris.c 			if (c == '\f') {
c                  81 uspace/app/tmon/tests.c 	int c;
c                  83 uspace/app/tmon/tests.c 	c = 0;
c                  86 uspace/app/tmon/tests.c 	while (c != -1) {
c                  87 uspace/app/tmon/tests.c 		c = getopt_long(argc, argv, short_options, long_options, NULL);
c                  88 uspace/app/tmon/tests.c 		switch (c) {
c                 114 uspace/app/top/screen.c 	sysarg_t c;
c                 116 uspace/app/top/screen.c 	screen_get_pos(&c, &r);
c                 119 uspace/app/top/screen.c 	for (i = c + 1; i < cols; i++)
c                 167 uspace/app/top/screen.c 	sysarg_t c;
c                 169 uspace/app/top/screen.c 	screen_get_pos(&c, &r);
c                 171 uspace/app/top/screen.c 	if (c < cols) {
c                 172 uspace/app/top/screen.c 		int pos = cols - c - 1;
c                 558 uspace/app/top/screen.c 	char32_t c = 0;
c                 560 uspace/app/top/screen.c 	while (c == 0) {
c                 576 uspace/app/top/screen.c 			c = event.ev.key.c;
c                 579 uspace/app/top/screen.c 	*rch = (int) c;
c                 586 uspace/app/top/top.c 	int c;
c                 599 uspace/app/top/top.c 		rc = tgetchar(UPDATE_INTERVAL, &c);
c                 611 uspace/app/top/top.c 			c = -1;
c                 617 uspace/app/top/top.c 		if (screen_mode == SCREEN_HELP && c >= 0) {
c                 618 uspace/app/top/top.c 			if (c == 'h' || c == '?')
c                 619 uspace/app/top/top.c 				c = -1;
c                 624 uspace/app/top/top.c 		if (screen_mode == SCREEN_SORT && c >= 0) {
c                 626 uspace/app/top/top.c 				if (data.table.columns[i].key == c) {
c                 632 uspace/app/top/top.c 			c = -1;
c                 635 uspace/app/top/top.c 		switch (c) {
c                 670 uspace/app/top/top.c 			show_warning("Unknown command \"%c\", use \"h\" for help", c);
c                 697 uspace/app/trace/trace.c 	const char *c = text;
c                 699 uspace/app/trace/trace.c 	while (*c) {
c                 700 uspace/app/trace/trace.c 		switch (*c) {
c                 714 uspace/app/trace/trace.c 			printf("Unexpected event type '%c'.\n", *c);
c                 718 uspace/app/trace/trace.c 		++c;
c                 158 uspace/app/websrv/websrv.c static errno_t recv_char(recv_t *recv, char *c)
c                 176 uspace/app/websrv/websrv.c 	*c = recv->rbuf[recv->rbuf_out++];
c                 184 uspace/app/websrv/websrv.c 	char c = '\0';
c                 187 uspace/app/websrv/websrv.c 		char prev = c;
c                 188 uspace/app/websrv/websrv.c 		errno_t rc = recv_char(recv, &c);
c                 193 uspace/app/websrv/websrv.c 		*bp++ = c;
c                 194 uspace/app/websrv/websrv.c 		if ((prev == '\r') && (c == '\n'))
c                 219 uspace/app/websrv/websrv.c 		char c = *cp++;
c                 220 uspace/app/websrv/websrv.c 		if (c == '/')
c                 149 uspace/dist/src/c/demos/edit/edit.c static void insert_char(char32_t c);
c                 360 uspace/dist/src/c/demos/edit/edit.c 		if (ev->c >= 32 || ev->c == '\t') {
c                 362 uspace/dist/src/c/demos/edit/edit.c 			insert_char(ev->c);
c                 384 uspace/dist/src/c/demos/edit/edit.c 		if (ev->c >= 32 || ev->c == '\t') {
c                 386 uspace/dist/src/c/demos/edit/edit.c 			insert_char(ev->c);
c                 671 uspace/dist/src/c/demos/edit/edit.c 					if (kev->c >= 32 && nc < max_len) {
c                 672 uspace/dist/src/c/demos/edit/edit.c 						putuchar(kev->c);
c                 674 uspace/dist/src/c/demos/edit/edit.c 						buffer[nc++] = kev->c;
c                 698 uspace/dist/src/c/demos/edit/edit.c 	char32_t c;
c                 717 uspace/dist/src/c/demos/edit/edit.c 		c = str_decode(buf, &off, bcnt);
c                 718 uspace/dist/src/c/demos/edit/edit.c 		if (c == '\0')
c                 724 uspace/dist/src/c/demos/edit/edit.c 		insert_char(c);
c                 849 uspace/dist/src/c/demos/edit/edit.c 	char32_t c;
c                 911 uspace/dist/src/c/demos/edit/edit.c 			c = str_decode(row_buf, &pos, size);
c                 912 uspace/dist/src/c/demos/edit/edit.c 			if (c != '\t') {
c                 913 uspace/dist/src/c/demos/edit/edit.c 				printf("%lc", (wint_t) c);
c                1054 uspace/dist/src/c/demos/edit/edit.c static void insert_char(char32_t c)
c                1063 uspace/dist/src/c/demos/edit/edit.c 	chr_encode(c, cbuf, &offs, STR_BOUNDS(1) + 1);
c                1069 uspace/dist/src/c/demos/edit/edit.c 	if (c == '\n')
c                1512 uspace/dist/src/c/demos/edit/edit.c 	char32_t c;
c                1522 uspace/dist/src/c/demos/edit/edit.c 		c = str_decode(str, &off, STR_NO_LIMIT);
c                1523 uspace/dist/src/c/demos/edit/edit.c 		if (c == '\0')
c                1526 uspace/dist/src/c/demos/edit/edit.c 		insert_char(c);
c                 195 uspace/dist/src/c/demos/edit/sheet.c 	char32_t c;
c                 204 uspace/dist/src/c/demos/edit/sheet.c 		c = str_decode(spp, &off, copy_sz);
c                 205 uspace/dist/src/c/demos/edit/sheet.c 	} while (c != '\0');
c                 222 uspace/dist/src/c/demos/edit/sheet.c 	char32_t c;
c                 241 uspace/dist/src/c/demos/edit/sheet.c 		c = str_decode(sh->data, &cur_pos, sh->text_size);
c                 242 uspace/dist/src/c/demos/edit/sheet.c 		if (c == '\n') {
c                 245 uspace/dist/src/c/demos/edit/sheet.c 		} else if (c == '\t') {
c                 291 uspace/dist/src/c/demos/edit/sheet.c 	char32_t c;
c                 299 uspace/dist/src/c/demos/edit/sheet.c 		c = str_decode(sh->data, &off, sh->text_size);
c                 300 uspace/dist/src/c/demos/edit/sheet.c 		if (c == '\n') {
c                 303 uspace/dist/src/c/demos/edit/sheet.c 		} else if (c == '\t') {
c                 171 uspace/dist/src/c/demos/tetris/scores.c 		} else if (kev->c != '\0') {
c                 173 uspace/dist/src/c/demos/tetris/scores.c 				if (chr_encode(kev->c, scores[NUMSPOTS - 1].hs_name,
c                 132 uspace/dist/src/c/demos/tetris/screen.c void moveto(sysarg_t r, sysarg_t c)
c                 135 uspace/dist/src/c/demos/tetris/screen.c 	console_set_pos(console, c, r);
c                 227 uspace/dist/src/c/demos/tetris/screen.c 		static int r = 5, c = 2;
c                 234 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r - 1, c - 1);
c                 236 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r, c - 1);
c                 238 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r + 1, c - 1);
c                 240 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r + 2, c - 1);
c                 243 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r - 3, c - 2);
c                 248 uspace/dist/src/c/demos/tetris/screen.c 		moveto(r, 2 * c);
c                 251 uspace/dist/src/c/demos/tetris/screen.c 			t = c + r * B_COLS;
c                 373 uspace/dist/src/c/demos/tetris/screen.c 	char32_t c = 0;
c                 375 uspace/dist/src/c/demos/tetris/screen.c 	while (c == 0) {
c                 384 uspace/dist/src/c/demos/tetris/screen.c 			c = event.ev.key.c;
c                 387 uspace/dist/src/c/demos/tetris/screen.c 	return (int) c;
c                 395 uspace/dist/src/c/demos/tetris/screen.c 	char32_t c = 0;
c                 397 uspace/dist/src/c/demos/tetris/screen.c 	while (c == 0) {
c                 404 uspace/dist/src/c/demos/tetris/screen.c 			c = event.ev.key.c;
c                 407 uspace/dist/src/c/demos/tetris/screen.c 	return (int) c;
c                  70 uspace/dist/src/c/demos/tetris/screen.h extern void moveto(sysarg_t r, sysarg_t c);
c                 246 uspace/dist/src/c/demos/tetris/tetris.c 	int c;
c                 333 uspace/dist/src/c/demos/tetris/tetris.c 			c = tgetchar();
c                 334 uspace/dist/src/c/demos/tetris/tetris.c 			if (c < 0) {
c                 368 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[5]) {
c                 373 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[4]) {
c                 391 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[0]) {
c                 398 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[1]) {
c                 408 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[2]) {
c                 415 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == keys[3]) {
c                 424 uspace/dist/src/c/demos/tetris/tetris.c 			if (c == '\f') {
c                 116 uspace/dist/src/c/demos/top/screen.c 	sysarg_t c;
c                 118 uspace/dist/src/c/demos/top/screen.c 	screen_get_pos(&c, &r);
c                 121 uspace/dist/src/c/demos/top/screen.c 	for (i = c + 1; i < cols; i++)
c                 169 uspace/dist/src/c/demos/top/screen.c 	sysarg_t c;
c                 171 uspace/dist/src/c/demos/top/screen.c 	screen_get_pos(&c, &r);
c                 173 uspace/dist/src/c/demos/top/screen.c 	if (c < cols) {
c                 174 uspace/dist/src/c/demos/top/screen.c 		int pos = cols - c - 1;
c                 555 uspace/dist/src/c/demos/top/screen.c 	char32_t c = 0;
c                 557 uspace/dist/src/c/demos/top/screen.c 	while (c == 0) {
c                 568 uspace/dist/src/c/demos/top/screen.c 			c = event.ev.key.c;
c                 571 uspace/dist/src/c/demos/top/screen.c 	return (int) c;
c                 598 uspace/dist/src/c/demos/top/top.c 		int c = tgetchar(UPDATE_INTERVAL);
c                 600 uspace/dist/src/c/demos/top/top.c 		if (c < 0) { /* timeout */
c                 610 uspace/dist/src/c/demos/top/top.c 			c = -1;
c                 613 uspace/dist/src/c/demos/top/top.c 		if (screen_mode == SCREEN_HELP && c >= 0) {
c                 614 uspace/dist/src/c/demos/top/top.c 			if (c == 'h' || c == '?')
c                 615 uspace/dist/src/c/demos/top/top.c 				c = -1;
c                 620 uspace/dist/src/c/demos/top/top.c 		if (screen_mode == SCREEN_SORT && c >= 0) {
c                 622 uspace/dist/src/c/demos/top/top.c 				if (data.table.columns[i].key == c) {
c                 628 uspace/dist/src/c/demos/top/top.c 			c = -1;
c                 631 uspace/dist/src/c/demos/top/top.c 		switch (c) {
c                 666 uspace/dist/src/c/demos/top/top.c 			show_warning("Unknown command \"%c\", use \"h\" for help", c);
c                 341 uspace/drv/block/ahci/ahci.c 	cmd->c = SATA_CMD_FIS_COMMAND_INDICATOR;
c                 386 uspace/drv/block/ahci/ahci.c 	cmd->c = SATA_CMD_FIS_COMMAND_INDICATOR;
c                 567 uspace/drv/block/ahci/ahci.c 	cmd->c = SATA_CMD_FIS_COMMAND_INDICATOR;
c                 685 uspace/drv/block/ahci/ahci.c 	cmd->c = SATA_CMD_FIS_COMMAND_INDICATOR;
c                 772 uspace/drv/block/ahci/ahci.c 	cmd->c = SATA_CMD_FIS_COMMAND_INDICATOR;
c                1305 uspace/drv/block/ahci/ahci.c 		uint8_t c = model[i];
c                1306 uspace/drv/block/ahci/ahci.c 		if (c >= 0x80)
c                1307 uspace/drv/block/ahci/ahci.c 			c = '?';
c                1309 uspace/drv/block/ahci/ahci.c 		chr_encode(c, dst, &pos, 40);
c                  66 uspace/drv/block/ahci/ahci_sata.h 	unsigned int c : 8;
c                  94 uspace/drv/block/ahci/ahci_sata.h 	uint8_t c;
c                 353 uspace/drv/block/ata_bd/ata_bd.c 	uint8_t c;
c                 462 uspace/drv/block/ata_bd/ata_bd.c 		c = model[i];
c                 463 uspace/drv/block/ata_bd/ata_bd.c 		if (c >= 0x80)
c                 464 uspace/drv/block/ata_bd/ata_bd.c 			c = '?';
c                 466 uspace/drv/block/ata_bd/ata_bd.c 		chr_encode(c, d->model, &pos, 40);
c                1164 uspace/drv/block/ata_bd/ata_bd.c 	uint64_t c;
c                1176 uspace/drv/block/ata_bd/ata_bd.c 		c = ba / (d->geom.heads * d->geom.sectors);
c                1179 uspace/drv/block/ata_bd/ata_bd.c 		bc->cyl_lo = c & 0xff;
c                1180 uspace/drv/block/ata_bd/ata_bd.c 		bc->cyl_hi = (c >> 8) & 0xff;
c                  58 uspace/drv/bus/usb/xhci/debug.c #define DUMP_REG(set, c) DUMP_REG_INNER(set, #c, c)
c                  68 uspace/drv/char/msim-con/msim-con.c 	uint8_t c;
c                  73 uspace/drv/char/msim-con/msim-con.c 	c = ipc_get_arg2(call);
c                  74 uspace/drv/char/msim-con/msim-con.c 	rc = circ_buf_push(&con->cbuf, &c);
c                 234 uspace/drv/char/ns8250/ns8250.c static void ns8250_write_8(ns8250_regs_t *regs, uint8_t c)
c                 239 uspace/drv/char/ns8250/ns8250.c 	pio_write_8(&regs->data, c);
c                 284 uspace/drv/char/ns8250/ns8250.c static inline void ns8250_putchar(ns8250_t *ns, uint8_t c)
c                 287 uspace/drv/char/ns8250/ns8250.c 	ns8250_write_8(ns->regs, c);
c                 197 uspace/drv/char/pl011/pl011.c 	uint8_t c = ipc_get_arg2(call);
c                 208 uspace/drv/char/pl011/pl011.c 	rc = circ_buf_push(&pl011->cbuf, &c);
c                 181 uspace/drv/char/ski-con/ski-con.c 	int32_t c;
c                 187 uspace/drv/char/ski-con/ski-con.c 			c = ski_con_getchar();
c                 188 uspace/drv/char/ski-con/ski-con.c 			if (c == 0)
c                 193 uspace/drv/char/ski-con/ski-con.c 			rc = circ_buf_push(&con->cbuf, &c);
c                 162 uspace/drv/char/sun4v-con/sun4v-con.c 	char c;
c                 170 uspace/drv/char/sun4v-con/sun4v-con.c 		c = con->input_buffer->data[con->input_buffer->read_ptr];
c                 173 uspace/drv/char/sun4v-con/sun4v-con.c 		bp[p++] = c;
c                 131 uspace/drv/hid/usbhid/multimedia/multimedia.c 		.c = 0,
c                 143 uspace/drv/hid/usbhid/multimedia/multimedia.c 		async_msg_4(exch, KBDEV_EVENT, ev.type, ev.key, ev.mods, ev.c);
c                  47 uspace/lib/c/arch/amd64/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  49 uspace/lib/c/arch/amd64/include/libarch/fibril.h 		(c)->pc = (sysarg_t) (_pc); \
c                  50 uspace/lib/c/arch/amd64/include/libarch/fibril.h 		(c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
c                  51 uspace/lib/c/arch/amd64/include/libarch/fibril.h 		(c)->tls = (sysarg_t) (ptls); \
c                  52 uspace/lib/c/arch/amd64/include/libarch/fibril.h 		(c)->rbp = 0; \
c                  59 uspace/lib/c/arch/arm32/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  61 uspace/lib/c/arch/arm32/include/libarch/fibril.h 		(c)->pc = (sysarg_t) (_pc); \
c                  62 uspace/lib/c/arch/arm32/include/libarch/fibril.h 		(c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
c                  63 uspace/lib/c/arch/arm32/include/libarch/fibril.h 		(c)->tls = ((sysarg_t)(ptls)) + ARCH_TP_OFFSET; \
c                  64 uspace/lib/c/arch/arm32/include/libarch/fibril.h 		(c)->fp = 0; \
c                  83 uspace/lib/c/arch/arm32/include/libarch/regutils.h GEN_STATUS_WRITE(current, cpsr, control, c);
c                  59 uspace/lib/c/arch/arm64/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  61 uspace/lib/c/arch/arm64/include/libarch/fibril.h 		(c)->pc = (uint64_t) (_pc); \
c                  62 uspace/lib/c/arch/arm64/include/libarch/fibril.h 		(c)->sp = ((uint64_t) (stack)) + (size) - SP_DELTA; \
c                  63 uspace/lib/c/arch/arm64/include/libarch/fibril.h 		(c)->tls = ((uint64_t) (ptls)) + ARCH_TP_OFFSET; \
c                  65 uspace/lib/c/arch/arm64/include/libarch/fibril.h 		(c)->x29 = 0; \
c                  64 uspace/lib/c/arch/arm64/include/libarch/regutils.h #define UWORD64(c)  UINT64_C(c)
c                  70 uspace/lib/c/arch/arm64/include/libarch/regutils.h #define UWORD64(c)  c
c                  48 uspace/lib/c/arch/ia32/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  50 uspace/lib/c/arch/ia32/include/libarch/fibril.h 		(c)->pc = (sysarg_t) (_pc); \
c                  51 uspace/lib/c/arch/ia32/include/libarch/fibril.h 		(c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
c                  52 uspace/lib/c/arch/ia32/include/libarch/fibril.h 		(c)->tls = (sysarg_t) (ptls); \
c                  53 uspace/lib/c/arch/ia32/include/libarch/fibril.h 		(c)->ebp = 0; \
c                  55 uspace/lib/c/arch/ia64/include/libarch/fibril.h #define context_set(c, _pc, stack, size, tls) \
c                  57 uspace/lib/c/arch/ia64/include/libarch/fibril.h 		(c)->pc = (uint64_t) _pc; \
c                  58 uspace/lib/c/arch/ia64/include/libarch/fibril.h 		(c)->bsp = ((uint64_t) stack) + \
c                  60 uspace/lib/c/arch/ia64/include/libarch/fibril.h 		(c)->ar_pfs &= PFM_MASK; \
c                  61 uspace/lib/c/arch/ia64/include/libarch/fibril.h 		(c)->sp = ((uint64_t) stack) + \
c                  64 uspace/lib/c/arch/ia64/include/libarch/fibril.h 		(c)->tp = (uint64_t) tls; \
c                  52 uspace/lib/c/arch/mips32/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  54 uspace/lib/c/arch/mips32/include/libarch/fibril.h 		(c)->pc = (sysarg_t) (_pc); \
c                  55 uspace/lib/c/arch/mips32/include/libarch/fibril.h 		(c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
c                  56 uspace/lib/c/arch/mips32/include/libarch/fibril.h 		(c)->tls = ((sysarg_t)(ptls)) + 0x7000 + sizeof(tcb_t); \
c                  49 uspace/lib/c/arch/ppc32/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  51 uspace/lib/c/arch/ppc32/include/libarch/fibril.h 		(c)->pc = (sysarg_t) (_pc); \
c                  52 uspace/lib/c/arch/ppc32/include/libarch/fibril.h 		(c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
c                  53 uspace/lib/c/arch/ppc32/include/libarch/fibril.h 		(c)->tls = ((sysarg_t) (ptls)) + 0x7000 + sizeof(tcb_t); \
c                  45 uspace/lib/c/arch/sparc64/include/libarch/fibril.h #define context_set(c, _pc, stack, size, ptls) \
c                  47 uspace/lib/c/arch/sparc64/include/libarch/fibril.h 		(c)->pc = ((uintptr_t) _pc) - 8; \
c                  48 uspace/lib/c/arch/sparc64/include/libarch/fibril.h 		(c)->sp = ((uintptr_t) stack) + ALIGN_UP((size), \
c                  50 uspace/lib/c/arch/sparc64/include/libarch/fibril.h 		(c)->fp = -STACK_BIAS; \
c                  51 uspace/lib/c/arch/sparc64/include/libarch/fibril.h 		(c)->tp = (uint64_t) ptls; \
c                 347 uspace/lib/c/common/adt/odict.c 	odlink_t *c;
c                 363 uspace/lib/c/common/adt/odict.c 		c = odlink->a;
c                 365 uspace/lib/c/common/adt/odict.c 		c = odlink->b;
c                 370 uspace/lib/c/common/adt/odict.c 		assert(c == NULL);
c                 376 uspace/lib/c/common/adt/odict.c 	if (c != NULL && c->color == odc_red) {
c                 378 uspace/lib/c/common/adt/odict.c 		c->color = odc_black;
c                 379 uspace/lib/c/common/adt/odict.c 		odict_replace_subtree(c, odlink);
c                 387 uspace/lib/c/common/adt/odict.c 	assert(c == NULL);
c                 897 uspace/lib/c/common/adt/odict.c 	odict_color_t c;
c                 948 uspace/lib/c/common/adt/odict.c 	c = a->color;
c                 950 uspace/lib/c/common/adt/odict.c 	b->color = c;
c                  62 uspace/lib/c/common/include/mem.h #define memchr(s, c, cnt)  __builtin_memchr((s), (c), (cnt))
c                  37 uspace/lib/c/common/stdc/ctype.c int islower(int c)
c                  39 uspace/lib/c/common/stdc/ctype.c 	return ((c >= 'a') && (c <= 'z'));
c                  42 uspace/lib/c/common/stdc/ctype.c int isupper(int c)
c                  44 uspace/lib/c/common/stdc/ctype.c 	return ((c >= 'A') && (c <= 'Z'));
c                  47 uspace/lib/c/common/stdc/ctype.c int isalpha(int c)
c                  49 uspace/lib/c/common/stdc/ctype.c 	return (islower(c) || isupper(c));
c                  52 uspace/lib/c/common/stdc/ctype.c int isdigit(int c)
c                  54 uspace/lib/c/common/stdc/ctype.c 	return ((c >= '0') && (c <= '9'));
c                  57 uspace/lib/c/common/stdc/ctype.c int isalnum(int c)
c                  59 uspace/lib/c/common/stdc/ctype.c 	return (isalpha(c) || isdigit(c));
c                  62 uspace/lib/c/common/stdc/ctype.c int isblank(int c)
c                  64 uspace/lib/c/common/stdc/ctype.c 	return c == ' ' || c == '\t';
c                  67 uspace/lib/c/common/stdc/ctype.c int iscntrl(int c)
c                  69 uspace/lib/c/common/stdc/ctype.c 	return (c >= 0 && c < 0x20) || c == 0x7E;
c                  72 uspace/lib/c/common/stdc/ctype.c int isprint(int c)
c                  74 uspace/lib/c/common/stdc/ctype.c 	return c >= 0 && c < 0x80 && !iscntrl(c);
c                  77 uspace/lib/c/common/stdc/ctype.c int isgraph(int c)
c                  79 uspace/lib/c/common/stdc/ctype.c 	return isprint(c) && c != ' ';
c                  82 uspace/lib/c/common/stdc/ctype.c int isspace(int c)
c                  84 uspace/lib/c/common/stdc/ctype.c 	switch (c) {
c                  97 uspace/lib/c/common/stdc/ctype.c int ispunct(int c)
c                  99 uspace/lib/c/common/stdc/ctype.c 	return !isspace(c) && !isalnum(c) && isprint(c);
c                 102 uspace/lib/c/common/stdc/ctype.c int isxdigit(int c)
c                 104 uspace/lib/c/common/stdc/ctype.c 	return isdigit(c) ||
c                 105 uspace/lib/c/common/stdc/ctype.c 	    (c >= 'a' && c <= 'f') ||
c                 106 uspace/lib/c/common/stdc/ctype.c 	    (c >= 'A' && c <= 'F');
c                 109 uspace/lib/c/common/stdc/ctype.c int tolower(int c)
c                 111 uspace/lib/c/common/stdc/ctype.c 	if (isupper(c))
c                 112 uspace/lib/c/common/stdc/ctype.c 		return (c + ('a' - 'A'));
c                 114 uspace/lib/c/common/stdc/ctype.c 		return c;
c                 117 uspace/lib/c/common/stdc/ctype.c int toupper(int c)
c                 119 uspace/lib/c/common/stdc/ctype.c 	if (islower(c))
c                 120 uspace/lib/c/common/stdc/ctype.c 		return (c + ('A' - 'a'));
c                 122 uspace/lib/c/common/stdc/ctype.c 		return c;
c                 282 uspace/lib/c/common/stdc/mem.c void *memchr(const void *s, int c, size_t n)
c                 285 uspace/lib/c/common/stdc/mem.c 	unsigned char uc = (unsigned char) c;
c                1061 uspace/lib/c/common/str.c 	char32_t c;
c                1065 uspace/lib/c/common/str.c 	while ((c = str_decode(src, &offset, STR_NO_LIMIT)) != 0) {
c                1066 uspace/lib/c/common/str.c 		if (c > 0x10000) {
c                1071 uspace/lib/c/common/str.c 			c = (c - 0x10000);
c                1072 uspace/lib/c/common/str.c 			dest[idx] = 0xD800 | (c >> 10);
c                1073 uspace/lib/c/common/str.c 			dest[idx + 1] = 0xDC00 | (c & 0x3FF);
c                1076 uspace/lib/c/common/str.c 			dest[idx] = c;
c                1172 uspace/lib/c/common/str.c 	char32_t c;
c                1183 uspace/lib/c/common/str.c 		c = str_decode(src, &offset, STR_NO_LIMIT);
c                1184 uspace/lib/c/common/str.c 		dest[di++] = c;
c                1185 uspace/lib/c/common/str.c 	} while (c != '\0');
c                1262 uspace/lib/c/common/str.c 	char32_t c;
c                1266 uspace/lib/c/common/str.c 	while ((c = str_decode(str, &off, STR_NO_LIMIT))) {
c                1267 uspace/lib/c/common/str.c 		if (c != ch) {
c                  54 uspace/lib/c/common/strtol.c static inline int _digit_value(int c)
c                  56 uspace/lib/c/common/strtol.c 	if (isdigit(c)) {
c                  57 uspace/lib/c/common/strtol.c 		return c - '0';
c                  58 uspace/lib/c/common/strtol.c 	} else if (islower(c)) {
c                  59 uspace/lib/c/common/strtol.c 		return c - 'a' + 10;
c                  60 uspace/lib/c/common/strtol.c 	} else if (isupper(c)) {
c                  61 uspace/lib/c/common/strtol.c 		return c - 'A' + 10;
c                 327 uspace/lib/c/generic/async/server.c 	mpsc_t *c = fibril_connection->msg_channel;
c                 357 uspace/lib/c/generic/async/server.c 	mpsc_close(c);
c                 363 uspace/lib/c/generic/async/server.c 	while (mpsc_receive(c, &call, NULL) == EOK)
c                 370 uspace/lib/c/generic/async/server.c 	mpsc_destroy(c);
c                 235 uspace/lib/c/generic/capa.c static errno_t capa_digit_val(char c, int *val)
c                 237 uspace/lib/c/generic/capa.c 	switch (c) {
c                  89 uspace/lib/c/generic/double_to_str.c 	uint64_t a, b, c, d;
c                  92 uspace/lib/c/generic/double_to_str.c 	c = y.significand >> 32;
c                  99 uspace/lib/c/generic/double_to_str.c 	bc = b * c;
c                 100 uspace/lib/c/generic/double_to_str.c 	ac = a * c;
c                 102 uspace/lib/c/generic/getopt.c 	int c;
c                 104 uspace/lib/c/generic/getopt.c 	c = a % b;
c                 105 uspace/lib/c/generic/getopt.c 	while (c != 0) {
c                 107 uspace/lib/c/generic/getopt.c 		b = c;
c                 108 uspace/lib/c/generic/getopt.c 		c = a % b;
c                 779 uspace/lib/c/generic/io/io.c int fputc(int c, FILE *stream)
c                 784 uspace/lib/c/generic/io/io.c 	b = (unsigned char) c;
c                 792 uspace/lib/c/generic/io/io.c int putchar(int c)
c                 794 uspace/lib/c/generic/io/io.c 	return fputc(c, stdout);
c                 814 uspace/lib/c/generic/io/io.c 	char c;
c                 822 uspace/lib/c/generic/io/io.c 	if (fread(&c, sizeof(char), 1, stream) < sizeof(char))
c                 825 uspace/lib/c/generic/io/io.c 	return (int) c;
c                 830 uspace/lib/c/generic/io/io.c 	int c;
c                 835 uspace/lib/c/generic/io/io.c 		c = fgetc(stream);
c                 836 uspace/lib/c/generic/io/io.c 		if (c == EOF)
c                 839 uspace/lib/c/generic/io/io.c 		str[idx++] = c;
c                 841 uspace/lib/c/generic/io/io.c 		if (c == '\n')
c                 860 uspace/lib/c/generic/io/io.c int ungetc(int c, FILE *stream)
c                 862 uspace/lib/c/generic/io/io.c 	if (c == EOF)
c                 869 uspace/lib/c/generic/io/io.c 	    (uint8_t)c;
c                 872 uspace/lib/c/generic/io/io.c 	return (uint8_t)c;
c                 397 uspace/lib/c/generic/stdio/scanf.c static errno_t strbuf_write(strbuf_t *strbuf, size_t idx, char c)
c                 409 uspace/lib/c/generic/stdio/scanf.c 		strbuf->buf[idx] = c;
c                 422 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 424 uspace/lib/c/generic/stdio/scanf.c 	c = fgetc(f);
c                 425 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 429 uspace/lib/c/generic/stdio/scanf.c 	return c;
c                 440 uspace/lib/c/generic/stdio/scanf.c static int __ungetc(int c, FILE *f, int *numchar)
c                 444 uspace/lib/c/generic/stdio/scanf.c 	rc = ungetc(c, f);
c                 455 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 457 uspace/lib/c/generic/stdio/scanf.c 	c = __fgetc(f, numchar);
c                 458 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 461 uspace/lib/c/generic/stdio/scanf.c 	while (isspace(c)) {
c                 462 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 463 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 467 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 470 uspace/lib/c/generic/stdio/scanf.c 	__ungetc(c, f, numchar);
c                 500 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 509 uspace/lib/c/generic/stdio/scanf.c 	c = __fgetc(f, numchar);
c                 510 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 513 uspace/lib/c/generic/stdio/scanf.c 	if (c == '+' || c == '-') {
c                 515 uspace/lib/c/generic/stdio/scanf.c 		sign = (c == '-') ? -1 : +1;
c                 516 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 517 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 524 uspace/lib/c/generic/stdio/scanf.c 	if (!isdigit(c) || width < 1) {
c                 525 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 531 uspace/lib/c/generic/stdio/scanf.c 		if (c == '0') {
c                 532 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 533 uspace/lib/c/generic/stdio/scanf.c 			if (c == EOF)
c                 537 uspace/lib/c/generic/stdio/scanf.c 			if (width > 0 && (c == 'x' || c == 'X')) {
c                 539 uspace/lib/c/generic/stdio/scanf.c 				c = __fgetc(f, numchar);
c                 540 uspace/lib/c/generic/stdio/scanf.c 				if (c == EOF)
c                 542 uspace/lib/c/generic/stdio/scanf.c 				if (width > 0 && isxdigit(c)) {
c                 563 uspace/lib/c/generic/stdio/scanf.c 		digit = digit_value(c);
c                 568 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 570 uspace/lib/c/generic/stdio/scanf.c 	} while (width > 0 && isxdigit(c));
c                 572 uspace/lib/c/generic/stdio/scanf.c 	if (c != EOF)
c                 573 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 592 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 600 uspace/lib/c/generic/stdio/scanf.c 	c = __fgetc(f, numchar);
c                 601 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 604 uspace/lib/c/generic/stdio/scanf.c 	if (!isdigit(c) || width < 1) {
c                 605 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 611 uspace/lib/c/generic/stdio/scanf.c 		if (c == '0') {
c                 612 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 613 uspace/lib/c/generic/stdio/scanf.c 			if (c == EOF)
c                 617 uspace/lib/c/generic/stdio/scanf.c 			if (width > 0 && (c == 'x' || c == 'X')) {
c                 619 uspace/lib/c/generic/stdio/scanf.c 				c = __fgetc(f, numchar);
c                 620 uspace/lib/c/generic/stdio/scanf.c 				if (c == EOF)
c                 622 uspace/lib/c/generic/stdio/scanf.c 				if (width > 0 && isxdigit(c)) {
c                 643 uspace/lib/c/generic/stdio/scanf.c 		digit = digit_value(c);
c                 648 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 650 uspace/lib/c/generic/stdio/scanf.c 	} while (width > 0 && isxdigit(c));
c                 652 uspace/lib/c/generic/stdio/scanf.c 	if (c != EOF)
c                 653 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 671 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 686 uspace/lib/c/generic/stdio/scanf.c 	c = __fgetc(f, numchar);
c                 687 uspace/lib/c/generic/stdio/scanf.c 	if (c == EOF)
c                 690 uspace/lib/c/generic/stdio/scanf.c 	if (c == '+' || c == '-') {
c                 692 uspace/lib/c/generic/stdio/scanf.c 		sign = (c == '-') ? -1 : +1;
c                 693 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 694 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 701 uspace/lib/c/generic/stdio/scanf.c 	if (!isdigit(c) || width < 1) {
c                 702 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 718 uspace/lib/c/generic/stdio/scanf.c 	if (c == '0') {
c                 719 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 720 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 724 uspace/lib/c/generic/stdio/scanf.c 		if (width > 0 && (c == 'x' || c == 'X')) {
c                 726 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 728 uspace/lib/c/generic/stdio/scanf.c 			if (width > 0 && isxdigit(c)) {
c                 748 uspace/lib/c/generic/stdio/scanf.c 		digit = digit_value(c);
c                 753 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 755 uspace/lib/c/generic/stdio/scanf.c 	} while (width > 0 && isxdigit(c));
c                 760 uspace/lib/c/generic/stdio/scanf.c 	if (c == '.' && width > 1) {
c                 761 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 762 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 768 uspace/lib/c/generic/stdio/scanf.c 		while (width > 0 && isxdigit(c)) {
c                 769 uspace/lib/c/generic/stdio/scanf.c 			digit = digit_value(c);
c                 774 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 783 uspace/lib/c/generic/stdio/scanf.c 	if ((width > 1 && base == 10 && (c == 'e' || c == 'E')) ||
c                 784 uspace/lib/c/generic/stdio/scanf.c 	    (width > 1 && base == 16 && (c == 'p' || c == 'P'))) {
c                 785 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 786 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                 791 uspace/lib/c/generic/stdio/scanf.c 		if (width > 1 && (c == '+' || c == '-')) {
c                 793 uspace/lib/c/generic/stdio/scanf.c 			if (c == '+') {
c                 799 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 800 uspace/lib/c/generic/stdio/scanf.c 			if (c == EOF)
c                 808 uspace/lib/c/generic/stdio/scanf.c 		while (width > 0 && isdigit(c)) {
c                 809 uspace/lib/c/generic/stdio/scanf.c 			digit = digit_value(c);
c                 814 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, numchar);
c                 835 uspace/lib/c/generic/stdio/scanf.c 	if (c != EOF)
c                 836 uspace/lib/c/generic/stdio/scanf.c 		__ungetc(c, f, numchar);
c                 847 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 852 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 853 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF) {
c                 858 uspace/lib/c/generic/stdio/scanf.c 		rc = strbuf_write(strbuf, cnt, c);
c                 874 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 887 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 888 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF) {
c                 893 uspace/lib/c/generic/stdio/scanf.c 		if (isspace(c)) {
c                 894 uspace/lib/c/generic/stdio/scanf.c 			__ungetc(c, f, numchar);
c                 898 uspace/lib/c/generic/stdio/scanf.c 		rc = strbuf_write(strbuf, cnt, c);
c                 924 uspace/lib/c/generic/stdio/scanf.c static bool is_in_scanset(char c, const char *scanset)
c                 943 uspace/lib/c/generic/stdio/scanf.c 		if (c == ']')
c                 948 uspace/lib/c/generic/stdio/scanf.c 		if (c == '-')
c                 960 uspace/lib/c/generic/stdio/scanf.c 			if (c >= startc && c <= endc)
c                 967 uspace/lib/c/generic/stdio/scanf.c 		if (*p == c)
c                 980 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                 987 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                 988 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF) {
c                 993 uspace/lib/c/generic/stdio/scanf.c 		if (!is_in_scanset(c, scanset)) {
c                 994 uspace/lib/c/generic/stdio/scanf.c 			__ungetc(c, f, numchar);
c                 998 uspace/lib/c/generic/stdio/scanf.c 		rc = strbuf_write(strbuf, cnt, c);
c                1021 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                1063 uspace/lib/c/generic/stdio/scanf.c 		c = __fgetc(f, numchar);
c                1064 uspace/lib/c/generic/stdio/scanf.c 		if (c == EOF)
c                1066 uspace/lib/c/generic/stdio/scanf.c 		if (c != '%') {
c                1067 uspace/lib/c/generic/stdio/scanf.c 			__ungetc(c, f, numchar);
c                1320 uspace/lib/c/generic/stdio/scanf.c 	int c;
c                1357 uspace/lib/c/generic/stdio/scanf.c 			c = __fgetc(f, &numchar);
c                1358 uspace/lib/c/generic/stdio/scanf.c 			if (c == EOF) {
c                1363 uspace/lib/c/generic/stdio/scanf.c 			if (c != *cp) {
c                1364 uspace/lib/c/generic/stdio/scanf.c 				__ungetc(c, f, &numchar);
c                 245 uspace/lib/c/generic/string.c char *strchr(const char *s, int c)
c                 248 uspace/lib/c/generic/string.c 		if (*s == (char) c)
c                 322 uspace/lib/c/generic/string.c char *strrchr(const char *s, int c)
c                 327 uspace/lib/c/generic/string.c 		if (s[i] == (char) c)
c                  73 uspace/lib/c/generic/thread/mpsc.c 	mpsc_node_t *c = calloc(1, sizeof(mpsc_node_t) + elem_size);
c                  75 uspace/lib/c/generic/thread/mpsc.c 	if (!q || !n || !c) {
c                  78 uspace/lib/c/generic/thread/mpsc.c 		free(c);
c                  85 uspace/lib/c/generic/thread/mpsc.c 		free(c);
c                  91 uspace/lib/c/generic/thread/mpsc.c 	q->close_node = c;
c                  81 uspace/lib/c/test/adt/odict.c 	odlink_t *c;
c                  98 uspace/lib/c/test/adt/odict.c 	c = odict_first(&odict);
c                  99 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 100 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 102 uspace/lib/c/test/adt/odict.c 		c = odict_next(c, &odict);
c                 108 uspace/lib/c/test/adt/odict.c 	c = odict_last(&odict);
c                 109 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 111 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 113 uspace/lib/c/test/adt/odict.c 		c = odict_prev(c, &odict);
c                 127 uspace/lib/c/test/adt/odict.c 	odlink_t *c;
c                 144 uspace/lib/c/test/adt/odict.c 	c = odict_first(&odict);
c                 145 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 146 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 148 uspace/lib/c/test/adt/odict.c 		c = odict_next(c, &odict);
c                 154 uspace/lib/c/test/adt/odict.c 	c = odict_last(&odict);
c                 155 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 157 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 159 uspace/lib/c/test/adt/odict.c 		c = odict_prev(c, &odict);
c                 173 uspace/lib/c/test/adt/odict.c 	odlink_t *c;
c                 190 uspace/lib/c/test/adt/odict.c 	c = odict_first(&odict);
c                 191 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 192 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 195 uspace/lib/c/test/adt/odict.c 		odict_remove(c);
c                 198 uspace/lib/c/test/adt/odict.c 		c = odict_first(&odict);
c                 219 uspace/lib/c/test/adt/odict.c 	odlink_t *c, *d;
c                 242 uspace/lib/c/test/adt/odict.c 	c = odict_first(&odict);
c                 245 uspace/lib/c/test/adt/odict.c 	while (c != NULL) {
c                 246 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 250 uspace/lib/c/test/adt/odict.c 		c = odict_next(c, &odict);
c                 259 uspace/lib/c/test/adt/odict.c 		c = odict_find_eq(&odict, (void *)&v, NULL);
c                 260 uspace/lib/c/test/adt/odict.c 		PCUT_ASSERT_NOT_NULL(c);
c                 262 uspace/lib/c/test/adt/odict.c 		e = odict_get_instance(c, test_entry_t, odict);
c                 271 uspace/lib/c/test/adt/odict.c 		odict_remove(c);
c                  73 uspace/lib/c/test/mem.c 	int c;
c                  75 uspace/lib/c/test/mem.c 	c = memcmp(s1, s2, 3);
c                  76 uspace/lib/c/test/mem.c 	PCUT_ASSERT_INT_EQUALS(0, c);
c                  78 uspace/lib/c/test/mem.c 	c = memcmp(s1, s2, 4);
c                  79 uspace/lib/c/test/mem.c 	PCUT_ASSERT_TRUE(c < 0);
c                  81 uspace/lib/c/test/mem.c 	c = memcmp(s2, s1, 4);
c                  82 uspace/lib/c/test/mem.c 	PCUT_ASSERT_TRUE(c > 0);
c                 115 uspace/lib/c/test/stdio.c 	char c;
c                 121 uspace/lib/c/test/stdio.c 	c = 'x';
c                 122 uspace/lib/c/test/stdio.c 	n = fwrite(&c, sizeof(c), 1, f);
c                 126 uspace/lib/c/test/stdio.c 	c = '\0';
c                 127 uspace/lib/c/test/stdio.c 	n = fread(&c, sizeof(c), 1, f);
c                 129 uspace/lib/c/test/stdio.c 	PCUT_ASSERT_INT_EQUALS('x', c);
c                 532 uspace/lib/c/test/stdio/scanf.c 	char c;
c                 534 uspace/lib/c/test/stdio/scanf.c 	rc = sscanf("x", "%c", &c);
c                 536 uspace/lib/c/test/stdio/scanf.c 	PCUT_ASSERT_TRUE(c == 'x');
c                 543 uspace/lib/c/test/stdio/scanf.c 	char c;
c                 545 uspace/lib/c/test/stdio/scanf.c 	rc = sscanf("\t", "%c", &c);
c                 547 uspace/lib/c/test/stdio/scanf.c 	PCUT_ASSERT_TRUE(c == '\t');
c                 135 uspace/lib/clui/src/nchoice.c 	unsigned long c;
c                 177 uspace/lib/clui/src/nchoice.c 	c = strtoul(str, &eptr, 10);
c                 178 uspace/lib/clui/src/nchoice.c 	if (*eptr != '\0' || c < 1 || c > (unsigned long)i - 1) {
c                 188 uspace/lib/clui/src/nchoice.c 		if ((unsigned long)i == c) {
c                 234 uspace/lib/clui/src/tinput.c static void tinput_insert_char(tinput_t *ti, char32_t c)
c                 253 uspace/lib/clui/src/tinput.c 	ti->buffer[ti->pos] = c;
c                 285 uspace/lib/clui/src/tinput.c 		char32_t c = str_decode(str, &off, STR_NO_LIMIT);
c                 286 uspace/lib/clui/src/tinput.c 		if (c == '\0')
c                 290 uspace/lib/clui/src/tinput.c 		if (c < 32)
c                 291 uspace/lib/clui/src/tinput.c 			c = 32;
c                 293 uspace/lib/clui/src/tinput.c 		ti->buffer[ti->pos + i] = c;
c                 859 uspace/lib/clui/src/tinput.c 	if (((kev->mods & (KM_CTRL | KM_ALT)) == 0) && kev->c >= ' ') {
c                 861 uspace/lib/clui/src/tinput.c 		tinput_insert_char(ti, kev->c);
c                 292 uspace/lib/codepage/src/cp437.c errno_t cp437_encode(char32_t c, uint8_t *code)
c                 297 uspace/lib/codepage/src/cp437.c 	if (c == 0) {
c                 310 uspace/lib/codepage/src/cp437.c 	if (c < 0x400)
c                 311 uspace/lib/codepage/src/cp437.c 		b = u0xxx_to_cp437[c];
c                 312 uspace/lib/codepage/src/cp437.c 	else if (c >= 0x2000 && c < 0x2700)
c                 313 uspace/lib/codepage/src/cp437.c 		b = u2xxx_to_cp437[c - 0x2000];
c                  40 uspace/lib/codepage/test/cp437.c 	char32_t c;
c                  45 uspace/lib/codepage/test/cp437.c 		c = cp437_decode(code);
c                  46 uspace/lib/codepage/test/cp437.c 		rc = cp437_encode(c, &cdec);
c                  54 uspace/lib/console/src/con_srv.c 		ipc_set_arg5(icall, event->ev.key.c);
c                 193 uspace/lib/console/src/console.c 		event->ev.key.c = ipc_get_arg5(call);
c                 469 uspace/lib/cpp/include/__bits/adt/bitset.hpp         Char c{};
c                 479 uspace/lib/cpp/include/__bits/adt/bitset.hpp             is.get(c);
c                 481 uspace/lib/cpp/include/__bits/adt/bitset.hpp             if (!Traits::eq(c, one) && !Traits::eq(c, zero))
c                 483 uspace/lib/cpp/include/__bits/adt/bitset.hpp                 is.putback(c);
c                 487 uspace/lib/cpp/include/__bits/adt/bitset.hpp             str.push_back(c);
c                  84 uspace/lib/cpp/include/__bits/adt/map.hpp                     value_compare(key_compare c)
c                  85 uspace/lib/cpp/include/__bits/adt/map.hpp                         : comp{c}
c                 737 uspace/lib/cpp/include/__bits/adt/map.hpp                     value_compare(key_compare c)
c                 738 uspace/lib/cpp/include/__bits/adt/map.hpp                         : comp{c}
c                  56 uspace/lib/cpp/include/__bits/adt/queue.hpp             container_type c;
c                  60 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{cc}
c                  64 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{move(cc)}
c                  72 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{alloc}
c                  80 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{cc, alloc}
c                  88 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{move(cc), alloc}
c                  96 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{other.c, alloc}
c                 104 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{move(other.c), alloc}
c                 109 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.empty();
c                 114 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.size();
c                 119 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.front();
c                 124 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.front();
c                 129 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.back();
c                 134 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.back();
c                 139 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(val);
c                 144 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(forward<value_type>(val));
c                 150 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.emplace_back(forward<Args>(args)...);
c                 155 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.pop_front();
c                 159 uspace/lib/cpp/include/__bits/adt/queue.hpp                 noexcept(noexcept(swap(c, other.c)))
c                 161 uspace/lib/cpp/include/__bits/adt/queue.hpp                 std::swap(c, other.c);
c                 210 uspace/lib/cpp/include/__bits/adt/queue.hpp             container_type c;
c                 214 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{cc}
c                 216 uspace/lib/cpp/include/__bits/adt/queue.hpp                 make_heap(c.begin(), c.end(), comp);
c                 221 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{move(cc)}
c                 223 uspace/lib/cpp/include/__bits/adt/queue.hpp                 make_heap(c.begin(), c.end(), comp);
c                 230 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{cc}
c                 232 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.insert(c.end(), first, last);
c                 233 uspace/lib/cpp/include/__bits/adt/queue.hpp                 make_heap(c.begin(), c.end(), comp);
c                 240 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{move(cc)}
c                 242 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.insert(c.end(), first, last);
c                 243 uspace/lib/cpp/include/__bits/adt/queue.hpp                 make_heap(c.begin(), c.end(), comp);
c                 251 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{}, c{alloc}
c                 259 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{alloc}
c                 268 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{cc, alloc}
c                 277 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{cmp}, c{move(cc), alloc}
c                 285 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{other.comp}, c{other.c, alloc}
c                 293 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{move(other.comp)}, c{move(other.c), alloc}
c                 298 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.empty();
c                 303 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.size();
c                 308 uspace/lib/cpp/include/__bits/adt/queue.hpp                 return c.front();
c                 313 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(val);
c                 314 uspace/lib/cpp/include/__bits/adt/queue.hpp                 push_heap(c.begin(), c.end(), comp);
c                 319 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(forward<value_type>(val));
c                 320 uspace/lib/cpp/include/__bits/adt/queue.hpp                 push_heap(c.begin(), c.end(), comp);
c                 326 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.emplace_back(forward<Args>(args)...);
c                 327 uspace/lib/cpp/include/__bits/adt/queue.hpp                 push_heap(c.begin(), c.end(), comp);
c                 332 uspace/lib/cpp/include/__bits/adt/queue.hpp                 pop_heap(c.begin(), c.end(), comp);
c                 333 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.pop_back();
c                 337 uspace/lib/cpp/include/__bits/adt/queue.hpp                 noexcept(noexcept(swap(c, other.c)) && noexcept(swap(comp, other.comp)))
c                 339 uspace/lib/cpp/include/__bits/adt/queue.hpp                 std::swap(c, other.c);
c                 353 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c == rhs.c;
c                 360 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c < rhs.c;
c                 367 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c != rhs.c;
c                 374 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c > rhs.c;
c                 381 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c >= rhs.c;
c                 388 uspace/lib/cpp/include/__bits/adt/queue.hpp         return lhs.c <= rhs.c;
c                  53 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{cont}
c                  57 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{move(cont)}
c                  67 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{alloc}
c                  72 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{cont, alloc}
c                  77 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{move(cont), alloc}
c                  82 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{other.c, alloc}
c                  87 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{move(other.c), alloc}
c                  92 uspace/lib/cpp/include/__bits/adt/stack.hpp                 return c.empty();
c                  97 uspace/lib/cpp/include/__bits/adt/stack.hpp                 return c.size();
c                 102 uspace/lib/cpp/include/__bits/adt/stack.hpp                 return c.back();
c                 107 uspace/lib/cpp/include/__bits/adt/stack.hpp                 return c.back();
c                 112 uspace/lib/cpp/include/__bits/adt/stack.hpp                 c.push_back(val);
c                 117 uspace/lib/cpp/include/__bits/adt/stack.hpp                 c.push_back(move(val));
c                 123 uspace/lib/cpp/include/__bits/adt/stack.hpp                 c.emplace_back(forward<Args>(args)...);
c                 128 uspace/lib/cpp/include/__bits/adt/stack.hpp                 c.pop_back();
c                 134 uspace/lib/cpp/include/__bits/adt/stack.hpp                 std::swap(c, other.c);
c                 138 uspace/lib/cpp/include/__bits/adt/stack.hpp             container_type c;
c                 149 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c == rhs.c;
c                 156 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c != rhs.c;
c                 163 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c < rhs.c;
c                 170 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c <= rhs.c;
c                 177 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c > rhs.c;
c                 184 uspace/lib/cpp/include/__bits/adt/stack.hpp         return lhs.c >= rhs.c;
c                 675 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> operator+(const complex<T>& c)
c                 677 uspace/lib/cpp/include/__bits/complex.hpp         return complex<T>{c};
c                 681 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> operator-(const complex<T>& c)
c                 683 uspace/lib/cpp/include/__bits/complex.hpp         return complex<T>{-c.real(), -c.imag()};
c                 724 uspace/lib/cpp/include/__bits/complex.hpp                                             const complex<T>& c)
c                 733 uspace/lib/cpp/include/__bits/complex.hpp                                             const complex<T>& c)
c                 740 uspace/lib/cpp/include/__bits/complex.hpp         oss << "(" << c.real() << "," << c.imag() << ")";
c                 750 uspace/lib/cpp/include/__bits/complex.hpp     constexpr T real(const complex<T>& c)
c                 752 uspace/lib/cpp/include/__bits/complex.hpp         return c.real();
c                 756 uspace/lib/cpp/include/__bits/complex.hpp     constexpr T imag(const complex<T>& c)
c                 758 uspace/lib/cpp/include/__bits/complex.hpp         return c.imag();
c                 762 uspace/lib/cpp/include/__bits/complex.hpp     T abs(const complex<T>& c)
c                 764 uspace/lib/cpp/include/__bits/complex.hpp         return c.real() * c.real() + c.imag() * c.imag();
c                 768 uspace/lib/cpp/include/__bits/complex.hpp     T arg(const complex<T>& c)
c                 772 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 776 uspace/lib/cpp/include/__bits/complex.hpp     T norm(const complex<T>& c)
c                 778 uspace/lib/cpp/include/__bits/complex.hpp         return abs(c) * abs(c);
c                 782 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> conj(const complex<T>& c)
c                 786 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 790 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> proj(const complex<T>& c)
c                 794 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 810 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> acos(const complex<T>& c)
c                 814 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 818 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> asin(const complex<T>& c)
c                 822 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 826 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> atan(const complex<T>& c)
c                 830 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 834 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> acosh(const complex<T>& c)
c                 838 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 842 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> asinh(const complex<T>& c)
c                 846 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 850 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> atanh(const complex<T>& c)
c                 854 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 858 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> cos(const complex<T>& c)
c                 862 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 866 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> cosh(const complex<T>& c)
c                 870 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 874 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> exp(const complex<T>& c)
c                 878 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 882 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> log(const complex<T>& c)
c                 886 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 890 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> log10(const complex<T>& c)
c                 894 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 922 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> sin(const complex<T>& c)
c                 926 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 930 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> sinh(const complex<T>& c)
c                 934 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 938 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> sqrt(const complex<T>& c)
c                 942 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 946 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> tan(const complex<T>& c)
c                 950 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 954 uspace/lib/cpp/include/__bits/complex.hpp     complex<T> tanh(const complex<T>& c)
c                 958 uspace/lib/cpp/include/__bits/complex.hpp         return c;
c                 200 uspace/lib/cpp/include/__bits/io/fstream.hpp                     auto c = fgetc(file_);
c                 201 uspace/lib/cpp/include/__bits/io/fstream.hpp                     if (c == traits_type::eof())
c                 204 uspace/lib/cpp/include/__bits/io/fstream.hpp                     ibuf_[i] = static_cast<char_type>(c);
c                 222 uspace/lib/cpp/include/__bits/io/fstream.hpp             int_type pbackfail(int_type c = traits_type::eof()) override
c                 224 uspace/lib/cpp/include/__bits/io/fstream.hpp                 auto cc = traits_type::to_char_type(c);
c                 225 uspace/lib/cpp/include/__bits/io/fstream.hpp                 if (!traits_type::eq_int_type(c, traits_type::eof()) &&
c                 231 uspace/lib/cpp/include/__bits/io/fstream.hpp                     return c;
c                 233 uspace/lib/cpp/include/__bits/io/fstream.hpp                 else if (!traits_type::eq_int_type(c, traits_type::eof()) &&
c                 238 uspace/lib/cpp/include/__bits/io/fstream.hpp                     return c;
c                 240 uspace/lib/cpp/include/__bits/io/fstream.hpp                 else if (traits_type::eq_int_type(c, traits_type::eof()) &&
c                 245 uspace/lib/cpp/include/__bits/io/fstream.hpp                     return traits_type::not_eof(c);
c                 251 uspace/lib/cpp/include/__bits/io/fstream.hpp             int_type overflow(int_type c = traits_type::eof()) override
c                 263 uspace/lib/cpp/include/__bits/io/fstream.hpp                 return traits_type::not_eof(c);
c                  46 uspace/lib/cpp/include/__bits/io/iomanip.hpp     aux::setfill_t<Char> setfill(Char c)
c                  48 uspace/lib/cpp/include/__bits/io/iomanip.hpp         return aux::setfill_t<Char>{c};
c                 114 uspace/lib/cpp/include/__bits/io/iomanip_objs.hpp         setfill_t(Char c)
c                 115 uspace/lib/cpp/include/__bits/io/iomanip_objs.hpp             : fill{c}
c                 421 uspace/lib/cpp/include/__bits/io/ios.hpp             char_type fill(char_type c)
c                 425 uspace/lib/cpp/include/__bits/io/ios.hpp                 traits_type::assign(fill_, c);
c                 440 uspace/lib/cpp/include/__bits/io/ios.hpp             char narrow(char_type c, char def) const
c                 442 uspace/lib/cpp/include/__bits/io/ios.hpp                 return use_facet<ctype<char_type>>(locale_).narrow(c, def);
c                 445 uspace/lib/cpp/include/__bits/io/ios.hpp             char_type widen(char c) const
c                 447 uspace/lib/cpp/include/__bits/io/ios.hpp                 return use_facet<ctype<char_type>>(locale_).widen(c);
c                  99 uspace/lib/cpp/include/__bits/io/istream.hpp                                     auto c = Traits::to_char_type(i);
c                 100 uspace/lib/cpp/include/__bits/io/istream.hpp                                     if (!ct.is(ctype_base::space, c))
c                 432 uspace/lib/cpp/include/__bits/io/istream.hpp             basic_istream<Char, Traits>& get(char_type& c)
c                 436 uspace/lib/cpp/include/__bits/io/istream.hpp                     c = traits_type::to_char_type(res);
c                 450 uspace/lib/cpp/include/__bits/io/istream.hpp                         auto c = this->rdbuf()->sbumpc();
c                 452 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq_int_type(c, traits_type::eof()))
c                 458 uspace/lib/cpp/include/__bits/io/istream.hpp                         s[gcount_++] = traits_type::to_char_type(c);
c                 499 uspace/lib/cpp/include/__bits/io/istream.hpp                         auto c = traits_type::to_char_type(i);
c                 500 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq(c, delim))
c                 503 uspace/lib/cpp/include/__bits/io/istream.hpp                         auto insert_ret = sb.sputc(c);
c                 532 uspace/lib/cpp/include/__bits/io/istream.hpp                         auto c = this->rdbuf()->sbumpc();
c                 534 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq_int_type(c, traits_type::eof()))
c                 540 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq_int_type(c, traits_type::to_int_type(delim)))
c                 549 uspace/lib/cpp/include/__bits/io/istream.hpp                         s[gcount_++] = traits_type::to_char_type(c);
c                 570 uspace/lib/cpp/include/__bits/io/istream.hpp                         auto c = this->rdbuf()->sbumpc();
c                 572 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq_int_type(c, traits_type::eof()))
c                 578 uspace/lib/cpp/include/__bits/io/istream.hpp                         if (traits_type::eq_int_type(c, delim))
c                 609 uspace/lib/cpp/include/__bits/io/istream.hpp                     auto c = this->rdbuf()->sbumpc();
c                 610 uspace/lib/cpp/include/__bits/io/istream.hpp                     if (traits_type::eq_int_type(c, traits_type::eof()))
c                 616 uspace/lib/cpp/include/__bits/io/istream.hpp                     s[gcount_++] = traits_type::to_char_type(c);
c                 648 uspace/lib/cpp/include/__bits/io/istream.hpp             basic_istream<Char, Traits>& putback(char_type c)
c                 663 uspace/lib/cpp/include/__bits/io/istream.hpp                     auto ret = this->rdbuf()->sputbackc(c);
c                 793 uspace/lib/cpp/include/__bits/io/istream.hpp                                             Char& c)
c                 806 uspace/lib/cpp/include/__bits/io/istream.hpp             c = Traits::to_char_type(is.rdbuf()->sbumpc());
c                 814 uspace/lib/cpp/include/__bits/io/istream.hpp                                             unsigned char& c)
c                 816 uspace/lib/cpp/include/__bits/io/istream.hpp         return is >> reinterpret_cast<char&>(c);
c                 821 uspace/lib/cpp/include/__bits/io/istream.hpp                                             signed char& c)
c                 823 uspace/lib/cpp/include/__bits/io/istream.hpp         return is >> reinterpret_cast<char&>(c);
c                 849 uspace/lib/cpp/include/__bits/io/istream.hpp                 auto c = Traits::to_char_type(ic);
c                 850 uspace/lib/cpp/include/__bits/io/istream.hpp                 if (ct.is(ctype_base::space, c))
c                 853 uspace/lib/cpp/include/__bits/io/istream.hpp                 str[i] = c;
c                 901 uspace/lib/cpp/include/__bits/io/istream.hpp                 auto c = Traits::to_char_type(i);
c                 902 uspace/lib/cpp/include/__bits/io/istream.hpp                 if (!ct.is(c, ct.space))
c                 378 uspace/lib/cpp/include/__bits/io/ostream.hpp                     int_type c = sb->sgetc();
c                 379 uspace/lib/cpp/include/__bits/io/ostream.hpp                     while (!traits_type::eq_int_type(c, traits_type::eof()))
c                 381 uspace/lib/cpp/include/__bits/io/ostream.hpp                         this->put(traits_type::to_char_type(c));
c                 388 uspace/lib/cpp/include/__bits/io/ostream.hpp                         c = sb->sgetc();
c                 403 uspace/lib/cpp/include/__bits/io/ostream.hpp             basic_ostream<Char, Traits>& put(char_type c)
c                 409 uspace/lib/cpp/include/__bits/io/ostream.hpp                     auto ret = this->rdbuf()->sputc(c);
c                 515 uspace/lib/cpp/include/__bits/io/ostream.hpp                                             Char c)
c                 527 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 531 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 537 uspace/lib/cpp/include/__bits/io/ostream.hpp                 os.put(c);
c                 547 uspace/lib/cpp/include/__bits/io/ostream.hpp                                             char c)
c                 559 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(os.widen(c));
c                 563 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(os.widen(c));
c                 569 uspace/lib/cpp/include/__bits/io/ostream.hpp                 os.put(os.widen(c));
c                 578 uspace/lib/cpp/include/__bits/io/ostream.hpp                                             char c)
c                 590 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 594 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 600 uspace/lib/cpp/include/__bits/io/ostream.hpp                 os.put(c);
c                 610 uspace/lib/cpp/include/__bits/io/ostream.hpp                                             signed char c)
c                 622 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 626 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 632 uspace/lib/cpp/include/__bits/io/ostream.hpp                 os.put(c);
c                 642 uspace/lib/cpp/include/__bits/io/ostream.hpp                                             unsigned char c)
c                 654 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 658 uspace/lib/cpp/include/__bits/io/ostream.hpp                     os.put(c);
c                 664 uspace/lib/cpp/include/__bits/io/ostream.hpp                 os.put(c);
c                 136 uspace/lib/cpp/include/__bits/io/sstream.hpp             int_type pbackfail(int_type c = traits_type::eof()) override
c                 138 uspace/lib/cpp/include/__bits/io/sstream.hpp                 if (!traits_type::eq_int_type(c, traits_type::eof()) &&
c                 140 uspace/lib/cpp/include/__bits/io/sstream.hpp                     traits_type::eq(traits_type::to_char_type(c), this->gptr()[-1]))
c                 144 uspace/lib/cpp/include/__bits/io/sstream.hpp                     return c;
c                 146 uspace/lib/cpp/include/__bits/io/sstream.hpp                 else if (!traits_type::eq_int_type(c, traits_type::eof()) &&
c                 149 uspace/lib/cpp/include/__bits/io/sstream.hpp                     *--this->input_next_ = c;
c                 151 uspace/lib/cpp/include/__bits/io/sstream.hpp                     return c;
c                 153 uspace/lib/cpp/include/__bits/io/sstream.hpp                 else if (traits_type::eq_int_type(c, traits_type::eof()) &&
c                 158 uspace/lib/cpp/include/__bits/io/sstream.hpp                     return traits_type::not_eof(c);
c                 164 uspace/lib/cpp/include/__bits/io/sstream.hpp             int_type overflow(int_type c = traits_type::eof()) override
c                 169 uspace/lib/cpp/include/__bits/io/sstream.hpp                 if (!traits_type::eq_int_type(c, traits_type::eof()))
c                 172 uspace/lib/cpp/include/__bits/io/sstream.hpp                         return c;
c                 177 uspace/lib/cpp/include/__bits/io/sstream.hpp                     str_.push_back(traits_type::to_char_type(c));
c                 180 uspace/lib/cpp/include/__bits/io/sstream.hpp                     return c;
c                 182 uspace/lib/cpp/include/__bits/io/sstream.hpp                 else if (traits_type::eq_int_type(c, traits_type::eof()))
c                 183 uspace/lib/cpp/include/__bits/io/sstream.hpp                     return traits_type::not_eof(c);
c                 143 uspace/lib/cpp/include/__bits/io/streambuf.hpp             int_type sputbackc(char_type c)
c                 145 uspace/lib/cpp/include/__bits/io/streambuf.hpp                 if (!putback_avail_() || traits_type::eq(c, gptr()[-1]))
c                 146 uspace/lib/cpp/include/__bits/io/streambuf.hpp                     return pbackfail(traits_type::to_int_type(c));
c                 163 uspace/lib/cpp/include/__bits/io/streambuf.hpp             int_type sputc(char_type c)
c                 166 uspace/lib/cpp/include/__bits/io/streambuf.hpp                     return overflow(traits_type::to_int_type(c));
c                 169 uspace/lib/cpp/include/__bits/io/streambuf.hpp                     traits_type::assign(*output_next_++, c);
c                 171 uspace/lib/cpp/include/__bits/io/streambuf.hpp                     return traits_type::to_int_type(c);
c                 369 uspace/lib/cpp/include/__bits/io/streambuf.hpp             virtual int_type pbackfail(int_type c = traits_type::eof())
c                 395 uspace/lib/cpp/include/__bits/io/streambuf.hpp             virtual int_type overflow(int_type c = traits_type::eof())
c                  82 uspace/lib/cpp/include/__bits/io/streambufs.hpp                     auto c = fgetc(in_);
c                  83 uspace/lib/cpp/include/__bits/io/streambufs.hpp                     putchar(c); // TODO: Temporary source of feedback.
c                  84 uspace/lib/cpp/include/__bits/io/streambufs.hpp                     if (c == traits_type::eof())
c                  87 uspace/lib/cpp/include/__bits/io/streambufs.hpp                     buffer_[i] = static_cast<char_type>(c);
c                 143 uspace/lib/cpp/include/__bits/io/streambufs.hpp             int_type overflow(int_type c = traits_type::eof()) override
c                 145 uspace/lib/cpp/include/__bits/io/streambufs.hpp                 if (!traits_type::eq_int_type(c, traits_type::eof()))
c                 147 uspace/lib/cpp/include/__bits/io/streambufs.hpp                     auto cc = traits_type::to_char_type(c);
c                 151 uspace/lib/cpp/include/__bits/io/streambufs.hpp                 return traits_type::not_eof(c);
c                 873 uspace/lib/cpp/include/__bits/iterator.hpp                     proxy_type(int_type c, streambuf_type* sbuf)
c                 874 uspace/lib/cpp/include/__bits/iterator.hpp                         : char_{c}, sbuf_{sbuf}
c                 987 uspace/lib/cpp/include/__bits/iterator.hpp             ostreambuf_iterator& operator=(char_type c)
c                 989 uspace/lib/cpp/include/__bits/iterator.hpp                 if (!failed() && sbuf_->sputc(c) == traits_type::eof())
c                1026 uspace/lib/cpp/include/__bits/iterator.hpp     auto begin(Container& c) -> decltype(c.begin())
c                1028 uspace/lib/cpp/include/__bits/iterator.hpp         return c.begin();
c                1032 uspace/lib/cpp/include/__bits/iterator.hpp     auto begin(const Container& c) -> decltype(c.begin())
c                1034 uspace/lib/cpp/include/__bits/iterator.hpp         return c.begin();
c                1038 uspace/lib/cpp/include/__bits/iterator.hpp     auto end(Container& c) -> decltype(c.end())
c                1040 uspace/lib/cpp/include/__bits/iterator.hpp         return c.end();
c                1044 uspace/lib/cpp/include/__bits/iterator.hpp     auto end(const Container& c) -> decltype(c.end())
c                1046 uspace/lib/cpp/include/__bits/iterator.hpp         return c.end();
c                1062 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto cbegin(const Container& c) noexcept(noexcept(std::begin(c)))
c                1063 uspace/lib/cpp/include/__bits/iterator.hpp         -> decltype(std::begin(c))
c                1065 uspace/lib/cpp/include/__bits/iterator.hpp         return std::begin(c);
c                1069 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto cend(const Container& c) noexcept(noexcept(std::end(c)))
c                1070 uspace/lib/cpp/include/__bits/iterator.hpp         -> decltype(std::end(c))
c                1072 uspace/lib/cpp/include/__bits/iterator.hpp         return std::end(c);
c                1076 uspace/lib/cpp/include/__bits/iterator.hpp     auto rbegin(Container& c) -> decltype(c.rbegin())
c                1078 uspace/lib/cpp/include/__bits/iterator.hpp         return c.rbegin();
c                1082 uspace/lib/cpp/include/__bits/iterator.hpp     auto rbegin(const Container& c) -> decltype(c.rbegin())
c                1084 uspace/lib/cpp/include/__bits/iterator.hpp         return c.rbegin();
c                1088 uspace/lib/cpp/include/__bits/iterator.hpp     auto rend(Container& c) -> decltype(c.rend())
c                1090 uspace/lib/cpp/include/__bits/iterator.hpp         return c.rend();
c                1094 uspace/lib/cpp/include/__bits/iterator.hpp     auto rend(const Container& c) -> decltype(c.rend())
c                1096 uspace/lib/cpp/include/__bits/iterator.hpp         return c.rend();
c                1124 uspace/lib/cpp/include/__bits/iterator.hpp     auto crbegin(const Container& c) -> decltype(std::rbegin(c))
c                1126 uspace/lib/cpp/include/__bits/iterator.hpp         return std::rbegin(c);
c                1130 uspace/lib/cpp/include/__bits/iterator.hpp     auto crend(const Container& c) -> decltype(std::rend(c))
c                1132 uspace/lib/cpp/include/__bits/iterator.hpp         return std::rend(c);
c                1140 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto size(const Container& c) -> decltype(c.size())
c                1142 uspace/lib/cpp/include/__bits/iterator.hpp         return c.size();
c                1152 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto empty(const Container& c) -> decltype(c.empty())
c                1154 uspace/lib/cpp/include/__bits/iterator.hpp         return c.empty();
c                1170 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto data(Container& c) -> decltype(c.data())
c                1172 uspace/lib/cpp/include/__bits/iterator.hpp         return c.data();
c                1176 uspace/lib/cpp/include/__bits/iterator.hpp     constexpr auto data(const Container& c) -> decltype(c.data())
c                1178 uspace/lib/cpp/include/__bits/iterator.hpp         return c.data();
c                  74 uspace/lib/cpp/include/__bits/locale/ctype.hpp             bool is(mask m, char_type c) const
c                  76 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_is(m, c);
c                  97 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type toupper(char_type c) const
c                  99 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_toupper(c);
c                 107 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type tolower(char_type c) const
c                 109 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_tolower(c);
c                 117 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type widen(char c) const
c                 119 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_widen(c);
c                 127 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char narrow(char_type c, char def) const
c                 129 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_narrow(c, def);
c                 150 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual bool do_is(mask m, char_type c) const
c                 177 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_toupper(char_type c) const
c                 180 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 189 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_tolower(char_type c) const
c                 192 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 201 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_widen(char c) const
c                 204 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 214 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char do_narrow(char_type c, char def) const
c                 217 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 265 uspace/lib/cpp/include/__bits/locale/ctype.hpp             bool is(mask m, char_type c) const
c                 267 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_is(m, c);
c                 288 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type toupper(char_type c) const
c                 290 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_toupper(c);
c                 298 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type tolower(char_type c) const
c                 300 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_tolower(c);
c                 308 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type widen(char c) const
c                 310 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_widen(c);
c                 318 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char narrow(char_type c, char def) const
c                 320 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_narrow(c, def);
c                 345 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual bool do_is(mask m, char_type c) const
c                 348 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 if ((m & space) != 0 && std::isspace(c))
c                 350 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 else if ((m & alpha) != 0 && std::isalpha(c))
c                 352 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 else if ((m & upper) != 0 && std::isupper(c))
c                 354 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 else if ((m & lower) != 0 && std::islower(c))
c                 356 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 else if ((m & digit) != 0 && std::isdigit(c))
c                 382 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_toupper(char_type c) const
c                 384 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return std::toupper(c);
c                 395 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_tolower(char_type c) const
c                 397 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return std::tolower(c);
c                 408 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_widen(char c) const
c                 410 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 422 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char do_narrow(char_type c, char def) const
c                 424 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 449 uspace/lib/cpp/include/__bits/locale/ctype.hpp             bool is(mask m, char_type c) const
c                 451 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_is(m, c);
c                 472 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type toupper(char_type c) const
c                 474 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_toupper(c);
c                 482 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type tolower(char_type c) const
c                 484 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_tolower(c);
c                 492 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char_type widen(char c) const
c                 494 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_widen(c);
c                 502 uspace/lib/cpp/include/__bits/locale/ctype.hpp             char narrow(char_type c, char def) const
c                 504 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return do_narrow(c, def);
c                 529 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual bool do_is(mask m, char_type c) const
c                 556 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_toupper(char_type c) const
c                 559 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 568 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_tolower(char_type c) const
c                 571 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 580 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char_type do_widen(char c) const
c                 583 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                 593 uspace/lib/cpp/include/__bits/locale/ctype.hpp             virtual char do_narrow(char_type c, char def) const
c                 596 uspace/lib/cpp/include/__bits/locale/ctype.hpp                 return c;
c                  61 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isspace(Char c, const locale& loc)
c                  63 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::space, c);
c                  67 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isprint(Char c, const locale& loc)
c                  69 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::print, c);
c                  73 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool iscntrl(Char c, const locale& loc)
c                  75 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::cntrl, c);
c                  79 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isupper(Char c, const locale& loc)
c                  81 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::upper, c);
c                  85 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool islower(Char c, const locale& loc)
c                  87 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::lower, c);
c                  91 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isalpha(Char c, const locale& loc)
c                  93 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::alpha, c);
c                  97 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isdigit(Char c, const locale& loc)
c                  99 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::digit, c);
c                 103 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool ispunct(Char c, const locale& loc)
c                 105 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::punct, c);
c                 109 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isxdigit(Char c, const locale& loc)
c                 111 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::xdigit, c);
c                 115 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isalnum(Char c, const locale& loc)
c                 117 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::alnum, c);
c                 121 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isgraph(Char c, const locale& loc)
c                 123 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::graph, c);
c                 127 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     bool isblank(Char c, const locale& loc)
c                 129 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).is(ctype_base::blank, c);
c                 141 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     Char toupper(Char c, const locale& loc)
c                 143 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).toupper(c);
c                 147 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp     Char tolower(Char c, const locale& loc)
c                 149 uspace/lib/cpp/include/__bits/locale/locale_misc.hpp         return use_facet<ctype<Char>>(loc).tolower(c);
c                 182 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         auto c = *in++;
c                 185 uspace/lib/cpp/include/__bits/locale/num_get.hpp                             true_str[i] = c;
c                 187 uspace/lib/cpp/include/__bits/locale/num_get.hpp                             false_str[i] = c;
c                 354 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     auto c = *in;
c                 355 uspace/lib/cpp/include/__bits/locale/num_get.hpp                     if (ct.is(ctype_base::digit, c) || (hex &&
c                 356 uspace/lib/cpp/include/__bits/locale/num_get.hpp                        ((c >= ct.widen('A') && c <= ct.widen('F')) ||
c                 357 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         (c >= ct.widen('a') && c <= ct.widen('f')))))
c                 360 uspace/lib/cpp/include/__bits/locale/num_get.hpp                         base.buffer_[i++] = c;
c                 107 uspace/lib/cpp/include/__bits/locale/num_put.hpp                     for (auto c: s)
c                 108 uspace/lib/cpp/include/__bits/locale/num_put.hpp                         *it++ = c;
c                  80 uspace/lib/cpp/include/__bits/random.hpp     template<class UIntType, UIntType a, UIntType c, UIntType m>
c                  83 uspace/lib/cpp/include/__bits/random.hpp         static_assert(m == 0 || (a < m && c < m));
c                  89 uspace/lib/cpp/include/__bits/random.hpp             static constexpr result_type increment = c;
c                  94 uspace/lib/cpp/include/__bits/random.hpp                 return c == 0U ? 1U : 0U;
c                 125 uspace/lib/cpp/include/__bits/random.hpp                 if (c % modulus_ == 0 && s % modulus_ == 0)
c                 146 uspace/lib/cpp/include/__bits/random.hpp                 if (c % modulus_ == 0 && s == 0)
c                 210 uspace/lib/cpp/include/__bits/random.hpp                 state_ = (a * state_ + c) % modulus_;
c                 228 uspace/lib/cpp/include/__bits/random.hpp         UIntType b, size_t t, UIntType c, size_t l, UIntType f
c                 257 uspace/lib/cpp/include/__bits/random.hpp             static constexpr UIntType tempering_c = c;
c                 405 uspace/lib/cpp/include/__bits/random.hpp                 auto z3 = z2 ^ (lshift_(z2, t) & c);
c                  92 uspace/lib/cpp/include/__bits/string/string.hpp         static const char_type* find(const char_type* s, size_t n, const char_type& c)
c                  97 uspace/lib/cpp/include/__bits/string/string.hpp                 if (s[i] == c)
c                 114 uspace/lib/cpp/include/__bits/string/string.hpp         static char_type* assign(char_type* s, size_t n, char_type c)
c                 121 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type*>(memset(s, static_cast<int>(c), n));
c                 124 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type not_eof(int_type c) noexcept
c                 126 uspace/lib/cpp/include/__bits/string/string.hpp             if (!eq_int_type(c, eof()))
c                 127 uspace/lib/cpp/include/__bits/string/string.hpp                 return c;
c                 132 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr char_type to_char_type(int_type c) noexcept
c                 134 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type>(c);
c                 137 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type to_int_type(char_type c) noexcept
c                 139 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<int_type>(c);
c                 192 uspace/lib/cpp/include/__bits/string/string.hpp         static const char_type* find(const char_type* s, size_t n, const char_type& c)
c                 213 uspace/lib/cpp/include/__bits/string/string.hpp         static char_type* assign(char_type* s, size_t n, char_type c)
c                 220 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type not_eof(int_type c) noexcept
c                 226 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr char_type to_char_type(int_type c) noexcept
c                 228 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type>(c);
c                 231 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type to_int_type(char_type c) noexcept
c                 233 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<int_type>(c);
c                 286 uspace/lib/cpp/include/__bits/string/string.hpp         static const char_type* find(const char_type* s, size_t n, const char_type& c)
c                 307 uspace/lib/cpp/include/__bits/string/string.hpp         static char_type* assign(char_type* s, size_t n, char_type c)
c                 314 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type not_eof(int_type c) noexcept
c                 320 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr char_type to_char_type(int_type c) noexcept
c                 322 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type>(c);
c                 325 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type to_int_type(char_type c) noexcept
c                 327 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<int_type>(c);
c                 380 uspace/lib/cpp/include/__bits/string/string.hpp         static const char_type* find(const char_type* s, size_t n, const char_type& c)
c                 385 uspace/lib/cpp/include/__bits/string/string.hpp                 if (s[i] == c)
c                 402 uspace/lib/cpp/include/__bits/string/string.hpp         static char_type* assign(char_type* s, size_t n, char_type c)
c                 404 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type*>(memset(s, static_cast<int>(c), n * sizeof(wchar_t)));
c                 407 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type not_eof(int_type c) noexcept
c                 409 uspace/lib/cpp/include/__bits/string/string.hpp             if (!eq_int_type(c, eof()))
c                 410 uspace/lib/cpp/include/__bits/string/string.hpp                 return c;
c                 415 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr char_type to_char_type(int_type c) noexcept
c                 417 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<char_type>(c);
c                 420 uspace/lib/cpp/include/__bits/string/string.hpp         static constexpr int_type to_int_type(char_type c) noexcept
c                 422 uspace/lib/cpp/include/__bits/string/string.hpp             return static_cast<int_type>(c);
c                 522 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(size_type n, value_type c, const allocator_type& alloc = allocator_type{})
c                 527 uspace/lib/cpp/include/__bits/string/string.hpp                     traits_type::assign(data_[i], c);
c                 604 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(value_type c)
c                 606 uspace/lib/cpp/include/__bits/string/string.hpp                 *this = basic_string{1, c};
c                 702 uspace/lib/cpp/include/__bits/string/string.hpp             void resize(size_type new_size, value_type c)
c                 813 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator+=(value_type c)
c                 815 uspace/lib/cpp/include/__bits/string/string.hpp                 push_back(c);
c                 857 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& append(size_type n, value_type c)
c                 859 uspace/lib/cpp/include/__bits/string/string.hpp                 return append(basic_string(n, c));
c                 873 uspace/lib/cpp/include/__bits/string/string.hpp             void push_back(value_type c)
c                 876 uspace/lib/cpp/include/__bits/string/string.hpp                 traits_type::assign(data_[size_++], c);
c                 923 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& assign(size_type n, value_type c)
c                 925 uspace/lib/cpp/include/__bits/string/string.hpp                 return assign(basic_string(n, c));
c                 974 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& insert(size_type pos, size_type n, value_type c)
c                 976 uspace/lib/cpp/include/__bits/string/string.hpp                 return insert(pos, basic_string(n, c));
c                 979 uspace/lib/cpp/include/__bits/string/string.hpp             iterator insert(const_iterator pos, value_type c)
c                 985 uspace/lib/cpp/include/__bits/string/string.hpp                 traits_type::assign(data_[idx], c);
c                 993 uspace/lib/cpp/include/__bits/string/string.hpp             iterator insert(const_iterator pos, size_type n, value_type c)
c                1005 uspace/lib/cpp/include/__bits/string/string.hpp                     traits_type::assign(*it++, c);
c                1108 uspace/lib/cpp/include/__bits/string/string.hpp                                   value_type c)
c                1110 uspace/lib/cpp/include/__bits/string/string.hpp                 return replace(pos, n1, basic_string(n2, c));
c                1132 uspace/lib/cpp/include/__bits/string/string.hpp                                   size_type n, value_type c)
c                1134 uspace/lib/cpp/include/__bits/string/string.hpp                 return replace(i1 - begin(), i2 - i1, basic_string(n, c));
c                1232 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find(value_type c, size_type pos = 0) const noexcept
c                1239 uspace/lib/cpp/include/__bits/string/string.hpp                     if (traits_type::eq(c, data_[i]))
c                1273 uspace/lib/cpp/include/__bits/string/string.hpp             size_type rfind(value_type c, size_type pos = npos) const noexcept
c                1280 uspace/lib/cpp/include/__bits/string/string.hpp                     if (traits_type::eq(c, data_[i - 1]))
c                1314 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_of(value_type c, size_type pos = 0) const noexcept
c                1316 uspace/lib/cpp/include/__bits/string/string.hpp                 return find(c, pos);
c                1343 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_of(value_type c, size_type pos = npos) const noexcept
c                1345 uspace/lib/cpp/include/__bits/string/string.hpp                 return rfind(c, pos);
c                1375 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept
c                1382 uspace/lib/cpp/include/__bits/string/string.hpp                     if (!traits_type::eq(c, data_[i]))
c                1413 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept
c                1422 uspace/lib/cpp/include/__bits/string/string.hpp                     if (!traits_type::eq(c, data_[i - 1]))
c                1579 uspace/lib/cpp/include/__bits/string/string.hpp                 value_type c{};
c                1580 uspace/lib/cpp/include/__bits/string/string.hpp                 traits_type::assign(data_[size_], c);
c                1941 uspace/lib/cpp/include/__bits/string/string.hpp             for (const auto& c: str)
c                1942 uspace/lib/cpp/include/__bits/string/string.hpp                 res = res * 5 + (res >> 3) + static_cast<size_t>(c);
c                  66 uspace/lib/cpp/include/__bits/string/string_io.hpp                 auto c = Traits::to_char_type(ic);
c                  67 uspace/lib/cpp/include/__bits/string/string_io.hpp                 if(isspace(c, is.getloc()))
c                  70 uspace/lib/cpp/include/__bits/string/string_io.hpp                 str.push_back(c);
c                 146 uspace/lib/cpp/include/__bits/string/string_io.hpp                 auto c = Traits::to_char_type(ic);
c                 147 uspace/lib/cpp/include/__bits/string/string_io.hpp                 if (Traits::eq(c, delim))
c                 150 uspace/lib/cpp/include/__bits/string/string_io.hpp                 str.push_back(c);
c                 105 uspace/lib/cpp/src/__bits/test/array.cpp         auto [a, b, c] = arr4;
c                 108 uspace/lib/cpp/src/__bits/test/array.cpp         test_eq("structured binding part 3", c, 3);
c                 115 uspace/lib/cpp/src/__bits/test/functional.cpp         std::function<char(char)> f2{[&](auto c){ x = 42; return ++c; }};
c                1827 uspace/lib/display/test/display.c 	resp.event.ev.kbd.c = L'\0';
c                1850 uspace/lib/display/test/display.c 	PCUT_ASSERT_INT_EQUALS(resp.event.ev.kbd.c,
c                1851 uspace/lib/display/test/display.c 	    resp.revent.ev.kbd.c);
c                  56 uspace/lib/drv/include/pci_dev_iface.h #define PCI_CAP_ID(c)	((c) + 0x0)
c                  57 uspace/lib/drv/include/pci_dev_iface.h #define PCI_CAP_NEXT(c)	((c) + 0x1)
c                  71 uspace/lib/drv/include/pci_dev_iface.h pci_config_space_cap_first(async_sess_t *sess, uint8_t *c, uint8_t *id)
c                  81 uspace/lib/drv/include/pci_dev_iface.h 		*c = 0;
c                  85 uspace/lib/drv/include/pci_dev_iface.h 	rc = pci_config_space_read_8(sess, PCI_CAP_PTR, c);
c                  88 uspace/lib/drv/include/pci_dev_iface.h 	if (!c)
c                  90 uspace/lib/drv/include/pci_dev_iface.h 	return pci_config_space_read_8(sess, PCI_CAP_ID(*c), id);
c                  94 uspace/lib/drv/include/pci_dev_iface.h pci_config_space_cap_next(async_sess_t *sess, uint8_t *c, uint8_t *id)
c                  96 uspace/lib/drv/include/pci_dev_iface.h 	errno_t rc = pci_config_space_read_8(sess, PCI_CAP_NEXT(*c), c);
c                  99 uspace/lib/drv/include/pci_dev_iface.h 	if (!c)
c                 101 uspace/lib/drv/include/pci_dev_iface.h 	return pci_config_space_read_8(sess, PCI_CAP_ID(*c), id);
c                 452 uspace/lib/fs/libfs.c 	char c = plb_get_char(pos);
c                 453 uspace/lib/fs/libfs.c 	if (c == '/')
c                 457 uspace/lib/fs/libfs.c 		c = plb_get_char(pos);
c                 458 uspace/lib/fs/libfs.c 		if (pos == last || c == '/') {
c                 464 uspace/lib/fs/libfs.c 		dest[i] = c;
c                 117 uspace/lib/gfxfont/src/text.c 	char32_t c;
c                 169 uspace/lib/gfxfont/src/text.c 		c = str_decode(str, &off, STR_NO_LIMIT);
c                 171 uspace/lib/gfxfont/src/text.c 		    (c >> 16) & 0xff,
c                 172 uspace/lib/gfxfont/src/text.c 		    (c >> 8) & 0xff,
c                 173 uspace/lib/gfxfont/src/text.c 		    c & 0xff);
c                 179 uspace/lib/gfxfont/src/text.c 			c = '.';
c                 181 uspace/lib/gfxfont/src/text.c 			    (c >> 16) & 0xff,
c                 182 uspace/lib/gfxfont/src/text.c 			    (c >> 8) & 0xff,
c                 183 uspace/lib/gfxfont/src/text.c 			    c & 0xff);
c                 313 uspace/lib/hound/src/protocol.c 	const format_convert_t c = {
c                 322 uspace/lib/hound/src/protocol.c 	    flags, c.arg, bsize);
c                 576 uspace/lib/hound/src/protocol.c 			const format_convert_t c = { .arg = ipc_get_arg3(&call) };
c                 578 uspace/lib/hound/src/protocol.c 				.sampling_rate = c.f.rate * 100,
c                 579 uspace/lib/hound/src/protocol.c 				.channels = c.f.channels,
c                 580 uspace/lib/hound/src/protocol.c 				.sample_format = c.f.format,
c                  39 uspace/lib/http/include/http/ctype.h static inline bool is_separator(char c)
c                  41 uspace/lib/http/include/http/ctype.h 	switch (c) {
c                  67 uspace/lib/http/include/http/ctype.h static inline bool is_lws(char c)
c                  69 uspace/lib/http/include/http/ctype.h 	switch (c) {
c                  80 uspace/lib/http/include/http/ctype.h static inline bool is_ctl(char c)
c                  82 uspace/lib/http/include/http/ctype.h 	return c < 32 || c == 127;
c                  85 uspace/lib/http/include/http/ctype.h static inline bool is_token(char c)
c                  87 uspace/lib/http/include/http/ctype.h 	return !is_separator(c) && !is_ctl(c);
c                  94 uspace/lib/http/src/headers.c 	char c = 0;
c                  99 uspace/lib/http/src/headers.c 		errno_t rc = recv_char(rb, &c, true);
c                 102 uspace/lib/http/src/headers.c 	} while (is_token(c));
c                 104 uspace/lib/http/src/headers.c 	if (c != ':')
c                 114 uspace/lib/http/src/headers.c 	char c = 0;
c                 121 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, false);
c                 125 uspace/lib/http/src/headers.c 		if (c != ' ' && c != '\t')
c                 128 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, true);
c                 136 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, true);
c                 140 uspace/lib/http/src/headers.c 		if (c != '\r' && c != '\n')
c                 144 uspace/lib/http/src/headers.c 		rc = recv_discard(rb, (c == '\r' ? '\n' : '\r'), &nrecv);
c                 148 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, false);
c                 152 uspace/lib/http/src/headers.c 		if (c != ' ' && c != '\t')
c                 156 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, true);
c                 330 uspace/lib/http/src/headers.c 		char c = 0;
c                 331 uspace/lib/http/src/headers.c 		rc = recv_char(rb, &c, false);
c                 335 uspace/lib/http/src/headers.c 		if (c == '\n' || c == '\r')
c                 148 uspace/lib/http/src/receive-buffer.c errno_t recv_char(receive_buffer_t *rb, char *c, bool consume)
c                 178 uspace/lib/http/src/receive-buffer.c 	*c = rb->buffer[rb->out];
c                 205 uspace/lib/http/src/receive-buffer.c 	char c = 0;
c                 206 uspace/lib/http/src/receive-buffer.c 	errno_t rc = recv_char(rb, &c, false);
c                 209 uspace/lib/http/src/receive-buffer.c 	if (c != discard) {
c                 213 uspace/lib/http/src/receive-buffer.c 	rc = recv_char(rb, &c, true);
c                 245 uspace/lib/http/src/receive-buffer.c 		char c = 0;
c                 246 uspace/lib/http/src/receive-buffer.c 		errno_t rc = recv_char(rb, &c, false);
c                 250 uspace/lib/http/src/receive-buffer.c 		if (!class(c))
c                 253 uspace/lib/http/src/receive-buffer.c 		rc = recv_char(rb, &c, true);
c                 269 uspace/lib/http/src/receive-buffer.c 	char c = 0;
c                 270 uspace/lib/http/src/receive-buffer.c 	errno_t rc = recv_char(rb, &c, false);
c                 274 uspace/lib/http/src/receive-buffer.c 	if (c != '\r' && c != '\n') {
c                 279 uspace/lib/http/src/receive-buffer.c 	rc = recv_char(rb, &c, true);
c                 284 uspace/lib/http/src/receive-buffer.c 	rc = recv_discard(rb, (c == '\r' ? '\n' : '\r'), &nr);
c                 299 uspace/lib/http/src/receive-buffer.c 		char c = 0;
c                 300 uspace/lib/http/src/receive-buffer.c 		errno_t rc = recv_char(rb, &c, true);
c                 303 uspace/lib/http/src/receive-buffer.c 		if (c == '\n') {
c                 311 uspace/lib/http/src/receive-buffer.c 		} else if (c == '\r') {
c                 319 uspace/lib/http/src/receive-buffer.c 		line[written++] = c;
c                  44 uspace/lib/http/src/response.c static bool is_digit(char c)
c                  46 uspace/lib/http/src/response.c 	return (c >= '0' && c <= '9');
c                 107 uspace/lib/http/src/response.c static bool is_not_newline(char c)
c                 109 uspace/lib/http/src/response.c 	return (c != '\n' && c != '\r');
c                 110 uspace/lib/inet/src/addr.c void inet_addr(inet_addr_t *addr, uint8_t a, uint8_t b, uint8_t c, uint8_t d)
c                 114 uspace/lib/inet/src/addr.c 	    ((addr32_t) c << 8) | ((addr32_t) d);
c                 117 uspace/lib/inet/src/addr.c void inet_naddr(inet_naddr_t *naddr, uint8_t a, uint8_t b, uint8_t c, uint8_t d,
c                 122 uspace/lib/inet/src/addr.c 	    ((addr32_t) c << 8) | ((addr32_t) d);
c                 126 uspace/lib/inet/src/addr.c void inet_addr6(inet_addr_t *addr, uint16_t a, uint16_t b, uint16_t c,
c                 134 uspace/lib/inet/src/addr.c 	addr->addr6[4] = (c >> 8) & 0xff;
c                 135 uspace/lib/inet/src/addr.c 	addr->addr6[5] = c & 0xff;
c                 148 uspace/lib/inet/src/addr.c void inet_naddr6(inet_naddr_t *naddr, uint16_t a, uint16_t b, uint16_t c,
c                 156 uspace/lib/inet/src/addr.c 	naddr->addr6[4] = (c >> 8) & 0xff;
c                 157 uspace/lib/inet/src/addr.c 	naddr->addr6[5] = c & 0xff;
c                  62 uspace/lib/inet/src/hostname.c 	const char *c;
c                  66 uspace/lib/inet/src/hostname.c 	c = str;
c                  67 uspace/lib/inet/src/hostname.c 	while (isalnum(*c)) {
c                  69 uspace/lib/inet/src/hostname.c 		dstart = c;
c                  72 uspace/lib/inet/src/hostname.c 			++c;
c                  73 uspace/lib/inet/src/hostname.c 		} while (isalnum(*c) || *c == '-');
c                  76 uspace/lib/inet/src/hostname.c 		if (*c != '.' || !isalnum(c[1]))
c                  79 uspace/lib/inet/src/hostname.c 		++c;
c                  90 uspace/lib/inet/src/hostname.c 	if (endptr == NULL && *c != '\0')
c                  94 uspace/lib/inet/src/hostname.c 		*endptr = (char *)c;
c                  97 uspace/lib/inet/src/hostname.c 		name = str_ndup(str, c - str);
c                  66 uspace/lib/input/include/io/kbd_event.h 	char32_t c;
c                 112 uspace/lib/input/src/input.c 	char32_t c;
c                 119 uspace/lib/input/src/input.c 	c = ipc_get_arg5(call);
c                 121 uspace/lib/input/src/input.c 	rc = input->ev_ops->key(input, kbd_id, type, key, mods, c);
c                 979 uspace/lib/label/src/gpt.c 	gpt_header_t *c;
c                 981 uspace/lib/label/src/gpt.c 	c = calloc(1, hdr_size);
c                 982 uspace/lib/label/src/gpt.c 	if (c == NULL)
c                 985 uspace/lib/label/src/gpt.c 	memcpy(c, hdr, hdr_size);
c                 986 uspace/lib/label/src/gpt.c 	c->header_crc32 = 0;
c                 987 uspace/lib/label/src/gpt.c 	*crc = compute_crc32((uint8_t *)c, hdr_size);
c                 988 uspace/lib/label/src/gpt.c 	free(c);
c                  47 uspace/lib/math/generic/sincos.c void sincosf(float x, float *s, float *c)
c                  53 uspace/lib/math/generic/sincos.c 		*c = __math_base_cos_32(-base_arg);
c                  56 uspace/lib/math/generic/sincos.c 		*c = __math_base_cos_32(base_arg);
c                  68 uspace/lib/math/generic/sincos.c void sincos(double x, double *s, double *c)
c                  74 uspace/lib/math/generic/sincos.c 		*c = __math_base_cos_64(-base_arg);
c                  77 uspace/lib/math/generic/sincos.c 		*c = __math_base_cos_64(base_arg);
c                 206 uspace/lib/pcm/src/format.c 			float c = (a + b); \
c                 207 uspace/lib/pcm/src/format.c 			if (c < -1.0) c = -1.0; \
c                 208 uspace/lib/pcm/src/format.c 			if (c > 1.0) c = 1.0; \
c                 209 uspace/lib/pcm/src/format.c 			c += 1.0; \
c                 210 uspace/lib/pcm/src/format.c 			c *= ((float)(type)high - (float)(type)low) / 2; \
c                 211 uspace/lib/pcm/src/format.c 			c += (float)(type)low; \
c                 215 uspace/lib/pcm/src/format.c 				dst_buf[pos] = to((type)c, type, endian); \
c                  63 uspace/lib/pcut/src/preproc.c static void identifier_add_char(identifier_t *identifier, char c) {
c                  69 uspace/lib/pcut/src/preproc.c 	identifier->name[identifier->length] = c;
c                  91 uspace/lib/pcut/src/preproc.c static int is_identifier_char(int c, int inside_identifier) {
c                  92 uspace/lib/pcut/src/preproc.c 	return isalpha(c) || (c == '_')
c                  93 uspace/lib/pcut/src/preproc.c 			|| (inside_identifier && isdigit(c));
c                  62 uspace/lib/posix/include/common/mem.h #define memchr(s, c, cnt)  __builtin_memchr((s), (c), (cnt))
c                  44 uspace/lib/posix/include/posix/ctype.h extern int isascii(int c);
c                  45 uspace/lib/posix/include/posix/ctype.h extern int toascii(int c);
c                  47 uspace/lib/posix/include/posix/ctype.h #define _tolower(c) ((c) - 'A' + 'a')
c                  48 uspace/lib/posix/include/posix/ctype.h #define _toupper(c) ((c) - 'a' + 'A')
c                  96 uspace/lib/posix/include/posix/stdio.h extern int putc_unlocked(int c, FILE *stream);
c                  97 uspace/lib/posix/include/posix/stdio.h extern int putchar_unlocked(int c);
c                  58 uspace/lib/posix/include/posix/string.h extern void *memccpy(void *__restrict__ dest, const void *__restrict__ src, int c, size_t n);
c                  61 uspace/lib/posix/include/posix/string.h extern char *gnu_strchrnul(const char *s, int c);
c                  61 uspace/lib/posix/include/posix/strings.h extern char *index(const char *s, int c);
c                  62 uspace/lib/posix/include/posix/strings.h extern char *rindex(const char *s, int c);
c                  44 uspace/lib/posix/src/ctype.c int isascii(int c)
c                  46 uspace/lib/posix/src/ctype.c 	return c >= 0 && c < 128;
c                  55 uspace/lib/posix/src/ctype.c int toascii(int c)
c                  57 uspace/lib/posix/src/ctype.c 	return c & 0x7F;
c                  88 uspace/lib/posix/src/fnmatch.c static coll_elm_t _coll_elm_char(int c)
c                  90 uspace/lib/posix/src/fnmatch.c 	return c;
c                 218 uspace/lib/posix/src/fnmatch.c static bool _is_in_class (const char *cname, int c)
c                 230 uspace/lib/posix/src/fnmatch.c 		return class->func(c);
c                 106 uspace/lib/posix/src/stdio.c 	int c = fgetc(stream); /* Current input character. Might be EOF. */
c                 110 uspace/lib/posix/src/stdio.c 		if (c == EOF) {
c                 111 uspace/lib/posix/src/stdio.c 			c = '\0';
c                 127 uspace/lib/posix/src/stdio.c 		*pos = c;
c                 130 uspace/lib/posix/src/stdio.c 		if (c != '\0') {
c                 133 uspace/lib/posix/src/stdio.c 			if (c == delimiter) {
c                 139 uspace/lib/posix/src/stdio.c 				c = EOF;
c                 145 uspace/lib/posix/src/stdio.c 				c = fgetc(stream);
c                 148 uspace/lib/posix/src/stdio.c 	} while (c != '\0');
c                 355 uspace/lib/posix/src/stdio.c int putc_unlocked(int c, FILE *stream)
c                 357 uspace/lib/posix/src/stdio.c 	return putc(c, stream);
c                 366 uspace/lib/posix/src/stdio.c int putchar_unlocked(int c)
c                 368 uspace/lib/posix/src/stdio.c 	return putchar(c);
c                 116 uspace/lib/posix/src/string.c void *memccpy(void *restrict dest, const void *restrict src, int c, size_t n)
c                 127 uspace/lib/posix/src/string.c 		if (bsrc[i] == (unsigned char) c) {
c                 144 uspace/lib/posix/src/string.c char *gnu_strchrnul(const char *s, int c)
c                 148 uspace/lib/posix/src/string.c 	while (*s != c && *s != '\0') {
c                 167 uspace/lib/posix/src/strings.c char *index(const char *s, int c)
c                 169 uspace/lib/posix/src/strings.c 	return strchr(s, c);
c                 180 uspace/lib/posix/src/strings.c char *rindex(const char *s, int c)
c                 182 uspace/lib/posix/src/strings.c 	return strrchr(s, c);
c                 122 uspace/lib/posix/test/stdlib.c 	char c;
c                 131 uspace/lib/posix/test/stdlib.c 	c = 'x';
c                 132 uspace/lib/posix/test/stdlib.c 	rc = write(file, &c, sizeof(c));
c                 133 uspace/lib/posix/test/stdlib.c 	PCUT_ASSERT_TRUE(rc == sizeof(c));
c                 136 uspace/lib/posix/test/stdlib.c 	c = '\0';
c                 137 uspace/lib/posix/test/stdlib.c 	rc = read(file, &c, sizeof(c));
c                 138 uspace/lib/posix/test/stdlib.c 	PCUT_ASSERT_TRUE(rc == sizeof(c));
c                 139 uspace/lib/posix/test/stdlib.c 	PCUT_ASSERT_INT_EQUALS('x', c);
c                 707 uspace/lib/sif/src/sif.c 	int c;
c                 716 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 717 uspace/lib/sif/src/sif.c 	if (c != '[') {
c                 723 uspace/lib/sif/src/sif.c 		c = fgetc(f);
c                 724 uspace/lib/sif/src/sif.c 		if (c == EOF) {
c                 729 uspace/lib/sif/src/sif.c 		if (c == ']')
c                 732 uspace/lib/sif/src/sif.c 		if (c == '\\') {
c                 733 uspace/lib/sif/src/sif.c 			c = fgetc(f);
c                 734 uspace/lib/sif/src/sif.c 			if (c == EOF) {
c                 751 uspace/lib/sif/src/sif.c 		str[sidx++] = c;
c                 775 uspace/lib/sif/src/sif.c 	int c;
c                 781 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 782 uspace/lib/sif/src/sif.c 	if (c != '=') {
c                 901 uspace/lib/sif/src/sif.c 	int c;
c                 915 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 916 uspace/lib/sif/src/sif.c 	if (c != '(') {
c                 921 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 922 uspace/lib/sif/src/sif.c 	if (c == EOF) {
c                 927 uspace/lib/sif/src/sif.c 	while (c != ')') {
c                 928 uspace/lib/sif/src/sif.c 		ungetc(c, f);
c                 936 uspace/lib/sif/src/sif.c 		c = fgetc(f);
c                 937 uspace/lib/sif/src/sif.c 		if (c == EOF) {
c                 945 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 946 uspace/lib/sif/src/sif.c 	if (c != '{') {
c                 951 uspace/lib/sif/src/sif.c 	c = fgetc(f);
c                 952 uspace/lib/sif/src/sif.c 	if (c == EOF) {
c                 957 uspace/lib/sif/src/sif.c 	while (c != '}') {
c                 958 uspace/lib/sif/src/sif.c 		ungetc(c, f);
c                 966 uspace/lib/sif/src/sif.c 		c = fgetc(f);
c                 967 uspace/lib/sif/src/sif.c 		if (c == EOF) {
c                  68 uspace/lib/ui/include/types/ui/paint.h 	const char *c[3][3];
c                 287 uspace/lib/ui/src/entry.c 	char c;
c                 329 uspace/lib/ui/src/entry.c 	c = entry->text[off1];
c                 339 uspace/lib/ui/src/entry.c 	entry->text[off1] = c;
c                 344 uspace/lib/ui/src/entry.c 		c = entry->text[off2];
c                 370 uspace/lib/ui/src/entry.c 		entry->text[off2] = c;
c                 584 uspace/lib/ui/src/entry.c 	char c;
c                 589 uspace/lib/ui/src/entry.c 	c = entry->text[off2];
c                 594 uspace/lib/ui/src/entry.c 	entry->text[off2] = c;
c                 762 uspace/lib/ui/src/entry.c 	    (event->mods & (KM_CTRL | KM_ALT)) == 0 && event->c >= ' ') {
c                 764 uspace/lib/ui/src/entry.c 		rc = chr_encode(event->c, buf, &off, sizeof(buf));
c                 429 uspace/lib/ui/src/menu.c 	    (event->mods & (KM_CTRL | KM_SHIFT)) == 0 && event->c != '\0')
c                 430 uspace/lib/ui/src/menu.c 		ui_menu_press_accel(menu, event->c, event->kbd_id);
c                 517 uspace/lib/ui/src/menu.c 	char32_t c;
c                 541 uspace/lib/ui/src/menu.c 		if (event->c != '\0') {
c                 544 uspace/lib/ui/src/menu.c 				c = ui_menu_entry_get_accel(mentry);
c                 545 uspace/lib/ui/src/menu.c 				if (c == (char32_t)tolower(event->c) &&
c                 640 uspace/lib/ui/src/menu.c void ui_menu_press_accel(ui_menu_t *menu, char32_t c, sysarg_t kbd_id)
c                 643 uspace/lib/ui/src/menu.c 		menu->cb->press_accel(menu, menu->arg, c, kbd_id);
c                 461 uspace/lib/ui/src/menubar.c 	if (event->c != '\0' && !ui_menu_dd_is_open(mbar->selected)) {
c                 463 uspace/lib/ui/src/menubar.c 		ui_menu_bar_press_accel(mbar, event->c, event->kbd_id);
c                 478 uspace/lib/ui/src/menubar.c 	    (event->mods & (KM_CTRL | KM_SHIFT)) == 0 && event->c != '\0') {
c                 480 uspace/lib/ui/src/menubar.c 		ui_menu_bar_press_accel(mbar, event->c, event->kbd_id);
c                 502 uspace/lib/ui/src/menubar.c void ui_menu_bar_press_accel(ui_menu_bar_t *mbar, char32_t c, sysarg_t kbd_id)
c                 510 uspace/lib/ui/src/menubar.c 		if ((char32_t)tolower(c) == maccel) {
c                 289 uspace/lib/ui/src/menudd.c static void ui_menu_dd_press_accel(ui_menu_t *menu, void *arg, char32_t c,
c                 295 uspace/lib/ui/src/menudd.c 	ui_menu_bar_press_accel(mdd->mbar, c, kbd_id);
c                 670 uspace/lib/ui/src/paint.c 	bufsz = str_size(boxc->c[0][0]) +
c                 671 uspace/lib/ui/src/paint.c 	    str_size(boxc->c[0][1]) * (dim.x - 2) +
c                 672 uspace/lib/ui/src/paint.c 	    str_size(boxc->c[0][2]) + 1;
c                 680 uspace/lib/ui/src/paint.c 	str_cpy(str, bufsz, boxc->c[0][0]);
c                 681 uspace/lib/ui/src/paint.c 	off = str_size(boxc->c[0][0]);
c                 684 uspace/lib/ui/src/paint.c 		str_cpy(str + off, bufsz - off, boxc->c[0][1]);
c                 685 uspace/lib/ui/src/paint.c 		off += str_size(boxc->c[0][1]);
c                 688 uspace/lib/ui/src/paint.c 	str_cpy(str + off, bufsz - off, boxc->c[0][2]);
c                 689 uspace/lib/ui/src/paint.c 	off += str_size(boxc->c[0][2]);
c                 702 uspace/lib/ui/src/paint.c 		rc = gfx_puttext(&pos, &fmt, boxc->c[1][0]);
c                 707 uspace/lib/ui/src/paint.c 		rc = gfx_puttext(&pos, &fmt, boxc->c[1][2]);
c                 714 uspace/lib/ui/src/paint.c 	str_cpy(str, bufsz, boxc->c[2][0]);
c                 715 uspace/lib/ui/src/paint.c 	off = str_size(boxc->c[2][0]);
c                 718 uspace/lib/ui/src/paint.c 		str_cpy(str + off, bufsz - off, boxc->c[2][1]);
c                 719 uspace/lib/ui/src/paint.c 		off += str_size(boxc->c[2][1]);
c                 722 uspace/lib/ui/src/paint.c 	str_cpy(str + off, bufsz - off, boxc->c[2][2]);
c                 723 uspace/lib/ui/src/paint.c 	off += str_size(boxc->c[2][2]);
c                 592 uspace/lib/ui/src/wdecor.c void ui_wdecor_sysmenu_accel(ui_wdecor_t *wdecor, char32_t c, sysarg_t idev_id)
c                 595 uspace/lib/ui/src/wdecor.c 		wdecor->cb->sysmenu_accel(wdecor, wdecor->arg, c, idev_id);
c                1074 uspace/lib/ui/src/wdecor.c 		if (event->c != '\0') {
c                1076 uspace/lib/ui/src/wdecor.c 			ui_wdecor_sysmenu_accel(wdecor, event->c,
c                1108 uspace/lib/ui/src/window.c static void wd_sysmenu_accel(ui_wdecor_t *wdecor, void *arg, char32_t c,
c                1116 uspace/lib/ui/src/window.c 		ui_menu_bar_press_accel(window->mbar, c, idev_id);
c                1664 uspace/lib/ui/src/window.c     char32_t c, sysarg_t idev_id)
c                1668 uspace/lib/ui/src/window.c 	(void)c;
c                 127 uspace/lib/ui/test/control.c 	event.c = '@';
c                 135 uspace/lib/ui/test/control.c 	PCUT_ASSERT_INT_EQUALS(resp.kevent.c, event.c);
c                 308 uspace/lib/ui/test/list.c 	event.c = '\0';
c                 332 uspace/lib/ui/test/list.c 	event.c = '\0';
c                1363 uspace/lib/ui/test/list.c 	ui_list_entry_t *a, *b, *c, *d, *e;
c                1415 uspace/lib/ui/test/list.c 	rc = ui_list_entry_append(list, &attr, &c);
c                1428 uspace/lib/ui/test/list.c 	ui_list_cursor_center(list, c);
c                1429 uspace/lib/ui/test/list.c 	PCUT_ASSERT_EQUALS(c, list->cursor);
c                  55 uspace/lib/ui/test/menu.c 	char32_t c;
c                 667 uspace/lib/ui/test/menu.c 	char32_t c;
c                 674 uspace/lib/ui/test/menu.c 	c = 'A';
c                 679 uspace/lib/ui/test/menu.c 	ui_menu_press_accel(menu, c, idev_id);
c                 688 uspace/lib/ui/test/menu.c 	ui_menu_press_accel(menu, c, idev_id);
c                 777 uspace/lib/ui/test/menu.c 	char32_t c;
c                 789 uspace/lib/ui/test/menu.c 	c = 'A';
c                 791 uspace/lib/ui/test/menu.c 	ui_menu_press_accel(menu, c, idev_id);
c                 795 uspace/lib/ui/test/menu.c 	PCUT_ASSERT_EQUALS(c, resp.c);
c                 832 uspace/lib/ui/test/menu.c     char32_t c, sysarg_t kbd_id)
c                 838 uspace/lib/ui/test/menu.c 	resp->c = c;
c                 997 uspace/lib/ui/test/wdecor.c 	event.c = 'a';
c                1002 uspace/lib/ui/test/wdecor.c 	PCUT_ASSERT_INT_EQUALS(event.c, resp.accel);
c                 792 uspace/lib/ui/test/window.c 	kbd_event.c = 'x';
c                 809 uspace/lib/ui/test/window.c 	PCUT_ASSERT_INT_EQUALS(kbd_event.c, resp.kbd_event.c);
c                  39 uspace/lib/uri/internal/ctype.h static inline bool is_unreserved(char c)
c                  41 uspace/lib/uri/internal/ctype.h 	return isalpha(c) || isdigit(c) ||
c                  42 uspace/lib/uri/internal/ctype.h 	    c == '-' || c == '.' || c == '_' || c == '~';
c                  45 uspace/lib/uri/internal/ctype.h static inline bool is_hexdig(char c)
c                  47 uspace/lib/uri/internal/ctype.h 	return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') ||
c                  48 uspace/lib/uri/internal/ctype.h 	    (c >= 'A' && c <= 'F');
c                  51 uspace/lib/uri/internal/ctype.h static inline bool is_subdelim(char c)
c                  53 uspace/lib/uri/internal/ctype.h 	switch (c) {
c                  71 uspace/lib/uri/internal/ctype.h static inline bool is_gendelim(char c)
c                  73 uspace/lib/uri/internal/ctype.h 	switch (c) {
c                  87 uspace/lib/uri/internal/ctype.h static inline bool is_reserved(char c)
c                  89 uspace/lib/uri/internal/ctype.h 	return is_gendelim(c) || is_subdelim(c);
c                 175 uspace/lib/usb/src/dma_buffer.c 	for (size_t c = 0; c < chunks; c++) {
c                 176 uspace/lib/usb/src/dma_buffer.c 		const void *addr = db->virt + (c * chunk_size);
c                 195 uspace/lib/virtio/virtio-pci.c 	uint8_t c;
c                 197 uspace/lib/virtio/virtio-pci.c 	for (rc = pci_config_space_cap_first(pci_sess, &c, &cap_vndr);
c                 198 uspace/lib/virtio/virtio-pci.c 	    (rc == EOK) && c;
c                 199 uspace/lib/virtio/virtio-pci.c 	    rc = pci_config_space_cap_next(pci_sess, &c, &cap_vndr)) {
c                 205 uspace/lib/virtio/virtio-pci.c 		    VIRTIO_PCI_CAP_CAP_LEN(c), &cap_len);
c                 216 uspace/lib/virtio/virtio-pci.c 		    VIRTIO_PCI_CAP_CFG_TYPE(c), &cfg_type);
c                 221 uspace/lib/virtio/virtio-pci.c 		rc = pci_config_space_read_8(pci_sess, VIRTIO_PCI_CAP_BAR(c),
c                 228 uspace/lib/virtio/virtio-pci.c 		    VIRTIO_PCI_CAP_OFFSET(c), &offset);
c                 234 uspace/lib/virtio/virtio-pci.c 		    VIRTIO_PCI_CAP_LENGTH(c), &length);
c                 249 uspace/lib/virtio/virtio-pci.c 			    VIRTIO_PCI_CAP_END(c), &multiplier);
c                  40 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_CAP_LEN(c)	((c) + 2)
c                  41 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_CFG_TYPE(c)	((c) + 3)
c                  42 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_BAR(c)		((c) + 4)
c                  43 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_OFFSET(c)	((c) + 8)
c                  44 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_LENGTH(c)	((c) + 12)
c                  45 uspace/lib/virtio/virtio-pci.h #define VIRTIO_PCI_CAP_END(c)		((c) + 16)
c                 194 uspace/srv/fs/exfat/exfat_fat.c 	exfat_cluster_t c = EXFAT_CLST_FIRST;
c                 205 uspace/srv/fs/exfat/exfat_fat.c 		rc = exfat_cluster_walk(bs, service_id, fcl, &c, &clusters, max_clusters);
c                 211 uspace/srv/fs/exfat/exfat_fat.c 		    (c - EXFAT_CLST_FIRST) * SPC(bs) + (bn % SPC(bs)), flags);
c                 214 uspace/srv/fs/exfat/exfat_fat.c 			*clp = c;
c                 487 uspace/srv/fs/exfat/exfat_fat.c exfat_zero_cluster(exfat_bs_t *bs, service_id_t service_id, exfat_cluster_t c)
c                 494 uspace/srv/fs/exfat/exfat_fat.c 		rc = exfat_block_get_by_clst(&b, bs, service_id, false, c, NULL,
c                 196 uspace/srv/fs/fat/fat_fat.c 	fat_cluster_t c = 0;
c                 214 uspace/srv/fs/fat/fat_fat.c 	rc = fat_cluster_walk(bs, service_id, fcl, &c, &clusters, max_clusters);
c                 219 uspace/srv/fs/fat/fat_fat.c 	rc = block_get(block, service_id, CLBN2PBN(bs, c, bn), flags);
c                 222 uspace/srv/fs/fat/fat_fat.c 		*clp = c;
c                 641 uspace/srv/fs/fat/fat_fat.c 	unsigned c;
c                 646 uspace/srv/fs/fat/fat_fat.c 		for (c = 0; c < nclsts; c++) {
c                 647 uspace/srv/fs/fat/fat_fat.c 			rc = fat_set_cluster(bs, service_id, fatno, lifo[c],
c                 648 uspace/srv/fs/fat/fat_fat.c 			    c == 0 ? clst_last1 : lifo[c - 1]);
c                 882 uspace/srv/fs/fat/fat_fat.c fat_zero_cluster(struct fat_bs *bs, service_id_t service_id, fat_cluster_t c)
c                 889 uspace/srv/fs/fat/fat_fat.c 		rc = _fat_block_get(&b, bs, service_id, c, NULL, i,
c                 365 uspace/srv/hid/console/console.c     kbd_event_type_t type, keycode_t key, keymod_t mods, char32_t c)
c                 380 uspace/srv/hid/console/console.c 		event.ev.key.c = c;
c                 557 uspace/srv/hid/console/console.c 			    (event->ev.key.c != 0)) {
c                 558 uspace/srv/hid/console/console.c 				char32_t tmp[2] = { event->ev.key.c, 0 };
c                  76 uspace/srv/hid/display/input.c     kbd_event_type_t type, keycode_t key, keymod_t mods, char32_t c)
c                  86 uspace/srv/hid/display/input.c 	event.c = c;
c                 339 uspace/srv/hid/display/test/client.c 	event.c = L'\0';
c                 352 uspace/srv/hid/display/test/client.c 	PCUT_ASSERT_EQUALS(event.c, revent.ev.kbd.c);
c                 490 uspace/srv/hid/display/test/display.c 	event.c = L'\0';
c                 541 uspace/srv/hid/display/test/display.c 	event.c = L'\0';
c                 553 uspace/srv/hid/display/test/seat.c 	event.c = L'\0';
c                 569 uspace/srv/hid/display/test/seat.c 	PCUT_ASSERT_EQUALS(event.c, revent.ev.kbd.c);
c                 250 uspace/srv/hid/input/input.c 	ev.c = layout_parse_ev(kdev->active_layout, &ev);
c                 256 uspace/srv/hid/input/input.c 			    ev.type, ev.key, ev.mods, ev.c);
c                 216 uspace/srv/hid/input/layout/ar.c 	char32_t c;
c                 218 uspace/srv/hid/input/layout/ar.c 	c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
c                 219 uspace/srv/hid/input/layout/ar.c 	if (c != 0)
c                 220 uspace/srv/hid/input/layout/ar.c 		return c;
c                 223 uspace/srv/hid/input/layout/ar.c 		c = translate(ev->key, map_shifted, sizeof(map_shifted) / sizeof(char32_t));
c                 225 uspace/srv/hid/input/layout/ar.c 		c = translate(ev->key, map_not_shifted, sizeof(map_not_shifted) / sizeof(char32_t));
c                 227 uspace/srv/hid/input/layout/ar.c 	if (c != 0)
c                 228 uspace/srv/hid/input/layout/ar.c 		return c;
c                 231 uspace/srv/hid/input/layout/ar.c 		c = translate(ev->key, map_numeric, sizeof(map_numeric) / sizeof(char32_t));
c                 233 uspace/srv/hid/input/layout/ar.c 		c = 0;
c                 235 uspace/srv/hid/input/layout/ar.c 	return c;
c                 286 uspace/srv/hid/input/layout/cz.c 	char32_t c;
c                 295 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_hacek_ucase, sizeof(map_hacek_ucase) / sizeof(char32_t));
c                 297 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_hacek_lcase, sizeof(map_hacek_lcase) / sizeof(char32_t));
c                 299 uspace/srv/hid/input/layout/cz.c 	return c;
c                 304 uspace/srv/hid/input/layout/cz.c 	char32_t c;
c                 313 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_carka_ucase, sizeof(map_carka_ucase) / sizeof(char32_t));
c                 315 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_carka_lcase, sizeof(map_carka_lcase) / sizeof(char32_t));
c                 317 uspace/srv/hid/input/layout/cz.c 	return c;
c                 322 uspace/srv/hid/input/layout/cz.c 	char32_t c;
c                 333 uspace/srv/hid/input/layout/cz.c 	c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
c                 334 uspace/srv/hid/input/layout/cz.c 	if (c != 0)
c                 335 uspace/srv/hid/input/layout/cz.c 		return c;
c                 339 uspace/srv/hid/input/layout/cz.c 			c = translate(ev->key, map_ns_caps, sizeof(map_ns_caps) / sizeof(char32_t));
c                 341 uspace/srv/hid/input/layout/cz.c 			c = translate(ev->key, map_ns_nocaps, sizeof(map_ns_nocaps) / sizeof(char32_t));
c                 343 uspace/srv/hid/input/layout/cz.c 		if (c != 0)
c                 344 uspace/srv/hid/input/layout/cz.c 			return c;
c                 348 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_ucase, sizeof(map_ucase) / sizeof(char32_t));
c                 350 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_lcase, sizeof(map_lcase) / sizeof(char32_t));
c                 352 uspace/srv/hid/input/layout/cz.c 	if (c != 0)
c                 353 uspace/srv/hid/input/layout/cz.c 		return c;
c                 356 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_shifted, sizeof(map_shifted) / sizeof(char32_t));
c                 358 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_not_shifted, sizeof(map_not_shifted) / sizeof(char32_t));
c                 360 uspace/srv/hid/input/layout/cz.c 	if (c != 0)
c                 361 uspace/srv/hid/input/layout/cz.c 		return c;
c                 364 uspace/srv/hid/input/layout/cz.c 		c = translate(ev->key, map_numeric, sizeof(map_numeric) / sizeof(char32_t));
c                 366 uspace/srv/hid/input/layout/cz.c 		c = 0;
c                 368 uspace/srv/hid/input/layout/cz.c 	return c;
c                 225 uspace/srv/hid/input/layout/fr_azerty.c 	char32_t c = translate (e->key, map_neutral, sizeof (map_neutral) / sizeof (char32_t));
c                 226 uspace/srv/hid/input/layout/fr_azerty.c 	if (c)
c                 227 uspace/srv/hid/input/layout/fr_azerty.c 		return c;
c                 230 uspace/srv/hid/input/layout/fr_azerty.c 		c = translate (e->key, map_shifted, sizeof (map_shifted) / sizeof (char32_t));
c                 232 uspace/srv/hid/input/layout/fr_azerty.c 		c = translate (e->key, map_not_shifted, sizeof (map_not_shifted) / sizeof (char32_t));
c                 234 uspace/srv/hid/input/layout/fr_azerty.c 	if (c)
c                 235 uspace/srv/hid/input/layout/fr_azerty.c 		return c;
c                 238 uspace/srv/hid/input/layout/fr_azerty.c 		c = translate (e->key, map_ucase, sizeof (map_ucase) / sizeof (char32_t));
c                 240 uspace/srv/hid/input/layout/fr_azerty.c 		c = translate (e->key, map_lcase, sizeof (map_lcase) / sizeof (char32_t));
c                 242 uspace/srv/hid/input/layout/fr_azerty.c 	if (c)
c                 243 uspace/srv/hid/input/layout/fr_azerty.c 		return c;
c                 246 uspace/srv/hid/input/layout/fr_azerty.c 		c = translate (e->key, map_numeric, sizeof (map_numeric) / sizeof (char32_t));
c                 248 uspace/srv/hid/input/layout/fr_azerty.c 		c = 0;
c                 250 uspace/srv/hid/input/layout/fr_azerty.c 	return c;
c                 225 uspace/srv/hid/input/layout/us_dvorak.c 	char32_t c;
c                 227 uspace/srv/hid/input/layout/us_dvorak.c 	c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
c                 228 uspace/srv/hid/input/layout/us_dvorak.c 	if (c != 0)
c                 229 uspace/srv/hid/input/layout/us_dvorak.c 		return c;
c                 232 uspace/srv/hid/input/layout/us_dvorak.c 		c = translate(ev->key, map_ucase, sizeof(map_ucase) / sizeof(char32_t));
c                 234 uspace/srv/hid/input/layout/us_dvorak.c 		c = translate(ev->key, map_lcase, sizeof(map_lcase) / sizeof(char32_t));
c                 236 uspace/srv/hid/input/layout/us_dvorak.c 	if (c != 0)
c                 237 uspace/srv/hid/input/layout/us_dvorak.c 		return c;
c                 240 uspace/srv/hid/input/layout/us_dvorak.c 		c = translate(ev->key, map_shifted, sizeof(map_shifted) / sizeof(char32_t));
c                 242 uspace/srv/hid/input/layout/us_dvorak.c 		c = translate(ev->key, map_not_shifted, sizeof(map_not_shifted) / sizeof(char32_t));
c                 244 uspace/srv/hid/input/layout/us_dvorak.c 	if (c != 0)
c                 245 uspace/srv/hid/input/layout/us_dvorak.c 		return c;
c                 248 uspace/srv/hid/input/layout/us_dvorak.c 		c = translate(ev->key, map_numeric, sizeof(map_numeric) / sizeof(char32_t));
c                 250 uspace/srv/hid/input/layout/us_dvorak.c 		c = 0;
c                 252 uspace/srv/hid/input/layout/us_dvorak.c 	return c;
c                 219 uspace/srv/hid/input/layout/us_qwerty.c 	char32_t c;
c                 221 uspace/srv/hid/input/layout/us_qwerty.c 	c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
c                 222 uspace/srv/hid/input/layout/us_qwerty.c 	if (c != 0)
c                 223 uspace/srv/hid/input/layout/us_qwerty.c 		return c;
c                 226 uspace/srv/hid/input/layout/us_qwerty.c 		c = translate(ev->key, map_ucase, sizeof(map_ucase) / sizeof(char32_t));
c                 228 uspace/srv/hid/input/layout/us_qwerty.c 		c = translate(ev->key, map_lcase, sizeof(map_lcase) / sizeof(char32_t));
c                 230 uspace/srv/hid/input/layout/us_qwerty.c 	if (c != 0)
c                 231 uspace/srv/hid/input/layout/us_qwerty.c 		return c;
c                 234 uspace/srv/hid/input/layout/us_qwerty.c 		c = translate(ev->key, map_shifted, sizeof(map_shifted) / sizeof(char32_t));
c                 236 uspace/srv/hid/input/layout/us_qwerty.c 		c = translate(ev->key, map_not_shifted, sizeof(map_not_shifted) / sizeof(char32_t));
c                 238 uspace/srv/hid/input/layout/us_qwerty.c 	if (c != 0)
c                 239 uspace/srv/hid/input/layout/us_qwerty.c 		return c;
c                 242 uspace/srv/hid/input/layout/us_qwerty.c 		c = translate(ev->key, map_numeric, sizeof(map_numeric) / sizeof(char32_t));
c                 244 uspace/srv/hid/input/layout/us_qwerty.c 		c = 0;
c                 246 uspace/srv/hid/input/layout/us_qwerty.c 	return c;
c                 220 uspace/srv/hid/remcons/user.c static kbd_event_t *new_kbd_event(kbd_event_type_t type, char32_t c)
c                 227 uspace/srv/hid/remcons/user.c 	event->c = c;
c                 230 uspace/srv/hid/remcons/user.c 	switch (c) {
c                 240 uspace/srv/hid/remcons/user.c 		event->c = '\b';
c                  63 uspace/srv/hid/rfb/rfb.c static errno_t recv_char(tcp_conn_t *conn, char *c)
c                  79 uspace/srv/hid/rfb/rfb.c 	*c = rbuf[rbuf_out++];
c                  85 uspace/srv/hid/rfb/rfb.c recv_chars(tcp_conn_t *conn, char *c, size_t count)
c                  88 uspace/srv/hid/rfb/rfb.c 		errno_t rc = recv_char(conn, c);
c                  91 uspace/srv/hid/rfb/rfb.c 		c++;
c                  99 uspace/srv/hid/rfb/rfb.c 		char c;
c                 100 uspace/srv/hid/rfb/rfb.c 		errno_t rc = recv_char(conn, &c);
c                 127 uspace/srv/locsrv/locsrv.c 	char32_t c;
c                 129 uspace/srv/locsrv/locsrv.c 	while ((c = str_decode(fqsn, &offset, STR_NO_LIMIT)) != 0) {
c                 130 uspace/srv/locsrv/locsrv.c 		if (c == '/') {
c                  99 uspace/srv/net/dnsrsrv/dns_msg.c 	char32_t c;
c                 109 uspace/srv/net/dnsrsrv/dns_msg.c 		c = str_decode(name, &off, STR_NO_LIMIT);
c                 110 uspace/srv/net/dnsrsrv/dns_msg.c 		if (c >= 127) {
c                 116 uspace/srv/net/dnsrsrv/dns_msg.c 		if (c == '.' || c == '\0') {
c                 136 uspace/srv/net/dnsrsrv/dns_msg.c 			if (c == '\0')
c                 140 uspace/srv/net/dnsrsrv/dns_msg.c 				buf[di] = c;
c                  44 uspace/srv/net/tcp/seq_no.c static bool seq_no_le_lt(uint32_t a, uint32_t b, uint32_t c)
c                  46 uspace/srv/net/tcp/seq_no.c 	if (a <= c) {
c                  47 uspace/srv/net/tcp/seq_no.c 		return (a <= b) && (b < c);
c                  49 uspace/srv/net/tcp/seq_no.c 		return (b < c) || (a <= b);
c                  54 uspace/srv/net/tcp/seq_no.c static bool seq_no_lt_le(uint32_t a, uint32_t b, uint32_t c)
c                  56 uspace/srv/net/tcp/seq_no.c 	if (a <= c) {
c                  57 uspace/srv/net/tcp/seq_no.c 		return (a < b) && (b <= c);
c                  59 uspace/srv/net/tcp/seq_no.c 		return (b <= c) || (a < b);
HelenOS homepage, sources at GitHub