Home
last modified time | relevance | path

Searched refs:y (Results 1 – 22 of 22) sorted by relevance

/lib/mpi/
Dgeneric_mpih-sub1.c36 mpi_limb_t x, y, cy; in mpihelp_sub_n() local
50 y = s2_ptr[j]; in mpihelp_sub_n()
52 y += cy; /* add previous carry to subtrahend */ in mpihelp_sub_n()
53 cy = y < cy; /* get out carry from that addition */ in mpihelp_sub_n()
54 y = x - y; /* main subtract */ in mpihelp_sub_n()
55 cy += y > x; /* get out carry from the subtract, combine */ in mpihelp_sub_n()
56 res_ptr[j] = y; in mpihelp_sub_n()
Dgeneric_mpih-add1.c37 mpi_limb_t x, y, cy; in mpihelp_add_n() local
51 y = s2_ptr[j]; in mpihelp_add_n()
53 y += cy; /* add previous carry to one addend */ in mpihelp_add_n()
54 cy = y < cy; /* get out carry from that addition */ in mpihelp_add_n()
55 y += x; /* add other addend */ in mpihelp_add_n()
56 cy += y < x; /* get out carry from that add, combine */ in mpihelp_add_n()
57 res_ptr[j] = y; in mpihelp_add_n()
/lib/
Dextable.c33 struct exception_table_entry *x = a, *y = b, tmp; in swap_ex() local
37 x->insn = y->insn + delta; in swap_ex()
38 y->insn = tmp.insn - delta; in swap_ex()
41 swap_ex_entry_fixup(x, y, tmp, delta); in swap_ex()
43 x->fixup = y->fixup + delta; in swap_ex()
44 y->fixup = tmp.fixup - delta; in swap_ex()
57 const struct exception_table_entry *x = a, *y = b; in cmp_ex_sort() local
60 if (ex_to_insn(x) > ex_to_insn(y)) in cmp_ex_sort()
62 if (ex_to_insn(x) < ex_to_insn(y)) in cmp_ex_sort()
Dint_sqrt.c21 unsigned long b, m, y = 0; in int_sqrt() local
28 b = y + m; in int_sqrt()
29 y >>= 1; in int_sqrt()
33 y += m; in int_sqrt()
38 return y; in int_sqrt()
Dprime_numbers.c70 unsigned long y = int_sqrt(x); in slow_is_prime_number() local
72 while (y > 1) { in slow_is_prime_number()
73 if ((x % y) == 0) in slow_is_prime_number()
75 y--; in slow_is_prime_number()
78 return y == 1; in slow_is_prime_number()
112 unsigned long sz, y; in expand_to_next_prime() local
145 for (y = 2UL; y < sz; y = find_next_bit(new->primes, sz, y + 1)) in expand_to_next_prime()
146 new->last = clear_multiples(y, new->primes, p->sz, sz); in expand_to_next_prime()
DKconfig.ubsan25 default y
29 UBSAN_SANITIZE := y for the files/directories you want to check for UB.
36 default y if !HAVE_EFFICIENT_UNALIGNED_ACCESS
45 default y if !ARCH_WANTS_UBSAN_NO_NULL
Dfind_bit.c137 static inline unsigned long ext2_swab(const unsigned long y) in ext2_swab() argument
140 return (unsigned long) __swab64((u64) y); in ext2_swab()
142 return (unsigned long) __swab32((u32) y); in ext2_swab()
Dts_bm.c102 int x = i+g-1, y = j+g-1, ret = 0; in subpattern() local
104 while(pattern[x--] == pattern[y--]) { in subpattern()
105 if (y < 0) { in subpattern()
Dinflate.c350 int y; /* number of dummy codes added */ in huft_build() local
411 for (y = 1 << j; j < i; j++, y <<= 1) in huft_build()
412 if ((y -= c[j]) < 0) { in huft_build()
416 if ((y -= c[i]) < 0) { in huft_build()
420 c[i] += y; in huft_build()
558 ret = y != 0 && g != 1; in huft_build()
Dcrc32.c213 static u32 __attribute_const__ gf2_multiply(u32 x, u32 y, u32 modulus) argument
215 u32 product = x & 1 ? y : 0;
221 product ^= x & 1 ? y : 0;
Ddecompress_unxz.c180 const uint8_t *y = b; in memeq() local
184 if (x[i] != y[i]) in memeq()
DKconfig97 default y
201 default y
210 default y
404 default y
409 default y
414 default y
DMakefile80 ifeq ($(CONFIG_DEBUG_KOBJECT),y)
103 ifneq ($(CONFIG_HAVE_DEC_LOCK),y)
Dbch.c1117 unsigned int sum, x, y, remaining, ak = 0, xi[m]; in build_deg2_base() local
1134 y = gf_sqr(bch, x)^x; in build_deg2_base()
1136 r = a_log(bch, y); in build_deg2_base()
1137 if (y && (r < m) && !xi[r]) { in build_deg2_base()
1144 y ^= ak; in build_deg2_base()
DKconfig.kgdb26 default y
DKconfig.debug203 default y
211 default y
250 default y if X86
341 default y
363 default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
427 default y
763 default y if KCOV
767 say y here. If you are doing more targeted fuzzing (like e.g.
969 default y
1020 default y
[all …]
Dlocking-selftest.c255 #define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x) argument
/lib/raid6/
Ds390vx.uc29 * vector register y left by 1 bit and stores the result in
32 static inline void SHLBYTE(int x, int y)
34 asm volatile ("VAB %0,%1,%1" : : "i" (x), "i" (y));
38 * For each of the 16 bytes in the vector register y the MASK()
43 static inline void MASK(int x, int y)
45 asm volatile ("VESRAVB %0,%1,24" : : "i" (x), "i" (y));
48 static inline void AND(int x, int y, int z)
50 asm volatile ("VN %0,%1,%2" : : "i" (x), "i" (y), "i" (z));
53 static inline void XOR(int x, int y, int z)
55 asm volatile ("VX %0,%1,%2" : : "i" (x), "i" (y), "i" (z));
[all …]
Dalgos.c128 #define time_before(x, y) ((x) < (y)) argument
DMakefile19 ifeq ($(CONFIG_ALTIVEC),y)
40 ifeq ($(CONFIG_KERNEL_MODE_NEON),y)
/lib/xz/
DKconfig13 default y
18 default y
23 default y
28 default y
33 default y
38 default y
/lib/fonts/
DKconfig26 default y if !SPARC && !FONTS
39 default y if !SPARC && !FONTS
49 default y if !SPARC && !FONTS && MAC
65 default y if !SPARC && !FONTS && AMIGA
73 default y if !SPARC && !FONTS && ARM && ARCH_ACORN
113 def_bool y