Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 175) sorted by relevance

1234567

/arch/parisc/math-emu/
A Dsfcmp.c42 register unsigned int left, right; in sgl_fcmp() local
46 left = *leftptr; in sgl_fcmp()
59 && Sgl_isnotzero_mantissa(left) in sgl_fcmp()
77 && Sgl_isnotzero_mantissa(left)) in sgl_fcmp()
90 Sgl_xortointp1(left,right,xorresult); in sgl_fcmp()
95 if( Sgl_iszero_exponentmantissa(left) in sgl_fcmp()
100 else if( Sgl_isone_sign(left) ) in sgl_fcmp()
111 else if( Sgl_all(left) == Sgl_all(right) ) in sgl_fcmp()
115 else if( Sgl_iszero_sign(left) ) in sgl_fcmp()
118 if( Sgl_all(left) < Sgl_all(right) ) in sgl_fcmp()
[all …]
A Dsfsub.c50 left = *leftptr; in sgl_fsub()
62 if (Sgl_iszero_mantissa(left)) in sgl_fsub()
80 *dstptr = left; in sgl_fsub()
95 Sgl_set_quiet(left); in sgl_fsub()
113 *dstptr = left; in sgl_fsub()
159 Sgl_xorfromintp1(save,left,/*to*/left); in sgl_fsub()
160 result_exponent = Sgl_exponent(left); in sgl_fsub()
161 Sgl_invert_sign(left); in sgl_fsub()
193 Sgl_leftshiftby1(left); in sgl_fsub()
197 *dstptr = left; in sgl_fsub()
[all …]
A Dsfadd.c52 left = *leftptr; in sgl_fadd()
64 if (Sgl_iszero_mantissa(left)) in sgl_fadd()
82 *dstptr = left; in sgl_fadd()
97 Sgl_set_quiet(left); in sgl_fadd()
115 *dstptr = left; in sgl_fadd()
160 Sgl_xorfromintp1(save,left,/*to*/left); in sgl_fadd()
161 result_exponent = Sgl_exponent(left); in sgl_fadd()
176 Sgl_or_signs(left,/*with*/right); in sgl_fadd()
192 Sgl_leftshiftby1(left); in sgl_fadd()
196 *dstptr = left; in sgl_fadd()
[all …]
A Dhppa.h15 #define Shiftdouble(left,right,amount,dest) \ argument
17 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
20 #define Variableshiftdouble(left,right,amount,dest) \ argument
23 else dest = ((((unsigned) left)&0x7fffffff) << (32-(amount))) | \
27 #define Variable_shift_double(left,right,amount,dest) \ argument
29 dest = (left << (32-(amount))) | ((unsigned) right >> (amount))
A Dsgl_float.h50 #define Sgl_leftshiftby1_withextent(left,right,result) \ argument
51 Shiftdouble(Sall(left),Extall(right),31,Sall(result))
53 #define Sgl_rightshiftby1_withextent(left,right,dst) \ argument
228 Sgl_subtract(left,right,result); \
235 #define Sgl_xortointp1(left,right,result) \ argument
236 result = Sall(left) XOR Sall(right);
238 #define Sgl_xorfromintp1(left,right,result) \ argument
239 Sall(result) = left XOR Sall(right)
406 #define Sglext_xortointp1(left,right,result) Sgl_xortointp1(left,right,result) argument
407 #define Sglext_xorfromintp1(left,right,result) \ argument
[all …]
A Ddbl_float.h408 #define Dbl_xortointp1(left,right,result) \ argument
409 result = Dallp1(left) XOR Dallp1(right)
411 #define Dbl_xorfromintp1(left,right,result) \ argument
412 Dallp1(result) = left XOR Dallp1(right)
414 #define Dbl_swap_lower(left,right) \ argument
415 Dallp2(left) = Dallp2(left) XOR Dallp2(right); \
416 Dallp2(right) = Dallp2(left) XOR Dallp2(right); \
417 Dallp2(left) = Dallp2(left) XOR Dallp2(right)
707 #define Dblext_xortointp1(left,right,result) Dbl_xortointp1(left,right,result) argument
709 #define Dblext_xorfromintp1(left,right,result) \ argument
[all …]
/arch/x86/crypto/
A Ddes3_ede-asm_64.S98 movl left##d, RW0d; \
102 xorl RW0d, left##d; \
104 roll $1, left##d; \
112 rorl $1, left##d; \
113 xorl left##d, RW0d; \
116 xorl RW0d, left##d; \
164 bswapl left##d; \
168 bswapl left##d; \
290 movl left##0d, RW0d; \
296 roll $1, left##0d; \
[all …]
A Daegis128-aesni-glue.c75 unsigned int left = size; in crypto_aegis128_aesni_process_ad() local
84 left -= fill; in crypto_aegis128_aesni_process_ad()
89 left & ~(AEGIS128_BLOCK_SIZE - 1)); in crypto_aegis128_aesni_process_ad()
90 src += left & ~(AEGIS128_BLOCK_SIZE - 1); in crypto_aegis128_aesni_process_ad()
91 left &= AEGIS128_BLOCK_SIZE - 1; in crypto_aegis128_aesni_process_ad()
94 memcpy(buf.bytes + pos, src, left); in crypto_aegis128_aesni_process_ad()
95 pos += left; in crypto_aegis128_aesni_process_ad()
/arch/xtensa/kernel/
A Dperf_event.c167 s64 left; in xtensa_perf_event_set_period() local
170 left = XTENSA_PMU_COUNTER_MAX; in xtensa_perf_event_set_period()
175 if (left <= -period) { in xtensa_perf_event_set_period()
176 left = period; in xtensa_perf_event_set_period()
177 local64_set(&hwc->period_left, left); in xtensa_perf_event_set_period()
180 } else if (left <= 0) { in xtensa_perf_event_set_period()
181 left += period; in xtensa_perf_event_set_period()
186 if (left > XTENSA_PMU_COUNTER_MAX) in xtensa_perf_event_set_period()
187 left = XTENSA_PMU_COUNTER_MAX; in xtensa_perf_event_set_period()
190 local64_set(&hwc->prev_count, -left); in xtensa_perf_event_set_period()
[all …]
/arch/powerpc/perf/
A Dcore-fsl-emb.c311 if (left < 0x80000000L) in fsl_emb_pmu_add()
312 val = 0x80000000L - left; in fsl_emb_pmu_add()
378 s64 left; in fsl_emb_pmu_start() local
395 if (left < 0x80000000L) in fsl_emb_pmu_start()
396 val = 0x80000000L - left; in fsl_emb_pmu_start()
594 s64 prev, delta, left; in record_and_restart() local
614 if (left <= 0) { in record_and_restart()
615 left += period; in record_and_restart()
616 if (left <= 0) in record_and_restart()
617 left = period; in record_and_restart()
[all …]
/arch/csky/mm/
A Ddma-mapping.c20 size_t left = size; in cache_op() local
23 size_t len = left; in cache_op()
43 left -= len; in cache_op()
44 } while (left); in cache_op()
/arch/s390/include/asm/
A Didals.h221 size_t left; in idal_buffer_to_user() local
228 left = copy_to_user(to, vaddr, IDA_BLOCK_SIZE); in idal_buffer_to_user()
229 if (left) in idal_buffer_to_user()
230 return left + count - IDA_BLOCK_SIZE; in idal_buffer_to_user()
243 size_t left; in idal_buffer_from_user() local
250 left = copy_from_user(vaddr, from, IDA_BLOCK_SIZE); in idal_buffer_from_user()
251 if (left) in idal_buffer_from_user()
252 return left + count - IDA_BLOCK_SIZE; in idal_buffer_from_user()
/arch/mips/mm/
A Ddma-noncoherent.c100 size_t left = size; in dma_sync_phys() local
103 size_t len = left; in dma_sync_phys()
120 left -= len; in dma_sync_phys()
121 } while (left); in dma_sync_phys()
/arch/arm/boot/dts/broadcom/
A Dbcm958625-meraki-kingpin.dtsi28 /* green:lan1-left */
44 /* green:lan2-left */
60 /* green:lan3-left */
76 /* green:lan4-left */
92 /* green:wan-left */
/arch/sparc/kernel/
A Dvisemul.c251 u16 left, right; member
297 u16 left, right; in edge() local
311 left = edge8_tab[rs1 & 0x7].left; in edge()
316 left = edge8_tab_l[rs1 & 0x7].left; in edge()
322 left = edge16_tab[(rs1 >> 1) & 0x3].left; in edge()
328 left = edge16_tab_l[(rs1 >> 1) & 0x3].left; in edge()
334 left = edge32_tab[(rs1 >> 2) & 0x1].left; in edge()
340 left = edge32_tab_l[(rs1 >> 2) & 0x1].left; in edge()
346 rd_val = right & left; in edge()
348 rd_val = left; in edge()
/arch/alpha/kernel/
A Dperf_event.c255 long left = local64_read(&hwc->period_left); in alpha_perf_event_set_period() local
259 if (unlikely(left <= -period)) { in alpha_perf_event_set_period()
260 left = period; in alpha_perf_event_set_period()
261 local64_set(&hwc->period_left, left); in alpha_perf_event_set_period()
266 if (unlikely(left <= 0)) { in alpha_perf_event_set_period()
267 left += period; in alpha_perf_event_set_period()
268 local64_set(&hwc->period_left, left); in alpha_perf_event_set_period()
277 if (unlikely(left < alpha_pmu->pmc_left[idx])) in alpha_perf_event_set_period()
278 left = alpha_pmu->pmc_left[idx]; in alpha_perf_event_set_period()
281 left = alpha_pmu->pmc_max_period[idx]; in alpha_perf_event_set_period()
[all …]
/arch/loongarch/kernel/
A Dperf_event.c304 u64 left = local64_read(&hwc->period_left); in loongarch_pmu_event_set_period() local
307 if (unlikely((left + period) & (1ULL << 63))) { in loongarch_pmu_event_set_period()
309 left = period; in loongarch_pmu_event_set_period()
310 local64_set(&hwc->period_left, left); in loongarch_pmu_event_set_period()
313 } else if (unlikely((left + period) <= period)) { in loongarch_pmu_event_set_period()
315 left += period; in loongarch_pmu_event_set_period()
316 local64_set(&hwc->period_left, left); in loongarch_pmu_event_set_period()
321 if (left > loongarch_pmu.max_period) { in loongarch_pmu_event_set_period()
322 left = loongarch_pmu.max_period; in loongarch_pmu_event_set_period()
323 local64_set(&hwc->period_left, left); in loongarch_pmu_event_set_period()
[all …]
/arch/alpha/lib/
A Dev6-clear_user.S74 addq $0, $4, $0 # .. E .. .. : bytes left -= 8 - misalignment
152 subq $0, 168, $5 # E : U L L U : two trips through the loop left?
171 # zero to 16 quadwords left to store, plus any trailing bytes
172 # $1 is the number of quadwords left to go.
190 # We have an unknown number of bytes left to go.
197 # $0 contains the number of bytes left to copy (0..31)
/arch/sh/drivers/
A Dplatform_early.c219 int left = 0; in sh_early_platform_driver_probe_id() local
228 left = 1; in sh_early_platform_driver_probe_id()
232 left += sh_early_platform_left(epdrv, id); in sh_early_platform_driver_probe_id()
289 if (left) in sh_early_platform_driver_probe_id()
/arch/arc/kernel/
A Dperf_event.c408 s64 left = local64_read(&hwc->period_left); in arc_pmu_event_set_period() local
414 if (unlikely(left <= -period)) { in arc_pmu_event_set_period()
416 left = period; in arc_pmu_event_set_period()
417 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
420 } else if (unlikely(left <= 0)) { in arc_pmu_event_set_period()
422 left += period; in arc_pmu_event_set_period()
423 local64_set(&hwc->period_left, left); in arc_pmu_event_set_period()
428 if (left > arc_pmu->max_period) in arc_pmu_event_set_period()
429 left = arc_pmu->max_period; in arc_pmu_event_set_period()
431 value = arc_pmu->max_period - left; in arc_pmu_event_set_period()
/arch/arm/boot/dts/allwinner/
A Dsun4i-a10-inet9f-rev03.dts66 event-left-joystick-left {
74 event-left-joystick-right {
82 event-left-joystick-up {
90 event-left-joystick-down {
98 event-right-joystick-left {
130 event-dpad-left {
198 event-top-left {
/arch/arm64/boot/dts/qcom/
A Dmsm8916-wingtech-wt86528.dts12 /* left AW8736 */
13 speaker_amp_left: audio-amplifier-left {
138 spk_ext_pa_left_default: spk-ext-pa-left-default-state {
/arch/x86/boot/compressed/
A Defi.h108 static inline int efi_guidcmp (efi_guid_t left, efi_guid_t right) in efi_guidcmp() argument
110 return memcmp(&left, &right, sizeof (efi_guid_t)); in efi_guidcmp()
/arch/x86/events/amd/
A Dibs.c111 if (unlikely(left <= -period)) { in perf_event_set_period()
112 left = period; in perf_event_set_period()
118 if (unlikely(left < (s64)min)) { in perf_event_set_period()
119 left += period; in perf_event_set_period()
131 if (left > max) { in perf_event_set_period()
132 left -= max; in perf_event_set_period()
133 if (left > max) in perf_event_set_period()
134 left = max; in perf_event_set_period()
135 else if (left < min) in perf_event_set_period()
136 left = min; in perf_event_set_period()
[all …]
/arch/csky/kernel/
A Dperf_event.c881 s64 left = local64_read(&hwc->period_left); in csky_pmu_event_set_period() local
885 if (unlikely(left <= -period)) { in csky_pmu_event_set_period()
886 left = period; in csky_pmu_event_set_period()
887 local64_set(&hwc->period_left, left); in csky_pmu_event_set_period()
892 if (unlikely(left <= 0)) { in csky_pmu_event_set_period()
893 left += period; in csky_pmu_event_set_period()
894 local64_set(&hwc->period_left, left); in csky_pmu_event_set_period()
899 if (left > (s64)csky_pmu.max_period) in csky_pmu_event_set_period()
900 left = csky_pmu.max_period; in csky_pmu_event_set_period()
906 local64_set(&hwc->prev_count, (u64)(-left)); in csky_pmu_event_set_period()
[all …]

Completed in 42 milliseconds

1234567