Symbol: Bitfield_deposit
sys/arch/hppa/spmath/float.h
137
#define Deposit_dsign(object,value) Bitfield_deposit(value,0,1,object)
sys/arch/hppa/spmath/float.h
138
#define Deposit_dexponent(object,value) Bitfield_deposit(value,1,11,object)
sys/arch/hppa/spmath/float.h
139
#define Deposit_dmantissap1(object,value) Bitfield_deposit(value,12,20,object)
sys/arch/hppa/spmath/float.h
140
#define Deposit_dhigh2mantissa(object,value) Bitfield_deposit(value,12,2,object)
sys/arch/hppa/spmath/float.h
142
Bitfield_deposit(value,1,31,object)
sys/arch/hppa/spmath/float.h
143
#define Deposit_dsignexponent(object,value) Bitfield_deposit(value,0,12,object)
sys/arch/hppa/spmath/float.h
144
#define Deposit_dlowp1(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
145
#define Deposit_dhigh4p1(object,value) Bitfield_deposit(value,0,4,object)
sys/arch/hppa/spmath/float.h
170
#define Deposit_dlowp2(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
417
#define Set_exceptiontype(object,value) Bitfield_deposit(value, 0, 6,object)
sys/arch/hppa/spmath/float.h
418
#define Set_parmfield(object,value) Bitfield_deposit(value, 23, 3,object)
sys/arch/hppa/spmath/float.h
448
Bitfield_deposit(value,21,2,Fpustatus_register)
sys/arch/hppa/spmath/float.h
458
#define Set_invalidflag() Bitfield_deposit(1,0,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
459
#define Set_divisionbyzeroflag() Bitfield_deposit(1,1,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
460
#define Set_overflowflag() Bitfield_deposit(1,2,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
461
#define Set_underflowflag() Bitfield_deposit(1,3,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
462
#define Set_inexactflag() Bitfield_deposit(1,4,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
464
#define Clear_all_flags() Bitfield_deposit(0,0,5,Fpustatus_register)
sys/arch/hppa/spmath/float.h
467
#define Set_tbit() Bitfield_deposit(1,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
468
#define Clear_tbit() Bitfield_deposit(0,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
474
Bitfield_deposit(Bitfield_extract(10,10,Fpustatus_register),11,10,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
475
Bitfield_deposit(Bitfield_extract(5,1,Fpustatus_register),10,1,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
476
Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
478
#define Set_status_cbit(value) Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
501
#define Ext_setone_low(extent) Bitfield_deposit(1,31,1,extent)
sys/arch/hppa/spmath/float.h
84
#define Deposit_ssign(object,value) Bitfield_deposit(value,0,1,object)
sys/arch/hppa/spmath/float.h
85
#define Deposit_sexponent(object,value) Bitfield_deposit(value,1,8,object)
sys/arch/hppa/spmath/float.h
86
#define Deposit_smantissa(object,value) Bitfield_deposit(value,9,23,object)
sys/arch/hppa/spmath/float.h
87
#define Deposit_shigh2mantissa(object,value) Bitfield_deposit(value,9,2,object)
sys/arch/hppa/spmath/float.h
89
Bitfield_deposit(value,1,31,object)
sys/arch/hppa/spmath/float.h
90
#define Deposit_ssignexponent(object,value) Bitfield_deposit(value,0,9,object)
sys/arch/hppa/spmath/float.h
91
#define Deposit_slow(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
92
#define Deposit_shigh4(object,value) Bitfield_deposit(value,0,4,object)