Home
last modified time | relevance | path

Searched refs:d3 (Results 1 – 25 of 204) sorted by relevance

123456789

/OK3568_Linux_fs/kernel/include/asm-generic/
H A Dxor.h101 register long d0, d1, d2, d3, d4, d5, d6, d7; in xor_32regs_2() local
105 d3 = p1[3]; in xor_32regs_2()
113 d3 ^= p2[3]; in xor_32regs_2()
121 p1[3] = d3; in xor_32regs_2()
138 register long d0, d1, d2, d3, d4, d5, d6, d7; in xor_32regs_3() local
142 d3 = p1[3]; in xor_32regs_3()
150 d3 ^= p2[3]; in xor_32regs_3()
158 d3 ^= p3[3]; in xor_32regs_3()
166 p1[3] = d3; in xor_32regs_3()
184 register long d0, d1, d2, d3, d4, d5, d6, d7; in xor_32regs_4() local
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Dmedian.c16 extern integer median_(integer *d1, integer *d2, integer *d3);
42 integer median_(integer *d1, integer *d2, integer *d3) in median_() argument
49 if (*d2 > *d1 && *d2 > *d3) { in median_()
51 if (*d3 > *d1) { in median_()
52 ret_val = *d3; in median_()
54 } else if (*d2 < *d1 && *d2 < *d3) { in median_()
56 if (*d3 < *d1) { in median_()
57 ret_val = *d3; in median_()
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/src/
H A Ditest.S171 mov.l &0x88888888,%d3
177 mulu.l %d1,%d2:%d3
195 mov.l &0x00000000,%d3
201 mulu.l %d1,%d2:%d3
241 mov.l &0x00000003,%d3
247 mulu.l %d1,%d2:%d3
265 mov.l &0x00000004,%d3
271 mulu.l %d1,%d2:%d3
289 mov.l &0xffffffff,%d3
295 mulu.l %d1,%d2:%d3
[all …]
H A Dilsp.S342 mov.l %d7, %d3 # divisor
345 swap %d3
346 cmp.w %d2, %d3 # V1 = U1 ?
353 divu.w %d3, %d1 # use quotient of mslw/msw
364 lddadj1: mov.l %d7, %d3
367 swap %d3
368 mulu.w %d1, %d3 # V1q
370 sub.l %d3, %d4 # U1U2 - V1q
394 mov.l %d5, %d2 # now %d2,%d3 are trial*divisor
395 mov.l %d6, %d3
[all …]
/OK3568_Linux_fs/kernel/arch/mips/crypto/
H A Dpoly1305-mips.pl735 my ($d0,$d1,$d2,$d3) =
801 lw $d3,12($inp)
814 srlv $at,$d3,$t1
815 sllv $d3,$d3,$shr
818 or $d3,$d3,$t0
827 sllv $at,$d3,$t1
828 srlv $d3,$d3,$shr
831 or $d3,$d3,$t0
838 lwl $d3,12+MSB($inp)
842 lwr $d3,12+LSB($inp)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/
H A Ditoa.h62 const uint32_t d3 = (c / 100) << 1; in u32toa() local
73 *buffer++ = cDigitsLut[d3]; in u32toa()
74 *buffer++ = cDigitsLut[d3 + 1]; in u32toa()
98 const uint32_t d3 = (c / 100) << 1; in u32toa() local
105 *buffer++ = cDigitsLut[d3]; in u32toa()
106 *buffer++ = cDigitsLut[d3 + 1]; in u32toa()
157 const uint32_t d3 = (c / 100) << 1; in u64toa() local
168 *buffer++ = cDigitsLut[d3]; in u64toa()
169 *buffer++ = cDigitsLut[d3 + 1]; in u64toa()
184 const uint32_t d3 = (c0 / 100) << 1; in u64toa() local
[all …]
/OK3568_Linux_fs/u-boot/lib/
H A Dvsprintf.c52 unsigned d3, d2, d1, d0; in put_dec_trunc() local
55 d3 = (q>>12); in put_dec_trunc()
57 d0 = 6*(d3 + d2 + d1) + (q & 0xf); in put_dec_trunc()
61 d1 = q + 9*d3 + 5*d2 + d1; in put_dec_trunc()
68 if ((d2 != 0) || (d3 != 0)) { in put_dec_trunc()
73 d3 = q + 4*d3; in put_dec_trunc()
74 if (d3 != 0) { in put_dec_trunc()
75 q = (d3 * 0xcd) >> 11; in put_dec_trunc()
76 d3 = d3 - 10*q; in put_dec_trunc()
77 *buf++ = d3 + '0'; /* next digit */ in put_dec_trunc()
[all …]
H A Dtiny-printf.c96 unsigned int d3, d2, d1, d0; in put_dec_trunc() local
99 d3 = (q >> 12); in put_dec_trunc()
101 d0 = 6 * (d3 + d2 + d1) + (q & 0xf); in put_dec_trunc()
105 d1 = q + 9 * d3 + 5 * d2 + d1; in put_dec_trunc()
112 if ((d2 != 0) || (d3 != 0)) { in put_dec_trunc()
117 d3 = q + 4 * d3; in put_dec_trunc()
118 if (d3 != 0) { in put_dec_trunc()
119 q = (d3 * 0xcd) >> 11; in put_dec_trunc()
120 d3 = d3 - 10 * q; in put_dec_trunc()
121 *buf++ = d3 + '0'; /* next digit */ in put_dec_trunc()
/OK3568_Linux_fs/kernel/arch/m68k/fpsp040/
H A Dsrem_mod.S111 movew (%a0),%d3
112 movew %d3,SignY(%a6)
113 andil #0x00007FFF,%d3 | ...Y := |Y|
119 tstl %d3
122 movel #0x00003FFE,%d3 | ...$3FFD + 1
129 subil #32,%d3
133 subl %d6,%d3 | ...(D3,D4,D5) is normalized
140 subl %d6,%d3
152 addil #0x00003FFE,%d3 | ...(D3,D4,D5) normalized
202 movel %d3,L_SCR1(%a6) | ...save biased expo(Y)
[all …]
H A Dbinstr.S7 | Input: 64-bit binary integer in d2:d3, desired length (LEN) in
26 | Copy the fraction in d2:d3 to d4:d5.
28 | A3. Multiply the fraction in d2:d3 by 8 using bit-field
35 | A5. Add using the carry the 64-bit quantities in d2:d3 and d4:d5
36 | into d2:d3. D1 will contain the bcd digit formed.
52 | d3: lower 32-bits of fraction for mul by 8
81 | A2. Copy d2:d3 to d4:d5. Start loop.
85 movel %d3,%d5 |to d4:d5
87 | A3. Multiply d2:d3 by 8; extract msbs into d1.
91 bfextu %d3{#0:#3},%d6 |copy 3 msbs of d3 into d6
[all …]
H A Dsgetem.S118 movel %d3,-(%a7) |save d3
120 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant
122 movel (%a7)+,%d3 |restore d3
126 moveml %d3/%d5/%d6,-(%a7) |save registers
127 bfffo %d0{#0:#32},%d3 |find first 1 in ls mant to d0
128 lsll %d3,%d0 |shift ms mant until j-bit is set
130 lsll %d3,%d1 |shift ls mant by count
132 subl %d3,%d5 |sub 32 from shift for ls mant
136 moveml (%a7)+,%d3/%d5/%d6 |restore registers
H A Ddecbin.S136 | (*) d3: offset pointer
145 moveql #ESTRT,%d3 |counter to pick up digits
154 bfextu %d4{%d3:#4},%d0 |get the digit and zero extend into d0
156 addqb #4,%d3 |advance d3 to the next digit
432 bfextu %d3{#26:#2},%d2 |isolate rounding mode bits
439 clrl %d3 |clear d3 to force no exc and extended
440 bfins %d0,%d3{#26:#2} |stuff new rounding bits in FPCR
441 fmovel %d3,%FPCR |write new FPCR
459 clrl %d3 |table index
464 fmulx (%a1,%d3),%fp1 |mul by 10**(d3_bit_no)
[all …]
/OK3568_Linux_fs/kernel/arch/arm/crypto/
H A Dblake2b-neon-core.S82 vadd.u64 d3, d3, M_\s6
116 vadd.u64 d3, d3, M_\s7
158 vadd.u64 d3, d3, d4
162 vadd.u64 d3, d3, M_\s14
168 veor d14, d14, d3
198 vadd.u64 d3, d3, d4
202 vadd.u64 d3, d3, M_\s15
209 veor d14, d14, d3
H A Dpoly1305-core.S_shipped291 adds r7,r2,r1 @ d3+=d2>>32
294 add r8,r8,r3 @ h4+=d3>>32
472 vdup.32 d3,r4
488 @ d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*5*r4
493 vmull.u32 q7,d3,d0[1]
500 vmlal.u32 q8,d3,d1[1]
505 vmlal.u32 q8,d1,d3[1]
506 vmlal.u32 q7,d0,d3[1]
507 vmlal.u32 q9,d3,d3[1]
509 vmlal.u32 q5,d3,d6[1]
[all …]
/OK3568_Linux_fs/kernel/arch/x86/lib/
H A Dstring_32.c35 int d0, d1, d2, d3; in strncpy() local
45 : "=&S" (d0), "=&D" (d1), "=&c" (d2), "=&a" (d3) in strncpy()
55 int d0, d1, d2, d3; in strcat() local
63 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3) in strcat()
73 int d0, d1, d2, d3; in strncat() local
86 : "=&S" (d0), "=&D" (d1), "=&a" (d2), "=&c" (d3) in strncat()
/OK3568_Linux_fs/kernel/drivers/scsi/snic/
H A Dsnic_trc.h65 snic_trace(char *fn, u16 hno, u32 tag, u64 d1, u64 d2, u64 d3, u64 d4, u64 d5) in snic_trace() argument
77 tr_rec->data[2] = d3; in snic_trace()
83 #define SNIC_TRC(_hno, _tag, d1, d2, d3, d4, d5) \ argument
91 (u64)(d3), \
97 #define SNIC_TRC(_hno, _tag, d1, d2, d3, d4, d5) \ argument
106 (u64)(d3), \
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Ddvb-usb-vp7045-cardlist.rst16 - 13d3:3223, 13d3:3224
18 - 13d3:3205, 13d3:3206
H A Dtm6000-cardlist.rst71 - 13d3:3240, 13d3:3241, 13d3:3243, 13d3:3264
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Duuid.h27 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
32 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
36 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
37 GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7)
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Duuid.h27 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
32 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
36 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
37 GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Duuid.h27 #define GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
32 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
36 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
37 GUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7)
/OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_linux_trace.h41 unsigned int d2, unsigned int d3, unsigned int d4),
43 TP_ARGS(event_id, d0, d1, d2, d3, d4),
50 __field(unsigned int, d3)
59 __entry->d3 = d3;
/OK3568_Linux_fs/kernel/arch/nios2/kernel/
H A Dmisaligned.c70 u8 a, b, d0, d1, d2, d3; in handle_unaligned_c() local
123 d3 = val >> 24; in handle_unaligned_c()
131 *(u8 *)(addr+3) = d3; in handle_unaligned_c()
136 fault |= __put_user(d3, (u8 *)(addr+3)); in handle_unaligned_c()
143 fault |= __get_user(d3, (u8 *)(addr+3)); in handle_unaligned_c()
144 val = (d3 << 24) | (d2 << 16) | (d1 << 8) | d0; in handle_unaligned_c()
/OK3568_Linux_fs/kernel/arch/m68k/kernel/
H A Dhead.S774 moveq #0,%d3 /* default if tag doesn't exist */
778 movel %a0@,%d3
780 movel %d3,%a0@
785 cmpl #ATARI_MACH_HADES,%d3
808 movel %a0@,%d3
810 movel %d3,%a0@
852 movel %a0@,%d3
854 movel %d3,%a0@
858 movel %a0@,%d3
860 movel %d3,%a0@
[all …]
/OK3568_Linux_fs/kernel/arch/m68k/lib/
H A Dudivsi3.S70 #define d3 REG (d3) macro
146 movl d2,d3 | subtract b from p, store in tmp.
147 subl d1,d3
150 movl d3,d2 | and store tmp in p.

123456789