Searched refs:srcdst (Results 1 - 9 of 9) sorted by relevance
/kernel/linux/linux-5.10/arch/parisc/math-emu/ |
H A D | sgl_float.h | 34 #define Sgl_clear_exponent_set_hidden(srcdst) Deposit_sexponent(srcdst,1) 35 #define Sgl_clear_signexponent_set_hidden(srcdst) \ 36 Deposit_ssignexponent(srcdst,1) 37 #define Sgl_clear_sign(srcdst) Sall(srcdst) &= ~((unsigned int)1<<31) 38 #define Sgl_clear_signexponent(srcdst) Sall(srcdst) &= 0x007fffff 41 #define Sgl_rightshift(srcdst, varamount) \ 42 Sall(srcdst) >> [all...] |
H A D | dbl_float.h | 35 #define Dbl_clear_exponent_set_hidden(srcdst) Deposit_dexponent(srcdst,1) 36 #define Dbl_clear_signexponent_set_hidden(srcdst) \ 37 Deposit_dsignexponent(srcdst,1) 38 #define Dbl_clear_sign(srcdst) Dallp1(srcdst) &= ~((unsigned int)1<<31) 39 #define Dbl_clear_signexponent(srcdst) \ 40 Dallp1(srcdst) &= Dmantissap1((unsigned int)-1) 46 * VSHD srcdst.high,srcdst [all...] |
/kernel/linux/linux-6.6/arch/parisc/math-emu/ |
H A D | sgl_float.h | 34 #define Sgl_clear_exponent_set_hidden(srcdst) Deposit_sexponent(srcdst,1) 35 #define Sgl_clear_signexponent_set_hidden(srcdst) \ 36 Deposit_ssignexponent(srcdst,1) 37 #define Sgl_clear_sign(srcdst) Sall(srcdst) &= ~((unsigned int)1<<31) 38 #define Sgl_clear_signexponent(srcdst) Sall(srcdst) &= 0x007fffff 41 #define Sgl_rightshift(srcdst, varamount) \ 42 Sall(srcdst) >> [all...] |
H A D | dbl_float.h | 35 #define Dbl_clear_exponent_set_hidden(srcdst) Deposit_dexponent(srcdst,1) 36 #define Dbl_clear_signexponent_set_hidden(srcdst) \ 37 Deposit_dsignexponent(srcdst,1) 38 #define Dbl_clear_sign(srcdst) Dallp1(srcdst) &= ~((unsigned int)1<<31) 39 #define Dbl_clear_signexponent(srcdst) \ 40 Dallp1(srcdst) &= Dmantissap1((unsigned int)-1) 46 * VSHD srcdst.high,srcdst [all...] |
/kernel/linux/linux-6.6/drivers/mmc/host/ |
H A D | sunplus-mmc.c | 403 u32 value, srcdst; in spmmc_prepare_data() local 413 srcdst = readl(host->base + SPMMC_CARD_MEDIATYPE_SRCDST_REG); in spmmc_prepare_data() 414 srcdst &= ~SPMMC_DMA_SOURCE; in spmmc_prepare_data() 415 srcdst |= FIELD_PREP(SPMMC_DMA_SOURCE, 0x2); in spmmc_prepare_data() 416 srcdst &= ~SPMMC_DMA_DESTINATION; in spmmc_prepare_data() 417 srcdst |= FIELD_PREP(SPMMC_DMA_DESTINATION, 0x1); in spmmc_prepare_data() 418 writel(srcdst, host->base + SPMMC_CARD_MEDIATYPE_SRCDST_REG); in spmmc_prepare_data() 422 srcdst = readl(host->base + SPMMC_CARD_MEDIATYPE_SRCDST_REG); in spmmc_prepare_data() 423 srcdst &= ~SPMMC_DMA_SOURCE; in spmmc_prepare_data() 424 srcdst | in spmmc_prepare_data() [all...] |
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.cc | 1992 unsigned srcdst = instr->Rt(); 2031 set_wreg_no_log(srcdst, MemoryRead<uint8_t>(address)); 2034 set_wreg_no_log(srcdst, MemoryRead<uint16_t>(address)); 2037 set_wreg_no_log(srcdst, MemoryRead<uint32_t>(address)); 2040 set_xreg_no_log(srcdst, MemoryRead<uint64_t>(address)); 2043 set_wreg_no_log(srcdst, MemoryRead<int8_t>(address)); 2046 set_wreg_no_log(srcdst, MemoryRead<int16_t>(address)); 2049 set_xreg_no_log(srcdst, MemoryRead<int8_t>(address)); 2052 set_xreg_no_log(srcdst, MemoryRead<int16_t>(address)); 2055 set_xreg_no_log(srcdst, MemoryRea [all...] |
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 4281 unsigned srcdst = instr->GetRt(); in Simulator() local 4289 WriteWRegister(srcdst, MemRead<uint8_t>(address), NoRegLog); in Simulator() 4293 WriteWRegister(srcdst, MemRead<uint16_t>(address), NoRegLog); in Simulator() 4297 WriteWRegister(srcdst, MemRead<uint32_t>(address), NoRegLog); in Simulator() 4301 WriteXRegister(srcdst, MemRead<uint64_t>(address), NoRegLog); in Simulator() 4305 WriteWRegister(srcdst, MemRead<int8_t>(address), NoRegLog); in Simulator() 4309 WriteWRegister(srcdst, MemRead<int16_t>(address), NoRegLog); in Simulator() 4313 WriteXRegister(srcdst, MemRead<int8_t>(address), NoRegLog); in Simulator() 4317 WriteXRegister(srcdst, MemRead<int16_t>(address), NoRegLog); in Simulator() 4321 WriteXRegister(srcdst, MemRea in Simulator() [all...] |
H A D | logic-aarch64.cc | 7741 // the 2x2 32-bit result to the matrix in srcdst, and write back to srcdst. 7761 LogicVRegister srcdst, 7778 int64_t sum = srcdst.Int(vform_dst, dstidx); 7792 srcdst.SetIntArray(vform_dst, result); 7793 return srcdst; 7797 // result to the matrix in srcdst, and write back to srcdst. 7812 LogicVRegister srcdst, 7826 T sum = FPAdd(srcdst [all...] |
H A D | simulator-aarch64.h | 4408 LogicVRegister srcdst, 4412 LogicVRegister srcdst,
|
Completed in 30 milliseconds