Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 125) sorted by relevance

12345

/include/linux/
Djhash.h35 #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
49 a ^= c; a -= rol32(c, 11); \
50 b ^= a; b -= rol32(a, 25); \
[all …]
Djiffies.h106 #define time_after(a,b) \ argument
107 (typecheck(unsigned long, a) && \
109 ((long)(b) - (long)(a) < 0))
110 #define time_before(a,b) time_after(b,a) argument
112 #define time_after_eq(a,b) \ argument
113 (typecheck(unsigned long, a) && \
115 ((long)(a) - (long)(b) >= 0))
116 #define time_before_eq(a,b) time_after_eq(b,a) argument
121 #define time_in_range(a,b,c) \ argument
122 (time_after_eq(a,b) && \
[all …]
Dmpi.h60 #define mpi_get_nlimbs(a) ((a)->nlimbs) argument
61 #define mpi_is_neg(a) ((a)->sign) argument
66 MPI mpi_alloc_like(MPI a);
67 void mpi_free(MPI a);
68 int mpi_resize(MPI a, unsigned nlimbs);
69 int mpi_copy(MPI *copy, const MPI a);
70 void mpi_clear(MPI a);
74 void mpi_m_check(MPI a);
75 void mpi_swap(MPI a, MPI b);
81 u32 mpi_get_keyid(MPI a, u32 *keyid);
[all …]
Duuid.h35 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
37 {{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff, \
42 #define UUID_BE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
44 {{ ((a) >> 24) & 0xff, ((a) >> 16) & 0xff, ((a) >> 8) & 0xff, (a) & 0xff, \
Dhid-debug.h52 #define hid_dump_input(a,b,c) do { } while (0) argument
53 #define hid_dump_device(a,b) do { } while (0) argument
54 #define hid_dump_field(a,b,c) do { } while (0) argument
55 #define hid_resolv_usage(a,b) do { } while (0) argument
56 #define hid_debug_register(a, b) do { } while (0) argument
57 #define hid_debug_unregister(a) do { } while (0) argument
60 #define hid_debug_event(a,b) do { } while (0) argument
Din.h202 #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0) argument
208 #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000) argument
214 #define IN_CLASSC(a) ((((long int) (a)) & 0xe0000000) == 0xc0000000) argument
219 #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000) argument
220 #define IN_MULTICAST(a) IN_CLASSD(a) argument
223 #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000) argument
224 #define IN_BADCLASS(a) IN_EXPERIMENTAL((a)) argument
240 #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000) argument
Dcapability.h438 #define CAP_BOP_ALL(c, a, b, OP) \ argument
442 c.cap[__capi] = a.cap[__capi] OP b.cap[__capi]; \
446 #define CAP_UOP_ALL(c, a, OP) \ argument
450 c.cap[__capi] = OP a.cap[__capi]; \
454 static inline kernel_cap_t cap_combine(const kernel_cap_t a, in cap_combine() argument
458 CAP_BOP_ALL(dest, a, b, |); in cap_combine()
462 static inline kernel_cap_t cap_intersect(const kernel_cap_t a, in cap_intersect() argument
466 CAP_BOP_ALL(dest, a, b, &); in cap_intersect()
470 static inline kernel_cap_t cap_drop(const kernel_cap_t a, in cap_drop() argument
474 CAP_BOP_ALL(dest, a, drop, &~); in cap_drop()
[all …]
Dcompiler-gcc.h41 #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0])) argument
90 #define __printf(a, b) __attribute__((format(printf, a, b))) argument
91 #define __scanf(a, b) __attribute__((format(scanf, a, b))) argument
Detherdevice.h167 const u16 *a = (const u16 *) addr1; in compare_ether_addr() local
171 return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | (a[2] ^ b[2])) != 0; in compare_ether_addr()
255 static inline unsigned long compare_ether_header(const void *a, const void *b) in compare_ether_header() argument
268 fold = *(unsigned long *)a ^ *(unsigned long *)b; in compare_ether_header()
269 fold |= *(unsigned long *)(a + 6) ^ *(unsigned long *)(b + 6); in compare_ether_header()
272 u32 *a32 = (u32 *)((u8 *)a + 2); in compare_ether_header()
275 return (*(u16 *)a ^ *(u16 *)b) | (a32[0] ^ b32[0]) | in compare_ether_header()
/include/asm-generic/
Dlocal64.h24 local_t a; member
29 #define local64_read(l) local_read(&(l)->a)
30 #define local64_set(l,i) local_set((&(l)->a),(i))
31 #define local64_inc(l) local_inc(&(l)->a)
32 #define local64_dec(l) local_dec(&(l)->a)
33 #define local64_add(i,l) local_add((i),(&(l)->a))
34 #define local64_sub(i,l) local_sub((i),(&(l)->a))
36 #define local64_sub_and_test(i, l) local_sub_and_test((i), (&(l)->a))
37 #define local64_dec_and_test(l) local_dec_and_test(&(l)->a)
38 #define local64_inc_and_test(l) local_inc_and_test(&(l)->a)
[all …]
Dlocal.h23 atomic_long_t a; member
28 #define local_read(l) atomic_long_read(&(l)->a)
29 #define local_set(l,i) atomic_long_set((&(l)->a),(i))
30 #define local_inc(l) atomic_long_inc(&(l)->a)
31 #define local_dec(l) atomic_long_dec(&(l)->a)
32 #define local_add(i,l) atomic_long_add((i),(&(l)->a))
33 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a))
35 #define local_sub_and_test(i, l) atomic_long_sub_and_test((i), (&(l)->a))
36 #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a)
37 #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a)
[all …]
Datomic64.h23 extern void atomic64_add(long long a, atomic64_t *v);
24 extern long long atomic64_add_return(long long a, atomic64_t *v);
25 extern void atomic64_sub(long long a, atomic64_t *v);
26 extern long long atomic64_sub_return(long long a, atomic64_t *v);
30 extern int atomic64_add_unless(atomic64_t *v, long long a, long long u);
32 #define atomic64_add_negative(a, v) (atomic64_add_return((a), (v)) < 0) argument
36 #define atomic64_sub_and_test(a, v) (atomic64_sub_return((a), (v)) == 0) argument
/include/linux/decompress/
Dmm.h61 #define large_malloc(a) malloc(a) argument
62 #define large_free(a) free(a) argument
80 #define malloc(a) kmalloc(a, GFP_KERNEL) argument
81 #define free(a) kfree(a) argument
83 #define large_malloc(a) vmalloc(a) argument
84 #define large_free(a) vfree(a) argument
/include/crypto/
Dgf128mul.h160 void gf128mul_lle(be128 *a, const be128 *b);
162 void gf128mul_bbe(be128 *a, const be128 *b);
165 void gf128mul_x_ble(be128 *a, const be128 *b);
175 void gf128mul_4k_lle(be128 *a, struct gf128mul_4k *t);
176 void gf128mul_4k_bbe(be128 *a, struct gf128mul_4k *t);
197 void gf128mul_64k_lle(be128 *a, struct gf128mul_64k *t);
198 void gf128mul_64k_bbe(be128 *a, struct gf128mul_64k *t);
Db128ops.h53 u64 a, b; member
57 __be64 a, b; member
61 __le64 b, a; member
66 r->a = p->a ^ q->a; in u128_xor()
/include/media/
Dadp1653.h68 #define ADP1653_INDICATOR_INTENSITY_uA_TO_REG(a) \ argument
69 ((a) / ADP1653_INDICATOR_INTENSITY_STEP)
70 #define ADP1653_INDICATOR_INTENSITY_REG_TO_uA(a) \ argument
71 ((a) * ADP1653_INDICATOR_INTENSITY_STEP)
84 #define ADP1653_FLASH_INTENSITY_mA_TO_REG(a) \ argument
85 ((a) < ADP1653_FLASH_INTENSITY_BASE ? 0 : \
86 (((a) - ADP1653_FLASH_INTENSITY_BASE) / ADP1653_FLASH_INTENSITY_STEP))
87 #define ADP1653_FLASH_INTENSITY_REG_TO_mA(a) \ argument
88 ((a) * ADP1653_FLASH_INTENSITY_STEP + ADP1653_FLASH_INTENSITY_BASE)
Dv4l2-ioctl.h129 struct v4l2_framebuffer *a);
131 struct v4l2_framebuffer *a);
142 int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
152 struct v4l2_output *a);
158 struct v4l2_queryctrl *a);
160 struct v4l2_control *a);
162 struct v4l2_control *a);
164 struct v4l2_ext_controls *a);
166 struct v4l2_ext_controls *a);
168 struct v4l2_ext_controls *a);
[all …]
/include/linux/crush/
Dhash.h10 extern __u32 crush_hash32(int type, __u32 a);
11 extern __u32 crush_hash32_2(int type, __u32 a, __u32 b);
12 extern __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c);
13 extern __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d);
14 extern __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d,
/include/acpi/platform/
Daclinux.h144 #define ACPI_ALLOCATE(a) acpi_os_allocate(a) argument
145 #define ACPI_ALLOCATE_ZEROED(a) acpi_os_allocate_zeroed(a) argument
146 #define ACPI_FREE(a) kfree(a) argument
/include/net/
Dact_api.h104 int type, struct tc_action *a);
106 extern int tcf_hash_search(struct tc_action *a, u32 index);
107 extern struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a,
110 struct tc_action *a, int size,
115 extern int tcf_register_action(struct tc_action_ops *a);
116 extern int tcf_unregister_action(struct tc_action_ops *a);
117 extern void tcf_action_destroy(struct tc_action *a, int bind);
118 extern int tcf_action_exec(struct sk_buff *skb, const struct tc_action *a, struct tcf_result *res);
121 extern int tcf_action_dump(struct sk_buff *skb, struct tc_action *a, int, int);
122 extern int tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int, int);
[all …]
/include/linux/amba/
Dbus.h78 #define AMBA_CONFIG_BITS(a) (((a) >> 24) & 0xff) argument
79 #define AMBA_REV_BITS(a) (((a) >> 20) & 0x0f) argument
80 #define AMBA_MANF_BITS(a) (((a) >> 12) & 0xff) argument
81 #define AMBA_PART_BITS(a) ((a) & 0xfff) argument
/include/video/
Dtgafb.h247 BT463_LOAD_ADDR(struct tga_par *par, u16 a) in BT463_LOAD_ADDR() argument
250 TGA_WRITE_REG(par, (BT463_ADDR_LO<<10) | (a & 0xff), TGA_RAMDAC_REG); in BT463_LOAD_ADDR()
252 TGA_WRITE_REG(par, (BT463_ADDR_HI<<10) | (a >> 8), TGA_RAMDAC_REG); in BT463_LOAD_ADDR()
256 BT463_WRITE(struct tga_par *par, u32 m, u16 a, u8 v) in BT463_WRITE() argument
258 BT463_LOAD_ADDR(par, a); in BT463_WRITE()
264 BT459_LOAD_ADDR(struct tga_par *par, u16 a) in BT459_LOAD_ADDR() argument
267 TGA_WRITE_REG(par, a & 0xff, TGA_RAMDAC_REG); in BT459_LOAD_ADDR()
269 TGA_WRITE_REG(par, a >> 8, TGA_RAMDAC_REG); in BT459_LOAD_ADDR()
273 BT459_WRITE(struct tga_par *par, u32 m, u16 a, u8 v) in BT459_WRITE() argument
275 BT459_LOAD_ADDR(par, a); in BT459_WRITE()
Dudlfb.h94 #define DL_ALIGN_UP(x, a) ALIGN(x, a) argument
95 #define DL_ALIGN_DOWN(x, a) ALIGN(x-(a-1), a) argument
/include/linux/usb/
Dwusb.h312 const struct aes_ccm_label *a,
317 const struct aes_ccm_label *a, in wusb_prf_64() argument
320 return wusb_prf(out, out_size, key, n, a, b, blen, 64); in wusb_prf_64()
325 const struct aes_ccm_label *a, in wusb_prf_128() argument
328 return wusb_prf(out, out_size, key, n, a, b, blen, 128); in wusb_prf_128()
333 const struct aes_ccm_label *a, in wusb_prf_256() argument
336 return wusb_prf(out, out_size, key, n, a, b, blen, 256); in wusb_prf_256()
345 const struct aes_ccm_label a = { .data = "Pair-wise keys" }; in wusb_key_derive() local
346 return wusb_prf_256(keydvt_out, sizeof(*keydvt_out), key, n, &a, in wusb_key_derive()
370 const struct aes_ccm_label a = { .data = "out-of-bandMIC" }; in wusb_oob_mic() local
[all …]
/include/linux/pinctrl/
Dpinctrl.h40 #define PINCTRL_PIN(a, b) { .number = a, .name = b } argument
41 #define PINCTRL_PIN_ANON(a) { .number = a } argument

12345