Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 105) sorted by relevance

12345

/include/linux/
Dctype.h25 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument
26 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument
27 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument
28 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument
29 #define islower(c) ((__ismask(c)&(_L)) != 0) argument
30 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument
31 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument
33 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument
34 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument
35 #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) argument
[all …]
Djhash.h35 #define __jhash_mix(a, b, c) \ argument
46 #define __jhash_final(a, b, c) \ argument
72 u32 a, b, c; in jhash() local
119 u32 a, b, c; in jhash2() local
150 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) in __jhash_nwords()
161 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
Datomic.h28 #define atomic_cond_read_acquire(v, c) smp_cond_load_acquire(&(v)->counter, (c)) argument
29 #define atomic_cond_read_relaxed(v, c) smp_cond_load_relaxed(&(v)->counter, (c)) argument
31 #define atomic64_cond_read_acquire(v, c) smp_cond_load_acquire(&(v)->counter, (c)) argument
32 #define atomic64_cond_read_relaxed(v, c) smp_cond_load_relaxed(&(v)->counter, (c)) argument
Ddebug_locks.h24 #define DEBUG_LOCKS_WARN_ON(c) \ argument
39 # define SMP_DEBUG_LOCKS_WARN_ON(c) DEBUG_LOCKS_WARN_ON(c) argument
41 # define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) argument
Dinstrumentation.h10 #define __instrumentation_begin(c) ({ \ argument
49 #define __instrumentation_end(c) ({ \ argument
Drcupdate.h150 #define RCU_NOCB_LOCKDEP_WARN(c, s) RCU_LOCKDEP_WARN(c, s) argument
159 #define RCU_NOCB_LOCKDEP_WARN(c, s) argument
402 #define RCU_LOCKDEP_WARN(c, s) \ argument
434 static inline bool lockdep_assert_rcu_helper(bool c) in lockdep_assert_rcu_helper()
489 #define RCU_LOCKDEP_WARN(c, s) do { } while (0 && (c)) argument
535 #define __rcu_dereference_check(p, local, c, space) \ argument
543 #define __rcu_dereference_protected(p, local, c, space) \ argument
616 #define rcu_replace_pointer(rcu_ptr, ptr, c) \ argument
685 #define rcu_dereference_check(p, c) \ argument
701 #define rcu_dereference_bh_check(p, c) \ argument
[all …]
Dhid-debug.h40 #define hid_dump_input(a,b,c) do { } while (0) argument
41 #define hid_dump_report(a,b,c,d) do { } while (0) argument
43 #define hid_dump_field(a,b,c) do { } while (0) argument
Drbtree.h228 int c; in rb_find_add() local
264 int c; in rb_find_add_rcu() local
298 int c = cmp(key, node); in rb_find() local
329 int c = cmp(key, node); in rb_find_rcu() local
358 int c = cmp(key, node); in rb_find_first() local
Dsiphash.h48 static inline u64 siphash_4u32(const u32 a, const u32 b, const u32 c, in siphash_4u32()
146 #define SIPHASH_PERMUTATION(a, b, c, d) ( \ argument
157 #define HSIPHASH_PERMUTATION(a, b, c, d) ( \ argument
Dcapability.h71 # define cap_clear(c) do { (c).val = 0; } while (0) argument
73 #define cap_raise(c, flag) ((c).val |= BIT_ULL(flag)) argument
74 #define cap_lower(c, flag) ((c).val &= ~BIT_ULL(flag)) argument
75 #define cap_raised(c, flag) (((c).val & BIT_ULL(flag)) != 0) argument
Dfortify-string.h501 #define __fortify_memset_chk(p, c, size, p_size, p_size_field) ({ \ argument
512 #define memset(p, c, s) __fortify_memset_chk(p, c, s, \ argument
688 __FORTIFY_INLINE void *memscan(void * const POS0 p, int c, __kernel_size_t size) in memscan()
719 void *memchr(const void * const POS0 p, int c, __kernel_size_t size) in memchr()
731 __FORTIFY_INLINE void *memchr_inv(const void * const POS0 p, int c, size_t size) in memchr_inv()
Dcrc-ccitt.h11 static inline u16 crc_ccitt_byte(u16 crc, const u8 c) in crc_ccitt_byte()
Dnls.h62 static inline unsigned char nls_tolower(struct nls_table *t, unsigned char c) in nls_tolower()
69 static inline unsigned char nls_toupper(struct nls_table *t, unsigned char c) in nls_toupper()
Dppp_defs.h13 #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c) argument
Djiffies.h168 #define time_in_range(a,b,c) \ argument
180 #define time_in_range_open(a,b,c) \ argument
248 #define time_in_range64(a, b, c) \ argument
Duuid.h23 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
30 #define UUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
Dmemfd.h12 static inline long memfd_fcntl(struct file *f, unsigned int c, unsigned int a) in memfd_fcntl()
Dstringhash.h43 partial_name_hash(unsigned long c, unsigned long prevhash) in partial_name_hash()
Dclkdev.h26 #define CLKDEV_INIT(d, n, c) \ argument
Dvt_buffer.h29 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count) in scr_memsetw()
/include/linux/mfd/
Dingenic-tcu.h51 #define TCU_REG_TDFRc(c) (TCU_REG_TDFR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
52 #define TCU_REG_TDHRc(c) (TCU_REG_TDHR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
53 #define TCU_REG_TCNTc(c) (TCU_REG_TCNT0 + ((c) * TCU_CHANNEL_STRIDE)) argument
54 #define TCU_REG_TCSRc(c) (TCU_REG_TCSR0 + ((c) * TCU_CHANNEL_STRIDE)) argument
/include/asm-generic/
Dword-at-a-time.h18 …ic inline long prep_zero_mask(unsigned long val, unsigned long rhs, const struct word_at_a_time *c) in prep_zero_mask()
42 …line unsigned long has_zero(unsigned long val, unsigned long *data, const struct word_at_a_time *c) in has_zero()
94 …inline unsigned long has_zero(unsigned long a, unsigned long *bits, const struct word_at_a_time *c) in has_zero()
101 …e unsigned long prep_zero_mask(unsigned long a, unsigned long bits, const struct word_at_a_time *c) in prep_zero_mask()
/include/uapi/linux/
Dmap_to_7segment.h70 static __inline__ int map_to_seg7(struct seg7_conversion_map *map, int c) in map_to_seg7()
89 #define _SEG7(l,a,b,c,d,e,f,g) \ argument
Dmap_to_14segment.h85 static __inline__ int map_to_seg14(struct seg14_conversion_map *map, int c) in map_to_seg14()
107 #define _SEG14(sym, a, b, c, d, e, f, g1, g2, h, j, k, l, m, n) \ argument
/include/acpi/platform/
Dacgcc.h31 #define ACPI_PRINTF_LIKE(c) __attribute__ ((__format__ (__printf__, c, c+1))) argument

12345