Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 62) sorted by relevance

123

/lib/
Dmemneq.c68 __crypto_memneq_generic(const void *a, const void *b, size_t size) in __crypto_memneq_generic()
92 static inline unsigned long __crypto_memneq_16(const void *a, const void *b) in __crypto_memneq_16()
156 noinline unsigned long __crypto_memneq(const void *a, const void *b, in __crypto_memneq()
Dlist-test.c48 struct list_head a, b; in list_test_list_add() local
62 struct list_head a, b; in list_test_list_add_tail() local
76 struct list_head a, b; in list_test_list_del() local
92 struct list_head a_old, a_new, b; in list_test_list_replace() local
108 struct list_head a_old, a_new, b; in list_test_list_replace_init() local
127 struct list_head a, b; in list_test_list_swap() local
149 struct list_head a, b; in list_test_list_del_init() local
166 struct list_head a, b; in list_test_list_move() local
185 struct list_head a, b; in list_test_list_move_tail() local
204 struct list_head a, b, c, d, x, y; in list_test_list_bulk_move_tail() local
[all …]
Dsort.c58 static void swap_words_32(void *a, void *b, size_t n) in swap_words_32()
83 static void swap_words_64(void *a, void *b, size_t n) in swap_words_64()
111 static void swap_bytes(void *a, void *b, size_t n) in swap_bytes()
133 static void do_swap(void *a, void *b, size_t size, swap_func_t swap_func) in do_swap()
147 static int do_cmp(const void *a, const void *b, cmp_r_func_t cmp, const void *priv) in do_cmp()
228 size_t b, c, d; in sort_r() local
Dlist_sort.c17 struct list_head *a, struct list_head *b) in merge()
53 struct list_head *a, struct list_head *b) in merge_final()
223 struct list_head *a = *tail, *b = a->prev; in list_sort() local
Ddecompress_unxz.c177 static bool memeq(const void *a, const void *b, size_t size) in memeq()
194 uint8_t *b = buf; in memzero() local
257 struct xz_buf b; in unxz() local
Dextable.c27 static void swap_ex(void *a, void *b, int size) in swap_ex()
51 static int cmp_ex_sort(const void *a, const void *b) in cmp_ex_sort()
Ducmpdi2.c8 word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b) in __ucmpdi2()
Dcmpdi2.c9 word_type notrace __cmpdi2(long long a, long long b) in __cmpdi2()
Dmemcat_p.c10 void **__memcat_p(void **a, void **b) in __memcat_p()
Dashrdi3.c9 long long notrace __ashrdi3(long long u, word_type b) in __ashrdi3()
Dlshrdi3.c9 long long notrace __lshrdi3(long long u, word_type b) in __lshrdi3()
Dashldi3.c9 long long notrace __ashldi3(long long u, word_type b) in __ashldi3()
Dinflate.c141 uch b; /* number of bits in this code or subcode */ member
323 unsigned *b, /* code lengths in bits (all assumed <= BMAX) */ in huft_build()
603 register ulg b; /* bit buffer */ in inflate_codes() local
709 register ulg b; /* bit buffer */ in inflate_stored() local
845 register ulg b; /* bit buffer */ in inflate_dynamic() local
1040 register ulg b; /* bit buffer */ in inflate_block() local
Dtest_sort.c13 static int cmpint(const void *a, const void *b) in cmpint()
/lib/math/
Dlcm.c8 unsigned long lcm(unsigned long a, unsigned long b) in lcm()
17 unsigned long lcm_not_zero(unsigned long a, unsigned long b) in lcm_not_zero()
Dgcd.c23 unsigned long gcd(unsigned long a, unsigned long b) in gcd()
50 unsigned long gcd(unsigned long a, unsigned long b) in gcd()
Dint_sqrt.c22 unsigned long b, m, y = 0; in int_sqrt() local
51 u64 b, m, y = 0; in int_sqrt64() local
Ddiv64.c34 uint64_t b = base; in __div64_32() local
197 u64 mul_u64_u64_div_u64(u64 a, u64 b, u64 c) in mul_u64_u64_div_u64()
/lib/842/
D842_compress.c109 #define get_input_data(p, o, b) \ argument
112 #define init_hashtable_nodes(p, b) do { \ argument
122 #define find_index(p, b, n) ({ \ argument
134 #define check_index(p, b, n) \ argument
139 #define replace_hash(p, b, i, d) do { \ argument
169 int b = p->bit, bits = b + n, s = round_up(bits, 8) - bits; in add_bits() local
224 int ret, i, b = 0; in add_template() local
327 static int add_short_data_template(struct sw842_param *p, u8 b) in add_short_data_template()
383 int i, match, b = 0; in check_template() local
/lib/raid6/
Dmktables.c21 static uint8_t gfmul(uint8_t a, uint8_t b) in gfmul()
35 static uint8_t gfpow(uint8_t a, int b) in gfpow()
/lib/xz/
Dxz_dec_stream.c157 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp()
218 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block()
281 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update()
296 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index()
346 static enum xz_ret crc32_validate(struct xz_dec *s, struct xz_buf *b) in crc32_validate()
370 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip()
549 static enum xz_ret dec_main(struct xz_dec *s, struct xz_buf *b) in dec_main()
750 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b) in xz_dec_run()
Dxz_dec_bcj.c83 static inline int bcj_x86_test_msbyte(uint8_t b) in bcj_x86_test_msbyte()
101 uint8_t b; in bcj_x86() local
399 static void bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) in bcj_flush()
419 struct xz_buf *b) in xz_dec_bcj_run()
/lib/mpi/
Dmpiutil.c198 MPI b; in mpi_copy() local
220 MPI b; in mpi_alloc_like() local
300 void mpi_swap_cond(MPI a, MPI b, unsigned long swap) in mpi_swap_cond()
/lib/zlib_inflate/
Dinffast.c15 unsigned char b[2]; member
23 unsigned char *b = (unsigned char *)p; in get_unaligned16() local
/lib/crypto/
Dcurve25519-hacl64.c19 static __always_inline u64 u64_eq_mask(u64 a, u64 b) in u64_eq_mask()
29 static __always_inline u64 u64_gte_mask(u64 a, u64 b) in u64_gte_mask()
43 static __always_inline void modulo_carry_top(u64 *b) in modulo_carry_top()
309 u64 *b; in crecip_crecip() local
342 static __always_inline void fsum(u64 *a, u64 *b) in fsum()
351 static __always_inline void fdifference(u64 *a, u64 *b) in fdifference()
397 static __always_inline void fscalar(u64 *output, u64 *b, u64 s) in fscalar()
434 static __always_inline void fmul(u64 *output, u64 *a, u64 *b) in fmul()
444 static __always_inline void point_swap_conditional_step(u64 *a, u64 *b, in point_swap_conditional_step()
457 static __always_inline void point_swap_conditional5(u64 *a, u64 *b, u64 swap1) in point_swap_conditional5()
[all …]

123