Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\kernel\fpu\regset.c Create Date:2022-07-28 07:49:41
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:FPU tag word conversions.

Proto:static inline unsigned short twd_i387_to_fxsr(unsigned short twd)

Type:unsigned short

Parameter:

TypeParameterName
unsigned shorttwd
170  tmp = ~twd
171  tmp = (tmp | tmp >> 1 ) & 0x5555
173  tmp = (tmp | tmp >> 1 ) & 0x3333
174  tmp = (tmp | tmp >> 2 ) & 0x0f0f
175  tmp = (tmp | tmp >> 4 ) & 0x00ff
177  Return tmp
Caller
NameDescribe
convert_to_fxsr