Home
last modified time | relevance | path

Searched refs:tmp1 (Results 1 – 113 of 113) sorted by relevance

/linux-4.4.14/arch/sparc/include/asm/
Dhead_64.h34 #define BRANCH_IF_SUN4V(tmp1,label) \ argument
35 sethi %hi(is_sun4v), %tmp1; \
36 lduw [%tmp1 + %lo(is_sun4v)], %tmp1; \
37 brnz,pn %tmp1, label; \
40 #define BRANCH_IF_CHEETAH_BASE(tmp1,tmp2,label) \ argument
41 rdpr %ver, %tmp1; \
43 srlx %tmp1, 32, %tmp1; \
45 cmp %tmp1, %tmp2; \
49 #define BRANCH_IF_JALAPENO(tmp1,tmp2,label) \ argument
50 rdpr %ver, %tmp1; \
[all …]
Dspinlock_64.h73 unsigned long tmp1, tmp2; in arch_spin_lock_flags() local
88 : "=&r" (tmp1), "=&r" (tmp2) in arch_spin_lock_flags()
97 unsigned long tmp1, tmp2; in arch_read_lock() local
113 : "=&r" (tmp1), "=&r" (tmp2) in arch_read_lock()
120 int tmp1, tmp2; in arch_read_trylock() local
132 : "=&r" (tmp1), "=&r" (tmp2) in arch_read_trylock()
136 return tmp1; in arch_read_trylock()
141 unsigned long tmp1, tmp2; in arch_read_unlock() local
150 : "=&r" (tmp1), "=&r" (tmp2) in arch_read_unlock()
157 unsigned long mask, tmp1, tmp2; in arch_write_lock() local
[all …]
Dpgtsrmmu.h126 #define WINDOW_FLUSH(tmp1, tmp2) \ argument
127 mov 0, tmp1; \
130 add tmp1, 1, tmp1; \
133 99: subcc tmp1, 1, tmp1; \
Dcmpxchg_64.h11 unsigned long tmp1, tmp2; in xchg32() local
20 : "=&r" (val), "=&r" (tmp1), "=&r" (tmp2) in xchg32()
28 unsigned long tmp1, tmp2; in xchg64() local
37 : "=&r" (val), "=&r" (tmp1), "=&r" (tmp2) in xchg64()
/linux-4.4.14/arch/arm/mach-tegra/
Dsleep.h92 .macro check_cpu_part_num part_num, tmp1, tmp2
93 mrc p15, 0, \tmp1, c0, c0, 0
94 ubfx \tmp1, \tmp1, #4, #12
96 cmp \tmp1, \tmp2
100 .macro exit_smp, tmp1, tmp2
101 mrc p15, 0, \tmp1, c1, c0, 1 @ ACTLR
102 bic \tmp1, \tmp1, #(1<<6) | (1<<0) @ clear ACTLR.SMP | ACTLR.FW
103 mcr p15, 0, \tmp1, c1, c0, 1 @ ACTLR
106 check_cpu_part_num 0xc09, \tmp1, \tmp2
107 mrceq p15, 0, \tmp1, c0, c0, 5
[all …]
/linux-4.4.14/arch/arm/mach-at91/
Dpm_suspend.S22 tmp1 .req r4 label
29 1: ldr tmp1, [pmc, #AT91_PMC_SR]
30 tst tmp1, #AT91_PMC_MCKRDY
38 1: ldr tmp1, [pmc, #AT91_PMC_SR]
39 tst tmp1, #AT91_PMC_MOSCS
47 1: ldr tmp1, [pmc, #AT91_PMC_SR]
48 tst tmp1, #AT91_PMC_LOCKA
58 mov tmp1, #AT91_PMC_PCK
59 str tmp1, [pmc, #AT91_PMC_SCDR]
65 mcr p15, 0, tmp1, c7, c0, 4
[all …]
/linux-4.4.14/arch/arm64/lib/
Dstrcmp.S57 tmp1 .req x7 label
64 eor tmp1, src1, src2
66 tst tmp1, #7
68 ands tmp1, src1, #7
80 sub tmp1, data1, zeroones
83 bic has_nul, tmp1, tmp2 /* Non-zero if NUL terminator. */
96 lsl tmp1, tmp1, #3 /* Bytes beyond alignment -> bits. */
98 neg tmp1, tmp1 /* Bits to alignment -64. */
102 CPU_BE( lsl tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
104 CPU_LE( lsr tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
[all …]
Dstrlen.S48 tmp1 .req x7 label
62 ands tmp1, srcin, #15
78 sub tmp1, data1, zeroones
82 bic has_nul1, tmp1, tmp2
100 CPU_BE( sub tmp1, data2, zeroones )
102 CPU_BE( bic has_nul2, tmp1, tmp2 )
111 cmp tmp1, #8
112 neg tmp1, tmp1
114 lsl tmp1, tmp1, #3 /* Bytes beyond alignment -> bits. */
117 CPU_BE( lsl tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
[all …]
Dstrncmp.S58 tmp1 .req x8 label
69 eor tmp1, src1, src2
71 tst tmp1, #7
73 ands tmp1, src1, #7
93 sub tmp1, data1, zeroones
97 bics has_nul, tmp1, tmp2 /* Non-zero if NUL terminator. */
133 neg tmp3, tmp1, lsl #3 /* 64 - bits(bytes beyond align). */
145 add limit, limit, tmp1
146 add tmp3, tmp3, tmp1
159 and tmp1, src1, #7
[all …]
Dmemcmp.S54 tmp1 .req x8 label
63 eor tmp1, src1, src2
64 tst tmp1, #7
66 ands tmp1, src1, #7
120 add tmp3, tmp3, tmp1
122 add limit, limit, tmp1/* Adjust the limit for the extra. */
124 lsl tmp1, tmp1, #3/* Bytes beyond alignment -> bits.*/
125 neg tmp1, tmp1/* Bits to alignment -64. */
128 CPU_BE( lsl tmp2, tmp2, tmp1 )/*Big-endian.Early bytes are at MSB*/
130 CPU_LE( lsr tmp2, tmp2, tmp1 )
[all …]
Dstrnlen.S50 tmp1 .req x8 label
66 ands tmp1, srcin, #15
86 sub tmp1, data1, zeroones
90 bic has_nul1, tmp1, tmp2
93 orr tmp1, has_nul1, has_nul2
94 ccmp tmp1, #0, #0, pl /* NZCV = 0000 */
97 cbz tmp1, .Lhit_limit /* No null in final Qword. */
118 CPU_BE( sub tmp1, data2, zeroones )
120 CPU_BE( bic has_nul2, tmp1, tmp2 )
147 add tmp3, tmp3, tmp1
[all …]
Dmemset.S43 tmp1 .req x3 label
105 ands tmp1, count, #0x30
162 mrs tmp1, dczid_el0
163 tbnz tmp1, #4, .Lnot_short
186 sub tmp1, count, tmp2
190 cmp tmp1, #64
191 ccmp tmp1, zva_len_x, #8, ge /* NZCV=0b1000 */
197 mov count, tmp1
Dmemmove.S43 tmp1 .req x3 label
65 add tmp1, src, count
66 cmp dstin, tmp1
95 ldr tmp1, [src, #-8]!
96 str tmp1, [dst, #-8]!
111 ands tmp1, count, #0x30
127 ldr tmp1, [src, #-8]!
128 str tmp1, [dst, #-8]!
Dcopy_template.S39 tmp1 .req x3 label
82 ldr1 tmp1, src, #8
83 str1 tmp1, dst, #8
97 ands tmp1, count, #0x30
123 ldr1 tmp1, src, #8
124 str1 tmp1, dst, #8
/linux-4.4.14/arch/s390/lib/
Duaccess.c24 unsigned long tmp1, tmp2; in copy_from_user_mvcos() local
26 tmp1 = -4096UL; in copy_from_user_mvcos()
55 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2) in copy_from_user_mvcos()
63 unsigned long tmp1, tmp2; in copy_from_user_mvcp() local
66 tmp1 = -256UL; in copy_from_user_mvcp()
100 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2) in copy_from_user_mvcp()
117 unsigned long tmp1, tmp2; in copy_to_user_mvcos() local
119 tmp1 = -4096UL; in copy_to_user_mvcos()
138 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2) in copy_to_user_mvcos()
146 unsigned long tmp1, tmp2; in copy_to_user_mvcs() local
[all …]
/linux-4.4.14/arch/m32r/include/asm/
Dspinlock.h43 unsigned long tmp1, tmp2; in arch_spin_trylock() local
62 : "=&r" (oldval), "=&r" (tmp1), "=&r" (tmp2) in arch_spin_trylock()
75 unsigned long tmp0, tmp1; in arch_spin_lock() local
106 : "=&r" (tmp0), "=&r" (tmp1) in arch_spin_lock()
154 unsigned long tmp0, tmp1; in arch_read_lock() local
194 : "=&r" (tmp0), "=&r" (tmp1) in arch_read_lock()
205 unsigned long tmp0, tmp1, tmp2; in arch_write_lock() local
247 : "=&r" (tmp0), "=&r" (tmp1), "=&r" (tmp2) in arch_write_lock()
258 unsigned long tmp0, tmp1; in arch_read_unlock() local
269 : "=&r" (tmp0), "=&r" (tmp1) in arch_read_unlock()
[all …]
/linux-4.4.14/arch/tile/include/asm/
Dirqflags.h221 #define IRQ_DISABLE(tmp0, tmp1) \ argument
233 #define IRQ_ENABLE_LOAD(tmp0, tmp1) \ argument
236 #define IRQ_ENABLE_APPLY(tmp0, tmp1) \ argument
262 #define IRQ_DISABLE(tmp0, tmp1) \ argument
265 moveli tmp1, lo16(LINUX_MASKABLE_INTERRUPTS_HI) \
269 auli tmp1, tmp1, ha16(LINUX_MASKABLE_INTERRUPTS_HI) \
271 mtspr SPR_INTERRUPT_MASK_SET_K_1, tmp1
280 #define IRQ_ENABLE_LOAD(tmp0, tmp1) \ argument
284 addi tmp1, tmp0, 4 \
286 lw tmp1, tmp1
[all …]
/linux-4.4.14/arch/tile/lib/
Dmemcpy_64.c99 op_t tmp0 = 0, tmp1 = 0, tmp2, tmp3; in memcpy() local
117 tmp1 = LD8(src8++); in memcpy()
133 tmp1 = LD8(src8++); in memcpy()
140 tmp0 = __insn_dblalign(tmp0, tmp1, srci); in memcpy()
144 tmp1 = __insn_dblalign(tmp1, tmp2, srci); in memcpy()
145 ST8(dst8++, tmp1); in memcpy()
151 tmp1 = LD8(src8++); in memcpy()
158 tmp0 = __insn_dblalign(tmp0, tmp1, srci); in memcpy()
183 tmp1 = LD8(src8++); in memcpy()
192 tmp0 = __insn_dblalign(tmp0, tmp1, srci); in memcpy()
[all …]
/linux-4.4.14/lib/
Drbtree.c231 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
253 tmp1 = sibling->rb_left; in ____rb_erase_color()
254 WRITE_ONCE(parent->rb_right, tmp1); in ____rb_erase_color()
256 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
260 sibling = tmp1; in ____rb_erase_color()
262 tmp1 = sibling->rb_right; in ____rb_erase_color()
263 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
305 tmp1 = tmp2->rb_right; in ____rb_erase_color()
306 WRITE_ONCE(sibling->rb_left, tmp1); in ____rb_erase_color()
309 if (tmp1) in ____rb_erase_color()
[all …]
/linux-4.4.14/arch/hexagon/mm/
Dstrnlen_user.S25 #define tmp1 r3 macro
60 tmp1 = memb(start++#1); define
63 P0 = cmp.eq(tmp1,#0);
87 tmp1 = P0; define
91 tmp1 = ct0(tmp1); define
96 P0 = cmp.eq(tmp1,#32);
98 if (!P0.new) start = add(obo,tmp1);
108 P0 = cmp.gt(tmp1,mod8);
110 start = add(obo,tmp1);
/linux-4.4.14/arch/ia64/lib/
Ddo_csum.S104 #define tmp1 r26 macro
135 add tmp1=buf,len // last byte's address
148 adds tmp2=-1,tmp1 // last-1
149 and lastoff=7,tmp1 // how many bytes off for last element
151 sub tmp1=8,lastoff // complement to lastoff
160 and tmp1=7, tmp1 // make sure that if tmp1==8 -> tmp1=0
164 shl tmp1=tmp1,3 // number of bits
169 shr.u tmask=tmask,tmp1 // build tail mask, mask off ]8,lastoff]
262 zxt4 tmp1=result1[0]
265 add result1[0]=tmp1,tmp2
[all …]
/linux-4.4.14/tools/lib/
Drbtree.c204 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
226 parent->rb_right = tmp1 = sibling->rb_left; in ____rb_erase_color()
228 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
232 sibling = tmp1; in ____rb_erase_color()
234 tmp1 = sibling->rb_right; in ____rb_erase_color()
235 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
277 sibling->rb_left = tmp1 = tmp2->rb_right; in ____rb_erase_color()
280 if (tmp1) in ____rb_erase_color()
281 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
284 tmp1 = sibling; in ____rb_erase_color()
[all …]
/linux-4.4.14/arch/arm/include/asm/
Dtls.h9 .macro switch_tls_none, base, tp, tpuser, tmp1, tmp2
12 .macro switch_tls_v6k, base, tp, tpuser, tmp1, tmp2
19 .macro switch_tls_v6, base, tp, tpuser, tmp1, tmp2
20 ldr \tmp1, =elf_hwcap
21 ldr \tmp1, [\tmp1, #0]
23 tst \tmp1, #HWCAP_TLS @ hardware TLS available?
31 .macro switch_tls_software, base, tp, tpuser, tmp1, tmp2
32 mov \tmp1, #0xffff0fff
33 str \tp, [\tmp1, #-15] @ set TLS value at 0xffff0ff0
Dchecksum.h62 unsigned int tmp1; in ip_fast_csum() local
80 : "=r" (sum), "=r" (iph), "=r" (ihl), "=r" (tmp1) in ip_fast_csum()
/linux-4.4.14/arch/arc/include/asm/
Duaccess.h170 unsigned long tmp1, tmp2, tmp3, tmp4; in __arc_copy_from_user() local
245 "=r"(tmp1), "=r"(tmp2), "=r"(tmp3), "=r"(tmp4) in __arc_copy_from_user()
269 "=r"(tmp1), "=r"(tmp2) in __arc_copy_from_user()
289 : "+r" (res), "+r"(to), "+r"(from), "=r"(tmp1) in __arc_copy_from_user()
309 : "+r" (res), "+r"(to), "+r"(from), "=r"(tmp1) in __arc_copy_from_user()
327 : "+r" (res), "+r"(to), "+r"(from), "=r"(tmp1) in __arc_copy_from_user()
384 "=r"(tmp1), "=r"(tmp2), "=r"(tmp3), "=r"(tmp4) in __arc_copy_from_user()
400 unsigned long tmp1, tmp2, tmp3, tmp4; in __arc_copy_to_user() local
470 "=r"(tmp1), "=r"(tmp2), "=r"(tmp3), "=r"(tmp4) in __arc_copy_to_user()
494 "=r"(tmp1), "=r"(tmp2) in __arc_copy_to_user()
[all …]
/linux-4.4.14/arch/m68k/lib/
Dchecksum.c44 unsigned long tmp1, tmp2; in csum_partial() local
122 "=&d" (tmp1), "=&d" (tmp2) in csum_partial()
144 unsigned long tmp1, tmp2; in csum_partial_copy_from_user() local
314 "=&d" (tmp1), "=d" (tmp2) in csum_partial_copy_from_user()
333 unsigned long tmp1, tmp2; in csum_partial_copy_nocheck() local
420 "=&d" (tmp1), "=&d" (tmp2) in csum_partial_copy_nocheck()
/linux-4.4.14/arch/arm/mach-iop32x/include/mach/
Dentry-macro.S28 .macro arch_ret_to_user, tmp1, tmp2
29 mrc p15, 0, \tmp1, c15, c1, 0
30 ands \tmp2, \tmp1, #(1 << 6)
31 bicne \tmp1, \tmp1, #(1 << 6)
32 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
/linux-4.4.14/arch/alpha/lib/
Ddivide.S56 #define tmp1 $3 macro
108 stq tmp1,24($30)
140 subq modulus,divisor,tmp1
143 cmovne compare,tmp1,modulus
149 ldq tmp1,24($30)
181 stq tmp1,24($30)
188 subq $31,$27,tmp1
191 cmovlt $28,tmp1,$27
192 ldq tmp1,24($30)
Dev6-divide.S66 #define tmp1 $3 macro
120 stq tmp1,24($30) # L :
171 subq modulus,divisor,tmp1 # E :
180 cmovne compare,tmp1,modulus # E : Latency 2, extra map slot
185 cmovne compare,tmp1,modulus # E : Latency 2, extra map slot
196 ldq tmp1,24($30) # L :
240 stq tmp1,24($30) # L :
248 subq $31,$27,tmp1 # E : U U L L
252 cmovlt $28,tmp1,$27 # E : Latency 2, extra map slot
255 ldq tmp1,24($30) # L :
/linux-4.4.14/arch/arm/mach-iop13xx/include/mach/
Dentry-macro.S37 .macro arch_ret_to_user, tmp1, tmp2
38 mrc p15, 0, \tmp1, c15, c1, 0
39 ands \tmp2, \tmp1, #(1 << 6)
40 bicne \tmp1, \tmp1, #(1 << 6)
41 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
/linux-4.4.14/arch/arm/mach-iop33x/include/mach/
Dentry-macro.S29 .macro arch_ret_to_user, tmp1, tmp2
30 mrc p15, 0, \tmp1, c15, c1, 0
31 ands \tmp2, \tmp1, #(1 << 6)
32 bicne \tmp1, \tmp1, #(1 << 6)
33 mcrne p15, 0, \tmp1, c15, c1, 0 @ Disable cp6 access
/linux-4.4.14/arch/alpha/kernel/
Dtraps.c463 long error, tmp1, tmp2, tmp3, tmp4; in do_entUna() local
490 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2) in do_entUna()
494 una_reg(reg) = tmp1|tmp2; in do_entUna()
510 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2) in do_entUna()
514 una_reg(reg) = (int)(tmp1|tmp2); in do_entUna()
530 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2) in do_entUna()
534 una_reg(reg) = tmp1|tmp2; in do_entUna()
563 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2), in do_entUna()
593 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2), in do_entUna()
623 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2), in do_entUna()
[all …]
/linux-4.4.14/arch/x86/crypto/
Dglue_helper-asm-avx2.S52 #define add2_le128(x, minus_one, minus_two, tmp1, tmp2) \ argument
53 vpcmpeqq minus_one, x, tmp1; \
56 vpor tmp2, tmp1, tmp1; \
57 vpslldq $8, tmp1, tmp1; \
58 vpsubq tmp1, x, x;
111 #define gf128mul_x2_ble(iv, mask1, mask2, tmp0, tmp1) \ argument
113 vpaddq iv, iv, tmp1; \
116 vpsrad $31, tmp1, tmp1; \
118 vpshufd $0x13, tmp1, tmp1; \
120 vpand mask1, tmp1, tmp1; \
[all …]
Dcamellia-aesni-avx2-asm_64.S1058 #define add2_le128(x, minus_one, minus_two, tmp1, tmp2) \ argument
1059 vpcmpeqq minus_one, x, tmp1; \
1062 vpor tmp2, tmp1, tmp1; \
1063 vpslldq $8, tmp1, tmp1; \
1064 vpsubq tmp1, x, x;
1197 #define gf128mul_x2_ble(iv, mask1, mask2, tmp0, tmp1) \ argument
1199 vpaddq iv, iv, tmp1; \
1202 vpsrad $31, tmp1, tmp1; \
1204 vpshufd $0x13, tmp1, tmp1; \
1206 vpand mask1, tmp1, tmp1; \
[all …]
Dtwofish-x86_64-asm_64-3way.S88 #define do16bit_ror(rot, op1, op2, T0, T1, tmp1, tmp2, ab, dst) \ argument
90 movzbl ab ## bh, tmp1 ## d; \
93 op2##l T1(CTX, tmp1, 4), dst ## d;
Dcamellia-x86_64-asm_64.S94 #define xor2ror16(T0, T1, tmp1, tmp2, ab, dst) \ argument
96 movzbl ab ## bh, tmp1 ## d; \
99 xorq T1(, tmp1, 8), dst;
/linux-4.4.14/scripts/
Dextract-ikconfig22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null
25 cat $tmp1
51 tmp1=/tmp/ikconfig$$.1
53 trap "rm -f $tmp1 $tmp2" 0
/linux-4.4.14/drivers/misc/echo/
Decho.c352 int tmp1; in oslec_update() local
400 tmp1 = ec->rx_1 >> 15; in oslec_update()
401 if (tmp1 > 16383) in oslec_update()
402 tmp1 = 16383; in oslec_update()
403 if (tmp1 < -16383) in oslec_update()
404 tmp1 = -16383; in oslec_update()
405 rx = tmp1; in oslec_update()
642 int tmp1; in oslec_hpf_tx() local
658 tmp1 = ec->tx_1 >> 15; in oslec_hpf_tx()
659 if (tmp1 > 32767) in oslec_hpf_tx()
[all …]
/linux-4.4.14/arch/mips/mm/
Dsc-ip22.c88 unsigned long addr, tmp1, tmp2; in indy_sc_enable() local
114 : "=r" (tmp1), "=r" (tmp2), "=r" (addr)); in indy_sc_enable()
119 unsigned long tmp1, tmp2, tmp3; in indy_sc_disable() local
144 : "=r" (tmp1), "=r" (tmp2), "=r" (tmp3)); in indy_sc_disable()
/linux-4.4.14/arch/arm/kernel/
Ddebug.S28 .macro addruart_current, rx, tmp1, tmp2
29 addruart \tmp1, \tmp2, \rx
32 moveq \rx, \tmp1
37 .macro addruart_current, rx, tmp1, tmp2
38 addruart \rx, \tmp1, \tmp2
Dentry-common.S19 .macro arch_ret_to_user, tmp1, tmp2
/linux-4.4.14/drivers/ide/
Daec62xx.c91 u8 tmp0 = 0, tmp1 = 0, tmp2 = 0; in aec6210_set_mode() local
102 tmp1 = 0x00; in aec6210_set_mode()
105 tmp1 = ((0x00 << (2*drive->dn)) | (ultra & ~(3 << (2*drive->dn)))); in aec6210_set_mode()
107 tmp2 = ((ultra_conf << (2*drive->dn)) | (tmp1 & ~(3 << (2*drive->dn)))); in aec6210_set_mode()
118 u8 tmp1 = 0, tmp2 = 0; in aec6260_set_mode() local
130 tmp1 = ((0x00 << (4*unit)) | (ultra & ~(7 << (4*unit)))); in aec6260_set_mode()
132 tmp2 = ((ultra_conf << (4*unit)) | (tmp1 & ~(7 << (4*unit)))); in aec6260_set_mode()
/linux-4.4.14/drivers/cpufreq/
Dgx-suspmod.c338 u8 tmp1, tmp2; in cpufreq_gx_verify() local
353 tmp_freq = gx_validate_speed(policy->min, &tmp1, &tmp2); in cpufreq_gx_verify()
359 tmp_freq = gx_validate_speed(policy->max, &tmp1, &tmp2); in cpufreq_gx_verify()
379 u8 tmp1, tmp2; in cpufreq_gx_target() local
387 tmp_freq = gx_validate_speed(target_freq, &tmp1, &tmp2); in cpufreq_gx_target()
390 tmp_freq = gx_validate_speed(tmp_freq, &tmp1, &tmp2); in cpufreq_gx_target()
394 tmp_freq = gx_validate_speed(tmp_freq, &tmp1, &tmp2); in cpufreq_gx_target()
Ds5pv210-cpufreq.c200 unsigned long tmp, tmp1; in s5pv210_set_refresh() local
217 tmp1 = s5pv210_dram_conf[ch].refresh; in s5pv210_set_refresh()
219 tmp1 /= tmp; in s5pv210_set_refresh()
221 __raw_writel(tmp1, reg); in s5pv210_set_refresh()
/linux-4.4.14/arch/arm/mach-davinci/
Dmux.c67 unsigned tmp1, tmp2; in davinci_cfg_reg() local
73 tmp1 = reg_orig & mask; in davinci_cfg_reg()
79 if (tmp1 != tmp2) in davinci_cfg_reg()
/linux-4.4.14/arch/arm64/kernel/
Dhead.S257 .macro create_table_entry, tbl, virt, shift, ptrs, tmp1, tmp2
258 lsr \tmp1, \virt, #\shift
259 and \tmp1, \tmp1, #\ptrs - 1 // table index
262 str \tmp2, [\tbl, \tmp1, lsl #3]
273 .macro create_pgd_entry, tbl, virt, tmp1, tmp2
274 create_table_entry \tbl, \virt, PGDIR_SHIFT, PTRS_PER_PGD, \tmp1, \tmp2
276 create_table_entry \tbl, \virt, PUD_SHIFT, PTRS_PER_PUD, \tmp1, \tmp2
279 create_table_entry \tbl, \virt, SWAPPER_TABLE_SHIFT, PTRS_PER_PTE, \tmp1, \tmp2
/linux-4.4.14/arch/sh/boards/mach-migor/
Dlcd_qvga.c45 unsigned long tmp1, tmp2; in adjust_reg18() local
47 tmp1 = (data<<1 | 0x00000001) & 0x000001FF; in adjust_reg18()
49 return tmp1 | tmp2; in adjust_reg18()
/linux-4.4.14/tools/testing/selftests/capabilities/
Dtest_execve.c404 char *tmp1, *tmp2, *our_path; in main() local
407 tmp1 = strdup(argv[0]); in main()
408 if (!tmp1) in main()
410 tmp2 = dirname(tmp1); in main()
414 free(tmp1); in main()
/linux-4.4.14/arch/sh/lib/
Dio.c69 int tmp1; in __raw_writesl() local
77 : "=&r" (data), "=&r" (tmp1) in __raw_writesl()
/linux-4.4.14/fs/cifs/
Dcifs_debug.c112 struct list_head *tmp1, *tmp2, *tmp3; in cifs_debug_data_proc_show() local
152 list_for_each(tmp1, &cifs_tcp_ses_list) { in cifs_debug_data_proc_show()
153 server = list_entry(tmp1, struct TCP_Server_Info, in cifs_debug_data_proc_show()
261 struct list_head *tmp1, *tmp2, *tmp3; in cifs_stats_proc_write() local
276 list_for_each(tmp1, &cifs_tcp_ses_list) { in cifs_stats_proc_write()
277 server = list_entry(tmp1, struct TCP_Server_Info, in cifs_stats_proc_write()
301 struct list_head *tmp1, *tmp2, *tmp3; in cifs_stats_proc_show() local
333 list_for_each(tmp1, &cifs_tcp_ses_list) { in cifs_stats_proc_show()
334 server = list_entry(tmp1, struct TCP_Server_Info, in cifs_stats_proc_show()
Dsmb2misc.c505 struct list_head *tmp, *tmp1, *tmp2; in smb2_is_valid_lease_break() local
525 list_for_each(tmp1, &server->smb_ses_list) { in smb2_is_valid_lease_break()
526 ses = list_entry(tmp1, struct cifs_ses, smb_ses_list); in smb2_is_valid_lease_break()
553 struct list_head *tmp, *tmp1, *tmp2; in smb2_is_valid_oplock_break() local
578 list_for_each(tmp1, &ses->tcon_list) { in smb2_is_valid_oplock_break()
579 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); in smb2_is_valid_oplock_break()
Dmisc.c401 struct list_head *tmp, *tmp1, *tmp2; in is_valid_oplock_break() local
462 list_for_each(tmp1, &ses->tcon_list) { in is_valid_oplock_break()
463 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); in is_valid_oplock_break()
Dcifssmb.c98 struct list_head *tmp1; in cifs_mark_open_files_invalid() local
102 list_for_each_safe(tmp, tmp1, &tcon->openFileList) { in cifs_mark_open_files_invalid()
/linux-4.4.14/drivers/media/dvb-frontends/
Dcxd2820r_core.c192 u8 tmp0, tmp1; in cxd2820r_gpio() local
202 tmp1 = 0x00; in cxd2820r_gpio()
212 tmp1 |= (1 << (3 + i)); in cxd2820r_gpio()
214 tmp1 |= (0 << (3 + i)); in cxd2820r_gpio()
218 tmp1 |= (1 << (0 + i)); in cxd2820r_gpio()
220 tmp1 |= (0 << (0 + i)); in cxd2820r_gpio()
223 i, tmp0, tmp1); in cxd2820r_gpio()
227 tmp1); in cxd2820r_gpio()
235 ret = cxd2820r_wr_reg_mask(priv, 0x0008e, tmp1, 0x3f); in cxd2820r_gpio()
Dm88rs2000.c487 u8 tmp0, tmp1; in m88rs2000_read_ber() local
500 tmp1 = m88rs2000_readreg(state, 0xd9); in m88rs2000_read_ber()
501 m88rs2000_writereg(state, 0xd9, (tmp1 & ~7) | 4); in m88rs2000_read_ber()
/linux-4.4.14/drivers/video/fbdev/i810/
Di810_accel.c438 u32 tmp1, tmp2; in i810fb_init_ringbuffer() local
448 tmp1 = par->iring.physical; in i810fb_init_ringbuffer()
449 i810_writel(IRING + 8, mmio, tmp2 | tmp1); in i810fb_init_ringbuffer()
451 tmp1 = i810_readl(IRING + 12, mmio); in i810fb_init_ringbuffer()
452 tmp1 &= ~RBUFFER_SIZE_MASK; in i810fb_init_ringbuffer()
454 i810_writel(IRING + 12, mmio, tmp1 | tmp2); in i810fb_init_ringbuffer()
Di810_main.c232 u32 tmp1, tmp2; in i810_load_pll() local
235 tmp1 = par->regs.M | par->regs.N << 16; in i810_load_pll()
238 i810_writel(DCLK_2D, mmio, tmp1 | tmp2); in i810_load_pll()
240 tmp1 = par->regs.P; in i810_load_pll()
243 i810_writel(DCLK_0DS, mmio, (tmp1 << 16) | tmp2); in i810_load_pll()
463 u32 tmp1, tmp2; in i810_restore_pll() local
466 tmp1 = par->hw_state.dclk_2d; in i810_restore_pll()
468 tmp1 &= ~MN_MASK; in i810_restore_pll()
470 i810_writel(DCLK_2D, mmio, tmp1 | tmp2); in i810_restore_pll()
472 tmp1 = par->hw_state.dclk_1d; in i810_restore_pll()
[all …]
/linux-4.4.14/drivers/media/common/b2c2/
Dflexcop-sram.c239 u8 tmp1, tmp2;
246 tmp1 = 0x4f;
249 sram_write(adapter, addr + 4, &tmp1, 1);
263 tmp1 = 0xf4;
266 sram_write(adapter, addr + 4, &tmp1, 1);
/linux-4.4.14/fs/nfsd/
Dnfsxdr.c91 u32 tmp, tmp1; in decode_sattr() local
117 tmp = ntohl(*p++); tmp1 = ntohl(*p++); in decode_sattr()
118 if (tmp != (u32)-1 && tmp1 != (u32)-1) { in decode_sattr()
121 iap->ia_atime.tv_nsec = tmp1 * 1000; in decode_sattr()
123 tmp = ntohl(*p++); tmp1 = ntohl(*p++); in decode_sattr()
124 if (tmp != (u32)-1 && tmp1 != (u32)-1) { in decode_sattr()
127 iap->ia_mtime.tv_nsec = tmp1 * 1000; in decode_sattr()
137 if (tmp1 == 1000000) in decode_sattr()
/linux-4.4.14/arch/xtensa/include/asm/
Dspinlock.h189 unsigned long tmp1, tmp2; in arch_read_unlock() local
197 : "=&a" (tmp1), "=&a" (tmp2) in arch_read_unlock()
/linux-4.4.14/arch/x86/include/asm/
Dpvclock.h27 u32 tmp1, tmp2; in pvclock_scale_delta() local
46 : "=A" (product), "=r" (tmp1), "=r" (tmp2) in pvclock_scale_delta()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Darith.fuc56 push $r4 // tmp1
72 shr b32 $r4 16 // tmp1 = tmp0_hi
81 shr b32 $r4 16 // tmp1 = tmp0_hi
/linux-4.4.14/arch/sparc/math-emu/
Dsfp-util_64.h44 UDItype tmp1, tmp2, tmp3, tmp4; \
69 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3), "=&r" (tmp4) \
/linux-4.4.14/drivers/staging/lustre/lnet/lnet/
Dconfig.c635 struct list_head *tmp1; in lnet_parse_route() local
691 tmp1 = &ltb->ltb_list; in lnet_parse_route()
692 list_add_tail(tmp1, tmp2); in lnet_parse_route()
694 while (tmp1 != tmp2) { in lnet_parse_route()
695 ltb = list_entry(tmp1, struct lnet_text_buf_t, in lnet_parse_route()
698 rc = lnet_str2tbs_expand(tmp1->next, ltb->ltb_text); in lnet_parse_route()
702 tmp1 = tmp1->next; in lnet_parse_route()
735 list_for_each(tmp1, &nets) { in lnet_parse_route()
736 ltb = list_entry(tmp1, struct lnet_text_buf_t, ltb_list); in lnet_parse_route()
/linux-4.4.14/drivers/gpu/drm/
Ddrm_modes.c236 int tmp1, tmp2; in drm_cvt_mode() local
244 tmp1 = HV_FACTOR * 1000000 - in drm_cvt_mode()
248 hperiod = tmp1 * 2 / (tmp2 * vfieldrate); in drm_cvt_mode()
250 tmp1 = CVT_MIN_VSYNC_BP * HV_FACTOR / hperiod + 1; in drm_cvt_mode()
252 if (tmp1 < (vsync + CVT_MIN_V_PORCH)) in drm_cvt_mode()
255 vsyncandback_porch = tmp1; in drm_cvt_mode()
302 int tmp1, tmp2; in drm_cvt_mode() local
304 tmp1 = HV_FACTOR * 1000000 - in drm_cvt_mode()
307 hperiod = tmp1 / (tmp2 * vfieldrate); in drm_cvt_mode()
398 unsigned int tmp1, tmp2; in drm_gtf_mode_complex() local
[all …]
/linux-4.4.14/sound/oss/
Dad1848.c1537 unsigned char tmp1 = 0xff, tmp2 = 0xff; in ad1848_detect() local
1636 if ((tmp1 = ad_read(devc, 0)) != 0xaa || (tmp2 = ad_read(devc, 1)) != 0x45) in ad1848_detect()
1642 DDB(printk("ad1848 detect error - step B (%x/%x)\n", tmp1, tmp2)); in ad1848_detect()
1650 if ((tmp1 = ad_read(devc, 0)) != 0x45 || (tmp2 = ad_read(devc, 1)) != 0xaa) in ad1848_detect()
1656 DDB(printk("ad1848 detect error - step C (%x/%x)\n", tmp1, tmp2)); in ad1848_detect()
1670 if ((tmp & 0x0f) != ((tmp1 = ad_read(devc, 12)) & 0x0f)) in ad1848_detect()
1672 DDB(printk("ad1848 detect error - step D (%x)\n", tmp1)); in ad1848_detect()
1700 if ((tmp1 = ad_read(devc, i)) != (tmp2 = ad_read(devc, i + 16))) in ad1848_detect()
1702 DDB(printk("ad1848 detect step F(%d/%x/%x) - OPTi chip???\n", i, tmp1, tmp2)); in ad1848_detect()
1725 tmp1 = ad_read(devc, 12); in ad1848_detect()
[all …]
/linux-4.4.14/arch/arm/crypto/
Dsha1-armv7-neon.S73 #define tmp1 q9 macro
164 vadd.u32 tmp1, W7, curK; \
167 vst1.32 {tmp0, tmp1}, [RWK]!; \
193 vadd.u32 tmp1, W7, curK; \
202 vst1.32 {tmp0, tmp1}, [RWK]!; \
226 veor tmp1, tmp1; \
233 vext.8 tmp1, tmp1, W, #(16-12); \
238 vshr.u32 W, tmp1, #30; \
241 vshl.u32 tmp1, tmp1, #2; \
247 veor W, tmp0, tmp1; \
[all …]
/linux-4.4.14/fs/jfs/
Djfs_dmap.h66 signed char tmp1, tmp2; in TREEMAX() local
68 tmp1 = max(*(cp+2), *(cp+3)); in TREEMAX()
71 return max(tmp1, tmp2); in TREEMAX()
Djfs_dmap.c3075 signed char tmp1, tmp2; in dbMaxBud() local
3092 tmp1 = max(budtab[cp[2]], budtab[cp[3]]); in dbMaxBud()
3094 return (max(tmp1, tmp2)); in dbMaxBud()
/linux-4.4.14/sound/pci/cs46xx/
Ddsp_spos_scb_lib.c622 unsigned int tmp1, tmp2; in cs46xx_dsp_create_src_task_scb() local
646 tmp1 = rate << 16; in cs46xx_dsp_create_src_task_scb()
647 phiIncr = tmp1 / 48000; in cs46xx_dsp_create_src_task_scb()
648 tmp1 -= phiIncr * 48000; in cs46xx_dsp_create_src_task_scb()
649 tmp1 <<= 10; in cs46xx_dsp_create_src_task_scb()
651 tmp2 = tmp1 / 48000; in cs46xx_dsp_create_src_task_scb()
653 tmp1 -= tmp2 * 48000; in cs46xx_dsp_create_src_task_scb()
654 correctionPerGOF = tmp1 / GOF_PER_SEC; in cs46xx_dsp_create_src_task_scb()
655 tmp1 -= correctionPerGOF * GOF_PER_SEC; in cs46xx_dsp_create_src_task_scb()
656 correctionPerSec = tmp1; in cs46xx_dsp_create_src_task_scb()
Dcs46xx_lib.c725 unsigned int tmp1, tmp2; in snd_cs46xx_set_play_sample_rate() local
746 tmp1 = rate << 16; in snd_cs46xx_set_play_sample_rate()
747 phiIncr = tmp1 / 48000; in snd_cs46xx_set_play_sample_rate()
748 tmp1 -= phiIncr * 48000; in snd_cs46xx_set_play_sample_rate()
749 tmp1 <<= 10; in snd_cs46xx_set_play_sample_rate()
751 tmp2 = tmp1 / 48000; in snd_cs46xx_set_play_sample_rate()
753 tmp1 -= tmp2 * 48000; in snd_cs46xx_set_play_sample_rate()
754 correctionPerGOF = tmp1 / GOF_PER_SEC; in snd_cs46xx_set_play_sample_rate()
755 tmp1 -= correctionPerGOF * GOF_PER_SEC; in snd_cs46xx_set_play_sample_rate()
756 correctionPerSec = tmp1; in snd_cs46xx_set_play_sample_rate()
[all …]
/linux-4.4.14/arch/ia64/kernel/
Dperfmon_montecito.h136 unsigned long tmp1, tmp2, ival = *val; in pfm_mont_reserved() local
139 tmp1 = ival & PMC_RSVD_MASK(cnum); in pfm_mont_reserved()
144 *val = tmp1 | tmp2; in pfm_mont_reserved()
Dperfmon_mckinley.h58 unsigned long tmp1, tmp2, ival = *val; in pfm_mck_reserved() local
61 tmp1 = ival & PMC_RSVD_MASK(cnum); in pfm_mck_reserved()
66 *val = tmp1 | tmp2; in pfm_mck_reserved()
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
Dsym_fw.c367 u32 opcode, new, old, tmp1, tmp2; in sym_fw_bind_script() local
425 tmp1 = cur[1]; in sym_fw_bind_script()
427 if ((tmp1 ^ tmp2) & 3) { in sym_fw_bind_script()
/linux-4.4.14/sound/isa/es1688/
Des1688_lib.c202 int cfg, irq_bits, dma, dma_bits, tmp, tmp1; in snd_es1688_init() local
211 tmp1 = 4; in snd_es1688_init()
214 tmp1 = 5; in snd_es1688_init()
217 tmp1 = 6; in snd_es1688_init()
220 tmp1 = 7; in snd_es1688_init()
223 tmp1 = 0; in snd_es1688_init()
225 if (tmp1) { in snd_es1688_init()
226 cfg |= (tmp << 3) | (tmp1 << 5); in snd_es1688_init()
/linux-4.4.14/arch/arm/mach-omap1/
Dmux.c356 unsigned tmp1, tmp2; in omap1_cfg_reg() local
363 tmp1 = reg_orig & mask; in omap1_cfg_reg()
369 if (tmp1 != tmp2) in omap1_cfg_reg()
/linux-4.4.14/drivers/target/iscsi/
Discsi_target_parameters.c926 char *tmp1 = NULL, *tmp2 = NULL; in iscsi_check_valuelist_for_support() local
935 tmp1 = strchr(proposer_values, ','); in iscsi_check_valuelist_for_support()
936 if (tmp1) in iscsi_check_valuelist_for_support()
937 *tmp1 = '\0'; in iscsi_check_valuelist_for_support()
941 if (tmp1) in iscsi_check_valuelist_for_support()
942 *tmp1 = ','; in iscsi_check_valuelist_for_support()
958 if (tmp1) in iscsi_check_valuelist_for_support()
959 *tmp1++ = ','; in iscsi_check_valuelist_for_support()
960 proposer_values = tmp1; in iscsi_check_valuelist_for_support()
/linux-4.4.14/arch/arm64/crypto/
Daes-neon.S165 .macro mul_by_x_2x, out0, out1, in0, in1, tmp0, tmp1, const
168 sshr \tmp1\().16b, \in1\().16b, #7
171 and \tmp1\().16b, \tmp1\().16b, \const\().16b
173 eor \out1\().16b, \out1\().16b, \tmp1\().16b
/linux-4.4.14/drivers/net/wireless/b43/
Dphy_lp.c1713 int prod, ipwr, qpwr, prod_msb, q_msb, tmp1, tmp2, tmp3, tmp4, ret; in lpphy_calc_rx_iq_comp() local
1737 tmp1 = prod_msb - 20; in lpphy_calc_rx_iq_comp()
1739 if (tmp1 >= 0) { in lpphy_calc_rx_iq_comp()
1740 tmp3 = ((prod << (30 - prod_msb)) + (ipwr >> (1 + tmp1))) / in lpphy_calc_rx_iq_comp()
1741 (ipwr >> tmp1); in lpphy_calc_rx_iq_comp()
1743 tmp3 = ((prod << (30 - prod_msb)) + (ipwr << (-1 - tmp1))) / in lpphy_calc_rx_iq_comp()
1744 (ipwr << -tmp1); in lpphy_calc_rx_iq_comp()
2416 u32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8, tmp9; in lpphy_b2062_tune() local
2440 tmp1 = crystal_freq / 1000; in lpphy_b2062_tune()
2448 tmp4 = 48 * tmp1; in lpphy_b2062_tune()
[all …]
Dphy_g.c1265 u32 tmp1 = 0, tmp2 = 0; in b43_radio_init2050() local
1384 tmp1 += b43_phy_read(dev, B43_PHY_LO_LEAKAGE); in b43_radio_init2050()
1397 tmp1++; in b43_radio_init2050()
1398 tmp1 >>= 9; in b43_radio_init2050()
1448 if (tmp1 < tmp2) in b43_radio_init2050()
/linux-4.4.14/arch/parisc/mm/
Dinit.c406 unsigned long tmp1; in map_pages() local
453 for (tmp1 = start_pmd; tmp1 < PTRS_PER_PMD; tmp1++, pmd++) { in map_pages()
/linux-4.4.14/arch/parisc/kernel/
Dentry.S457 .macro tlb_lock spc,ptp,pte,tmp,tmp1,fault
461 1: LDCW 0(\tmp),\tmp1
462 cmpib,COND(=) 0,\tmp1,1b
490 .macro update_accessed ptp,pte,tmp,tmp1
491 ldi _PAGE_ACCESSED,\tmp1
492 or \tmp1,\pte,\tmp
493 and,COND(<>) \tmp1,\pte,%r0
613 .macro do_alias spc,tmp,tmp1,va,pte,prot,fault,patype
621 copy \va,\tmp1
622 depi 0,31,23,\tmp1
[all …]
/linux-4.4.14/sound/isa/
Dopl3sa2.c227 unsigned char tmp, tmp1; in snd_opl3sa2_detect() local
262 if ((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MISC)) != tmp) { in snd_opl3sa2_detect()
263 snd_printd("OPL3-SA [0x%lx] detect (1) = 0x%x (0x%x)\n", port, tmp, tmp1); in snd_opl3sa2_detect()
269 if (((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MIC)) & 0x9f) != 0x8a) { in snd_opl3sa2_detect()
270 snd_printd("OPL3-SA [0x%lx] detect (2) = 0x%x (0x%x)\n", port, tmp, tmp1); in snd_opl3sa2_detect()
/linux-4.4.14/drivers/iio/frequency/
Dad9523.c411 long tmp1, tmp2; in ad9523_set_clock_provider() local
419 tmp1 = st->vco_out_freq[AD9523_VCO1] / freq; in ad9523_set_clock_provider()
421 tmp1 *= freq; in ad9523_set_clock_provider()
423 use_alt_clk_src = (abs(tmp1 - freq) > abs(tmp2 - freq)); in ad9523_set_clock_provider()
/linux-4.4.14/drivers/scsi/csiostor/
Dcsio_rnode.c189 struct list_head *tmp, *tmp1; in csio_rn_dup_flowid() local
194 list_for_each(tmp1, &hw->sln_head) { in csio_rn_dup_flowid()
195 ln_tmp = (struct csio_lnode *) tmp1; in csio_rn_dup_flowid()
Dcsio_lnode.c140 struct list_head *tmp1, *tmp2; in csio_ln_lookup_by_vnpi() local
148 list_for_each(tmp1, &hw->sln_head) { in csio_ln_lookup_by_vnpi()
149 sln = (struct csio_lnode *) tmp1; in csio_ln_lookup_by_vnpi()
180 struct list_head *tmp1, *tmp2; in csio_lnode_lookup_by_wwpn() local
188 list_for_each(tmp1, &hw->sln_head) { in csio_lnode_lookup_by_wwpn()
189 sln = (struct csio_lnode *) tmp1; in csio_lnode_lookup_by_wwpn()
/linux-4.4.14/arch/arm64/net/
Dbpf_jit_comp.c157 const u8 tmp1 = bpf2a64[TMP_REG_1]; in build_prologue() local
193 emit(A64_PUSH(tmp1, tmp2, A64_SP), ctx); in build_prologue()
217 const u8 tmp1 = bpf2a64[TMP_REG_1]; in build_epilogue() local
228 emit(A64_POP(tmp1, tmp2, A64_SP), ctx); in build_epilogue()
/linux-4.4.14/arch/sparc/kernel/
Dtime_64.c285 unsigned long ret, tmp1, tmp2, tmp3; in __hbird_read_stick() local
300 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3) in __hbird_read_stick()
/linux-4.4.14/arch/cris/include/arch-v32/arch/
Duaccess.h700 long res, tmp1; in strnlen_user() local
740 : "=r" (res), "=r" (tmp1) in strnlen_user()
/linux-4.4.14/arch/cris/include/arch-v10/arch/
Duaccess.h608 long res, tmp1; in strnlen_user() local
653 : "=r" (res), "=r" (tmp1) in strnlen_user()
/linux-4.4.14/arch/powerpc/platforms/ps3/
Ddevice-init.c38 u64 tmp1; in ps3_register_lpm_devices() local
61 result = ps3_repository_read_lpm_privileges(dev->lpm.node_id, &tmp1, in ps3_register_lpm_devices()
72 if (tmp1 != tmp2) { in ps3_register_lpm_devices()
/linux-4.4.14/drivers/net/ethernet/amd/
Dsun3lance.c314 unsigned short tmp1, tmp2; in lance_probe() local
328 tmp1 = ioaddr_probe[0]; in lance_probe()
335 ioaddr_probe[0] = tmp1; in lance_probe()
/linux-4.4.14/drivers/misc/mic/scif/
Dscif_rma.c787 dma_addr_t *dma_phys_lookup, *tmp, *num_pages_lookup, *tmp1; in scif_prep_remote_window() local
873 tmp1 = scif_ioremap(num_pages_lookup[j], in scif_prep_remote_window()
881 memcpy_toio((void __force __iomem *)tmp1, in scif_prep_remote_window()
899 memcpy_toio((void __force __iomem *)tmp1, in scif_prep_remote_window()
915 memcpy_toio((void __force __iomem *)tmp1, in scif_prep_remote_window()
926 scif_iounmap(tmp1, loop_nr_contig_chunks * in scif_prep_remote_window()
/linux-4.4.14/drivers/net/ethernet/microchip/
Denc28j60.c821 u16 tmp1, tmp2; in enc28j60_dump_tsv() local
824 tmp1 = tsv[1]; in enc28j60_dump_tsv()
825 tmp1 <<= 8; in enc28j60_dump_tsv()
826 tmp1 |= tsv[0]; in enc28j60_dump_tsv()
833 " TotByteOnWire: %d\n", tmp1, tsv[2] & 0x0f, tmp2); in enc28j60_dump_tsv()
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
Dphy.c992 s32 tmp1 = 0, tmp2 = 0; in simularity_compare() local
1003 tmp1 = resulta[c1][i] | 0xFFFFFC00; in simularity_compare()
1005 tmp1 = resulta[c1][i]; in simularity_compare()
1012 tmp1 = resulta[c1][i]; in simularity_compare()
1016 diff = abs(tmp1 - tmp2); in simularity_compare()
/linux-4.4.14/drivers/usb/misc/sisusbvga/
Dsisusb.c1601 u8 tmp1, tmp2, i, j; in sisusb_verify_mclk() local
1605 ret |= READB(ramptr, &tmp1); in sisusb_verify_mclk()
1607 if ((tmp1 != 0xaa) || (tmp2 != 0x55)) { in sisusb_verify_mclk()
1609 ret |= GETIREG(SISSR, 0x21, &tmp1); in sisusb_verify_mclk()
1610 ret |= SETIREGAND(SISSR, 0x21, (tmp1 & 0xfb)); in sisusb_verify_mclk()
1613 ret |= SETIREG(SISSR, 0x21, tmp1); in sisusb_verify_mclk()
1615 ret |= READB(ramptr + 16 + j, &tmp1); in sisusb_verify_mclk()
1616 if (tmp1 == j) { in sisusb_verify_mclk()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
Dphy.c2008 s32 tmp1 = 0, tmp2 = 0; in _rtl8723be_phy_simularity_compare() local
2017 tmp1 = result[c1][i] | 0xFFFFFC00; in _rtl8723be_phy_simularity_compare()
2019 tmp1 = result[c1][i]; in _rtl8723be_phy_simularity_compare()
2026 tmp1 = result[c1][i]; in _rtl8723be_phy_simularity_compare()
2030 diff = (tmp1 > tmp2) ? (tmp1 - tmp2) : (tmp2 - tmp1); in _rtl8723be_phy_simularity_compare()
/linux-4.4.14/drivers/infiniband/hw/mlx4/
Dmcg.c787 struct mcast_req *tmp1, *tmp2; in search_relocate_mgid0_group() local
793 list_for_each_entry_safe(tmp1, tmp2, &group->pending_list, group_list) { in search_relocate_mgid0_group()
794 list_del(&tmp1->group_list); in search_relocate_mgid0_group()
795 kfree(tmp1); in search_relocate_mgid0_group()
/linux-4.4.14/drivers/net/wireless/b43legacy/
Dradio.c1503 u32 tmp1 = 0; in b43legacy_radio_init2050() local
1634 tmp1 += b43legacy_phy_read(dev, 0x002D); in b43legacy_radio_init2050()
1643 tmp1++; in b43legacy_radio_init2050()
1644 tmp1 >>= 9; in b43legacy_radio_init2050()
1685 if (tmp1 < tmp2) in b43legacy_radio_init2050()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
Dphy.c2452 s32 tmp1, tmp2; in _rtl92ee_phy_simularity_compare() local
2461 tmp1 = result[c1][i] | 0xFFFFFC00; in _rtl92ee_phy_simularity_compare()
2463 tmp1 = result[c1][i]; in _rtl92ee_phy_simularity_compare()
2470 tmp1 = result[c1][i]; in _rtl92ee_phy_simularity_compare()
2474 diff = (tmp1 > tmp2) ? (tmp1 - tmp2) : (tmp2 - tmp1); in _rtl92ee_phy_simularity_compare()
/linux-4.4.14/arch/x86/crypto/sha-mb/
Dsha1_mb_mgr_flush_avx2.S79 #define tmp1 %rax macro
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_link.c7390 u16 val = 0, tmp1; in bnx2x_8073_config_init() local
7409 MDIO_PMA_DEVAD, MDIO_PMA_REG_M8051_MSGOUT_REG, &tmp1); in bnx2x_8073_config_init()
7412 MDIO_PMA_DEVAD, MDIO_PMA_LASI_RXSTAT, &tmp1); in bnx2x_8073_config_init()
7414 DP(NETIF_MSG_LINK, "Before rom RX_ALARM(port1): 0x%x\n", tmp1); in bnx2x_8073_config_init()
7478 bnx2x_cl45_read(bp, phy, MDIO_AN_DEVAD, MDIO_AN_REG_8073_2_5G, &tmp1); in bnx2x_8073_config_init()
7490 tmp1 |= 1; in bnx2x_8073_config_init()
7492 tmp1 &= 0xfffe; in bnx2x_8073_config_init()
7495 tmp1 &= 0xfffe; in bnx2x_8073_config_init()
7498 bnx2x_cl45_write(bp, phy, MDIO_AN_DEVAD, MDIO_AN_REG_8073_2_5G, tmp1); in bnx2x_8073_config_init()
7501 bnx2x_cl45_read(bp, phy, MDIO_AN_DEVAD, MDIO_AN_REG_CL37_FC_LD, &tmp1); in bnx2x_8073_config_init()
[all …]
/linux-4.4.14/arch/x86/kvm/
Dlapic.c1173 u32 tmp1, tmp2, tdcr; in update_divide_count() local
1176 tmp1 = tdcr & 0xf; in update_divide_count()
1177 tmp2 = ((tmp1 & 0x3) | ((tmp1 & 0x8) >> 1)) + 1; in update_divide_count()
/linux-4.4.14/drivers/net/wireless/hostap/
Dhostap_hw.c1082 u16 tmp1 = hostap_get_porttype(local); in prism2_setup_rids() local
1083 ret = hostap_set_word(dev, HFA384X_RID_CNFPORTTYPE, tmp1); in prism2_setup_rids()
1086 dev->name, tmp1); in prism2_setup_rids()
/linux-4.4.14/drivers/scsi/
Dncr53c8xx.c3526 ncrcmd opcode, new, old, tmp1, tmp2; in ncr_script_copy_and_bind() local
3566 tmp1 = src[0]; in ncr_script_copy_and_bind()
3568 if ((tmp1 & RELOC_MASK) == RELOC_KVAR) in ncr_script_copy_and_bind()
3569 tmp1 = 0; in ncr_script_copy_and_bind()
3576 if ((tmp1 ^ tmp2) & 3) { in ncr_script_copy_and_bind()
/linux-4.4.14/drivers/md/
Dmd.c816 mdp_super_t *tmp1, *tmp2; in sb_equal() local
818 tmp1 = kmalloc(sizeof(*tmp1),GFP_KERNEL); in sb_equal()
821 if (!tmp1 || !tmp2) { in sb_equal()
827 *tmp1 = *sb1; in sb_equal()
833 tmp1->nr_disks = 0; in sb_equal()
836 ret = (memcmp(tmp1, tmp2, MD_SB_GENERIC_CONSTANT_WORDS * 4) == 0); in sb_equal()
838 kfree(tmp1); in sb_equal()
/linux-4.4.14/Documentation/filesystems/
Dsharedsubtree.txt622 mount --bind /mnt/1/2 /tmp1
627 And then we have a second mount at /tmp1 with root
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Dgfx_v8_0.c5115 u32 mask = 0, tmp, tmp1; in gfx_v8_0_get_cu_active_bitmap() local
5120 tmp1 = RREG32(mmGC_USER_SHADER_ARRAY_CONFIG); in gfx_v8_0_get_cu_active_bitmap()
5125 tmp |= tmp1; in gfx_v8_0_get_cu_active_bitmap()
Dgfx_v7_0.c4414 u32 mask = 0, tmp, tmp1; in gfx_v7_0_get_cu_active_bitmap() local
4419 tmp1 = RREG32(mmGC_USER_SHADER_ARRAY_CONFIG); in gfx_v7_0_get_cu_active_bitmap()
4424 tmp |= tmp1; in gfx_v7_0_get_cu_active_bitmap()
/linux-4.4.14/net/bluetooth/
Dsmp.c1154 const u8 tmp1[4] = { 0x31, 0x70, 0x6d, 0x74 }; in sc_generate_link_key() local
1161 if (smp_h6(smp->tfm_cmac, smp->tk, tmp1, smp->link_key)) { in sc_generate_link_key()
/linux-4.4.14/drivers/gpu/drm/radeon/
Dsi.c5288 u32 mask = 0, tmp, tmp1; in si_get_cu_active_bitmap() local
5293 tmp1 = RREG32(GC_USER_SHADER_ARRAY_CONFIG); in si_get_cu_active_bitmap()
5298 tmp |= tmp1; in si_get_cu_active_bitmap()
Dcik.c6969 u32 mask = 0, tmp, tmp1; in cik_get_cu_active_bitmap() local
6975 tmp1 = RREG32(GC_USER_SHADER_ARRAY_CONFIG); in cik_get_cu_active_bitmap()
6981 tmp |= tmp1; in cik_get_cu_active_bitmap()
/linux-4.4.14/net/wireless/
Dnl80211.c5719 int n_channels = 0, tmp1, tmp2; in validate_scan_freqs() local
5721 nla_for_each_nested(attr1, freqs, tmp1) { in validate_scan_freqs()