Searched refs:goal (Results 1 - 9 of 9) sorted by relevance

/arch/tile/lib/
H A Dmemchr_32.c25 uint32_t goal, before_mask, v, bits; local
38 goal = 0x01010101 * (uint8_t) c;
41 * will not match goal.
47 v = (*p | before_mask) ^ (goal & before_mask);
55 while ((bits = __insn_seqb(v, goal)) == 0) {
H A Dmemchr_64.c26 uint64_t goal, before_mask, v, bits; local
39 goal = copy_byte(c);
42 * will not match goal.
45 v = (*p | before_mask) ^ (goal & before_mask);
53 while ((bits = __insn_v1cmpeq(v, goal)) == 0) {
H A Dstrchr_32.c28 const uint32_t goal = 0x01010101 * (uint8_t) c; local
31 * match neither zero nor goal (we make sure the high bit of each
32 * byte is 1, and the low 7 bits are all the opposite of the goal
39 uint32_t v = (*p | before_mask) ^ (goal & __insn_shrib(before_mask, 1));
46 /* Look for the goal byte. */
47 goal_matches = __insn_seqb(v, goal);
H A Dstrchr_64.c29 const uint64_t goal = copy_byte(c); local
32 * match neither zero nor goal (we make sure the high bit of each
33 * byte is 1, and the low 7 bits are all the opposite of the goal
37 uint64_t v = (*p | before_mask) ^ (goal & __insn_v1shrui(before_mask, 1));
44 /* Look for the goal byte. */
45 goal_matches = __insn_v1cmpeq(v, goal);
/arch/x86/kernel/
H A Dsetup_percpu.c101 const unsigned long goal = __pa(MAX_DMA_ADDRESS); local
107 ptr = __alloc_bootmem_nopanic(size, align, goal);
114 size, align, goal);
120 return __alloc_bootmem_nopanic(size, align, goal);
/arch/tile/kernel/
H A Dsetup.c617 unsigned long goal)
620 PAGE_SIZE, goal);
622 BUG_ON(goal && PFN_PHYS(pfn) != goal);
787 unsigned long goal = 0; local
791 goal = PFN_PHYS(lowmem_end) - node_percpu[i];
795 goal);
615 alloc_bootmem_pfn(int nid, unsigned long size, unsigned long goal) argument
/arch/sparc/kernel/
H A Dsmp_64.c1432 const unsigned long goal = __pa(MAX_DMA_ADDRESS); local
1438 ptr = __alloc_bootmem(size, align, goal);
1445 size, align, goal);
1451 return __alloc_bootmem(size, align, goal);
/arch/m68k/ifpsp060/src/
H A Dpfpsp.S3088 # In a system where the FP Operr exception is enabled, the goal #
3278 # In a system where the FP SNAN exception is enabled, the goal #
3579 # In a system where the FP Inexact exception is enabled, the goal #
3758 # In a system where the DZ exception is enabled, the goal is to #
H A Dfpsp.S3089 # In a system where the FP Operr exception is enabled, the goal #
3279 # In a system where the FP SNAN exception is enabled, the goal #
3580 # In a system where the FP Inexact exception is enabled, the goal #
3759 # In a system where the DZ exception is enabled, the goal is to #

Completed in 939 milliseconds