| /include/linux/ |
| D | ctype.h | 25 #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 …]
|
| D | jhash.h | 35 #define __jhash_mix(a, b, c) \ argument 37 a -= c; a ^= rol32(c, 4); c += b; \ 38 b -= a; b ^= rol32(a, 6); a += c; \ 39 c -= b; c ^= rol32(b, 8); b += a; \ 40 a -= c; a ^= rol32(c, 16); c += b; \ 41 b -= a; b ^= rol32(a, 19); a += c; \ 42 c -= b; c ^= rol32(b, 4); b += a; \ 46 #define __jhash_final(a, b, c) \ argument 48 c ^= b; c -= rol32(b, 14); \ 49 a ^= c; a -= rol32(c, 11); \ [all …]
|
| D | dm-bufio.h | 39 void dm_bufio_client_destroy(struct dm_bufio_client *c); 41 void dm_bufio_client_reset(struct dm_bufio_client *c); 48 void dm_bufio_set_sector_offset(struct dm_bufio_client *c, sector_t start); 64 void *dm_bufio_read(struct dm_bufio_client *c, sector_t block, 67 void *dm_bufio_read_with_ioprio(struct dm_bufio_client *c, sector_t block, 74 void *dm_bufio_get(struct dm_bufio_client *c, sector_t block, 81 void *dm_bufio_new(struct dm_bufio_client *c, sector_t block, 89 void dm_bufio_prefetch(struct dm_bufio_client *c, 92 void dm_bufio_prefetch_with_ioprio(struct dm_bufio_client *c, 124 void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client *c); [all …]
|
| D | instrumentation.h | 10 #define __instrumentation_begin(c) ({ \ argument 11 asm volatile(__stringify(c) ": nop\n\t" \ 13 ".long " __stringify(c) "b - .\n\t" \ 14 ".popsection\n\t" : : "i" (c)); \ 49 #define __instrumentation_end(c) ({ \ argument 50 asm volatile(__stringify(c) ": nop\n\t" \ 52 ".long " __stringify(c) "b - .\n\t" \ 53 ".popsection\n\t" : : "i" (c)); \
|
| D | atomic.h | 28 #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
|
| D | debug_locks.h | 24 #define DEBUG_LOCKS_WARN_ON(c) \ argument 28 if (!oops_in_progress && unlikely(c)) { \ 31 WARN(1, "DEBUG_LOCKS_WARN_ON(%s)", #c); \ 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
|
| D | siphash.h | 35 u64 siphash_3u64(const u64 a, const u64 b, const u64 c, 37 u64 siphash_4u64(const u64 a, const u64 b, const u64 c, const u64 d, 40 u64 siphash_3u32(const u32 a, const u32 b, const u32 c, 48 static inline u64 siphash_4u32(const u32 a, const u32 b, const u32 c, in siphash_4u32() argument 51 return siphash_2u64((u64)b << 32 | a, (u64)d << 32 | c, key); in siphash_4u32() 102 u32 hsiphash_3u32(const u32 a, const u32 b, const u32 c, 104 u32 hsiphash_4u32(const u32 a, const u32 b, const u32 c, const u32 d, 146 #define SIPHASH_PERMUTATION(a, b, c, d) ( \ argument 148 (c) += (d), (d) = rol64((d), 16), (d) ^= (c), \ 150 (c) += (b), (b) = rol64((b), 17), (b) ^= (c), (c) = rol64((c), 32)) [all …]
|
| D | rbtree.h | 228 int c; in rb_find_add() local 232 c = cmp(node, parent); in rb_find_add() 234 if (c < 0) in rb_find_add() 236 else if (c > 0) in rb_find_add() 264 int c; in rb_find_add_rcu() local 268 c = cmp(node, parent); in rb_find_add_rcu() 270 if (c < 0) in rb_find_add_rcu() 272 else if (c > 0) in rb_find_add_rcu() 298 int c = cmp(key, node); in rb_find() local 300 if (c < 0) in rb_find() [all …]
|
| D | nls.h | 62 static inline unsigned char nls_tolower(struct nls_table *t, unsigned char c) in nls_tolower() argument 64 unsigned char nc = t->charset2lower[c]; in nls_tolower() 66 return nc ? nc : c; in nls_tolower() 69 static inline unsigned char nls_toupper(struct nls_table *t, unsigned char c) in nls_toupper() argument 71 unsigned char nc = t->charset2upper[c]; in nls_toupper() 73 return nc ? nc : c; in nls_toupper()
|
| D | console_struct.h | 177 #define CUR_SIZE(c) ((c) & 0x00000f) argument 190 #define CUR_CHANGE(c) ((c) & 0x00ff00) argument 191 #define CUR_SET(c) (((c) & 0xff0000) >> 8) argument
|
| D | rcupdate.h | 150 #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 405 if (debug_lockdep_rcu_enabled() && (c) && \ 434 static inline bool lockdep_assert_rcu_helper(bool c) in lockdep_assert_rcu_helper() argument 437 (c || !rcu_is_watching() || !rcu_lockdep_current_cpu_online()) && 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 539 RCU_LOCKDEP_WARN(!(c), "suspicious rcu_dereference_check() usage"); \ 543 #define __rcu_dereference_protected(p, local, c, space) \ argument [all …]
|
| D | stringhash.h | 43 partial_name_hash(unsigned long c, unsigned long prevhash) in partial_name_hash() argument 45 return (prevhash + (c << 4) + (c >> 4)) * 11; in partial_name_hash()
|
| D | uuid.h | 23 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument 27 (c) & 0xff, ((c) >> 8) & 0xff, \ 30 #define UUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument 34 ((c) >> 8) & 0xff, (c) & 0xff, \
|
| D | ppp_defs.h | 13 #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c) argument
|
| /include/asm-generic/ |
| D | atomic.h | 22 int c, old; \ 24 c = v->counter; \ 25 while ((old = arch_cmpxchg(&v->counter, c, c c_op i)) != c) \ 26 c = old; \ 32 int c, old; \ 34 c = v->counter; \ 35 while ((old = arch_cmpxchg(&v->counter, c, c c_op i)) != c) \ 36 c = old; \ 38 return c c_op i; \ 44 int c, old; \ [all …]
|
| D | word-at-a-time.h | 18 …ic inline long prep_zero_mask(unsigned long val, unsigned long rhs, const struct word_at_a_time *c) in prep_zero_mask() argument 20 unsigned long mask = (val & c->low_bits) + c->low_bits; 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() argument 44 unsigned long rhs = val | c->low_bits; in has_zero() 46 return (val + c->high_bits) & ~rhs; 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() argument 96 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; 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() argument
|
| /include/linux/mfd/ |
| D | ingenic-tcu.h | 51 #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/net/bluetooth/ |
| D | hci_core.h | 920 struct discovery_state *c = &hdev->discovery; in inquiry_cache_age() local 921 return jiffies - c->timestamp; in inquiry_cache_age() 992 static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c) in hci_conn_hash_add() argument 995 list_add_tail_rcu(&c->list, &h->list); in hci_conn_hash_add() 996 switch (c->type) { in hci_conn_hash_add() 1002 if (c->role == HCI_ROLE_SLAVE) in hci_conn_hash_add() 1015 static inline void hci_conn_hash_del(struct hci_dev *hdev, struct hci_conn *c) in hci_conn_hash_del() argument 1019 list_del_rcu(&c->list); in hci_conn_hash_del() 1022 switch (c->type) { in hci_conn_hash_del() 1028 if (c->role == HCI_ROLE_SLAVE) in hci_conn_hash_del() [all …]
|
| /include/acpi/platform/ |
| D | acgcc.h | 31 #define ACPI_PRINTF_LIKE(c) __attribute__ ((__format__ (__printf__, c, c+1))) argument
|
| /include/uapi/linux/ |
| D | mei_uuid.h | 18 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument 22 (c) & 0xff, ((c) >> 8) & 0xff, \
|
| D | map_to_7segment.h | 70 static __inline__ int map_to_seg7(struct seg7_conversion_map *map, int c) in map_to_seg7() argument 72 return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL; in map_to_seg7() 89 #define _SEG7(l,a,b,c,d,e,f,g) \ argument 90 ( a<<BIT_SEG7_A | b<<BIT_SEG7_B | c<<BIT_SEG7_C | d<<BIT_SEG7_D | \
|
| D | atm.h | 60 #define __SO_LEVEL_MATCH(c,m) (((c) >> 22) == ((m) & 0x1FF)) argument 61 #define __SO_NUMBER(c) (((c) >> 16) & 0x3f) argument 62 #define __SO_SIZE(c) ((c) & 0x3fff) argument
|
| /include/trace/events/ |
| D | filelock.h | 85 __entry->blocker = fl ? fl->c.flc_blocker : NULL; 86 __entry->owner = fl ? fl->c.flc_owner : NULL; 87 __entry->pid = fl ? fl->c.flc_pid : 0; 88 __entry->flags = fl ? fl->c.flc_flags : 0; 89 __entry->type = fl ? fl->c.flc_type : 0; 140 __entry->blocker = fl ? fl->c.flc_blocker : NULL; 141 __entry->owner = fl ? fl->c.flc_owner : NULL; 142 __entry->flags = fl ? fl->c.flc_flags : 0; 143 __entry->type = fl ? fl->c.flc_type : 0; 193 __entry->owner = fl->c.flc_owner; [all …]
|
| /include/linux/clk/ |
| D | analogbits-wrpll-cln28hpc.h | 71 int wrpll_configure_for_rate(struct wrpll_cfg *c, u32 target_rate, 74 unsigned int wrpll_calc_max_lock_us(const struct wrpll_cfg *c); 76 unsigned long wrpll_calc_output_rate(const struct wrpll_cfg *c,
|
| /include/linux/crush/ |
| D | hash.h | 19 extern __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c); 20 extern __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d); 21 extern __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d,
|