Symbol: Bitfield_deposit
sys/arch/hppa/spmath/float.h
108
#define Deposit_dsign(object,value) Bitfield_deposit(value,0,1,object)
sys/arch/hppa/spmath/float.h
109
#define Deposit_dexponent(object,value) Bitfield_deposit(value,1,11,object)
sys/arch/hppa/spmath/float.h
110
#define Deposit_dmantissap1(object,value) Bitfield_deposit(value,12,20,object)
sys/arch/hppa/spmath/float.h
111
#define Deposit_dhigh2mantissa(object,value) Bitfield_deposit(value,12,2,object)
sys/arch/hppa/spmath/float.h
113
Bitfield_deposit(value,1,31,object)
sys/arch/hppa/spmath/float.h
114
#define Deposit_dsignexponent(object,value) Bitfield_deposit(value,0,12,object)
sys/arch/hppa/spmath/float.h
115
#define Deposit_dlowp1(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
116
#define Deposit_dhigh4p1(object,value) Bitfield_deposit(value,0,4,object)
sys/arch/hppa/spmath/float.h
141
#define Deposit_dlowp2(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
390
#define Set_exceptiontype(object,value) Bitfield_deposit(value, 0, 6,object)
sys/arch/hppa/spmath/float.h
391
#define Set_parmfield(object,value) Bitfield_deposit(value, 23, 3,object)
sys/arch/hppa/spmath/float.h
421
Bitfield_deposit(value,21,2,Fpustatus_register)
sys/arch/hppa/spmath/float.h
431
#define Set_invalidflag() Bitfield_deposit(1,0,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
432
#define Set_divisionbyzeroflag() Bitfield_deposit(1,1,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
433
#define Set_overflowflag() Bitfield_deposit(1,2,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
434
#define Set_underflowflag() Bitfield_deposit(1,3,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
435
#define Set_inexactflag() Bitfield_deposit(1,4,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
437
#define Clear_all_flags() Bitfield_deposit(0,0,5,Fpustatus_register)
sys/arch/hppa/spmath/float.h
440
#define Set_tbit() Bitfield_deposit(1,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
441
#define Clear_tbit() Bitfield_deposit(0,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
447
Bitfield_deposit(Bitfield_extract(10,10,Fpustatus_register),11,10,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
448
Bitfield_deposit(Bitfield_extract(5,1,Fpustatus_register),10,1,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
449
Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
451
#define Set_status_cbit(value) Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
474
#define Ext_setone_low(extent) Bitfield_deposit(1,31,1,extent)
sys/arch/hppa/spmath/float.h
55
#define Deposit_ssign(object,value) Bitfield_deposit(value,0,1,object)
sys/arch/hppa/spmath/float.h
56
#define Deposit_sexponent(object,value) Bitfield_deposit(value,1,8,object)
sys/arch/hppa/spmath/float.h
57
#define Deposit_smantissa(object,value) Bitfield_deposit(value,9,23,object)
sys/arch/hppa/spmath/float.h
58
#define Deposit_shigh2mantissa(object,value) Bitfield_deposit(value,9,2,object)
sys/arch/hppa/spmath/float.h
60
Bitfield_deposit(value,1,31,object)
sys/arch/hppa/spmath/float.h
61
#define Deposit_ssignexponent(object,value) Bitfield_deposit(value,0,9,object)
sys/arch/hppa/spmath/float.h
62
#define Deposit_slow(object,value) Bitfield_deposit(value,31,1,object)
sys/arch/hppa/spmath/float.h
63
#define Deposit_shigh4(object,value) Bitfield_deposit(value,0,4,object)