/aoo42x/main/store/source/ |
H A D | stordata.cxx | 69 sal_uInt16 nSingle, in store_truncate_Impl() argument 91 if (nSingle == 0) in store_truncate_Impl() 108 sal_uInt16 nSingle, in store_truncate_Impl() argument 130 if ((nDouble + nSingle) == 0) in store_truncate_Impl() 148 sal_uInt16 nSingle, in store_truncate_Impl() argument 219 sal_uInt16 nSingle, in read() argument 228 if (!(nSingle < nLimit)) in read() 318 if (!(nSingle < nLimit)) in write() 418 sal_uInt16 nSingle, in truncate() argument 426 if (!(nSingle < nLimit)) in truncate() [all …]
|
H A D | stordata.hxx | 240 sal_uInt16 nSingle, 246 sal_uInt16 nSingle, 253 sal_uInt16 nSingle, 260 sal_uInt16 nSingle, 266 sal_uInt16 nSingle, 273 sal_uInt16 nSingle, 280 sal_uInt16 nSingle, 285 sal_uInt16 nSingle, 291 sal_uInt16 nSingle,
|
/aoo42x/main/basic/source/sbx/ |
H A D | sbxvalue.cxx | 686 GET( GetSingle, SbxSINGLE, float, nSingle ) in GET() 728 case SbxSINGLE: ImpPutSingle( &p->aData, rVal.nSingle ); break; in GET() 955 PUT( PutSingle, SbxSINGLE, float, nSingle ) in PUT() 1529 bRes = sal_Bool( aL.nSingle == aR.nSingle ); break; in Compare() 1531 bRes = sal_Bool( aL.nSingle != aR.nSingle ); break; in Compare() 1533 bRes = sal_Bool( aL.nSingle < aR.nSingle ); break; in Compare() 1535 bRes = sal_Bool( aL.nSingle > aR.nSingle ); break; in Compare() 1537 bRes = sal_Bool( aL.nSingle <= aR.nSingle ); break; in Compare() 1539 bRes = sal_Bool( aL.nSingle >= aR.nSingle ); break; in Compare() 1644 aData.nSingle = 0.0F; in LoadData() [all …]
|
H A D | sbxint.cxx | 83 if( p->nSingle > SbxMAXINT ) in ImpGetInteger() 87 else if( p->nSingle < SbxMININT ) in ImpGetInteger() 92 nRes = (sal_Int16) ImpRound( p->nSingle ); in ImpGetInteger() 202 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetInteger() 254 p->nSingle = n; break; in ImpPutInteger() 420 nRes = ImpDoubleToSalInt64( (double)p->nSingle ); in ImpGetInt64() 505 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetInt64() 564 p->nSingle = (float) n; break; in ImpPutInt64() 708 nRes = ImpDoubleToSalUInt64( (double)p->nSingle ); in ImpGetUInt64() 808 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetUInt64() [all …]
|
H A D | sbxulng.cxx | 70 if( p->nSingle > SbxMAXULNG ) in ImpGetULong() 74 else if( p->nSingle < 0 ) in ImpGetULong() 79 nRes = (sal_uInt32) ( p->nSingle + 0.5 ); in ImpGetULong() 175 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetULong() 207 p->nSingle = (float) n; break; in ImpPutULong()
|
H A D | sbxbyte.cxx | 114 if( p->nSingle > SbxMAXBYTE ) in ImpGetByte() 118 else if( p->nSingle < 0 ) in ImpGetByte() 123 nRes = (sal_uInt8) ImpRound( p->nSingle ); in ImpGetByte() 213 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetByte() 253 p->nSingle = n; break; in ImpPutByte()
|
H A D | sbxchar.cxx | 105 if( p->nSingle > SbxMAXCHAR ) in ImpGetChar() 109 else if( p->nSingle < SbxMINCHAR ) in ImpGetChar() 114 nRes = (xub_Unicode) ImpRound( p->nSingle ); in ImpGetChar() 201 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetChar() 238 p->nSingle = n; break; in ImpPutChar()
|
H A D | sbxlng.cxx | 62 if( p->nSingle > SbxMAXLNG ) in ImpGetLong() 66 else if( p->nSingle < SbxMINLNG ) in ImpGetLong() 71 nRes = (sal_Int32) ImpRound( p->nSingle ); in ImpGetLong() 167 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetLong() 225 p->nSingle = (float) n; break; in ImpPutLong()
|
H A D | sbxuint.cxx | 100 if( p->nSingle > SbxMAXUINT ) in ImpGetUShort() 104 else if( p->nSingle < 0 ) in ImpGetUShort() 109 nRes = (sal_uInt16) ( p->nSingle + 0.5 ); in ImpGetUShort() 199 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetUShort() 237 p->nSingle = n; break; in ImpPutUShort()
|
H A D | sbxcurr.cxx | 75 if( p->nSingle > SbxMAXCURR ) in ImpGetCurrency() 79 else if( p->nSingle < SbxMINCURR ) in ImpGetCurrency() 84 nRes = ImpDoubleToCurrency( (double)p->nSingle ); in ImpGetCurrency() 156 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetCurrency() 202 p->nSingle = (float)dVal; break; in ImpPutCurrency()
|
H A D | sbxdec.cxx | 489 if( !pnDecRes->setSingle( p->nSingle ) ) in ImpGetDecimal() 558 aTmp.nSingle = *p->pSingle; goto ref; in ImpGetDecimal() 640 p->nSingle = f; in ImpPutDecimal()
|
H A D | sbxbool.cxx | 60 nRes = p->nSingle ? SbxTRUE : SbxFALSE; break; in ImpGetBool() 179 p->nSingle = n; break; in ImpPutBool()
|
H A D | sbxdbl.cxx | 55 nRes = p->nSingle; break; in ImpGetDouble() 162 aTmp.pSingle = &p->nSingle; goto direct; in ImpPutDouble()
|
H A D | sbxsng.cxx | 56 nRes = p->nSingle; break; in ImpGetSingle() 227 p->nSingle = n; break; in ImpPutSingle()
|
H A D | sbxstr.cxx | 70 ImpPutSingle( &aTmp, p->nSingle ); break; in ImpGetString() 188 p->nSingle = ImpGetSingle( &aTmp ); break; in ImpPutString()
|
H A D | sbxdate.cxx | 61 nRes = p->nSingle; break; in ImpGetDate() 216 aTmp.pSingle = &p->nSingle; goto direct; in ImpPutDate()
|
H A D | sbxvar.cxx | 477 aTmp.nSingle = 0; in LoadData() 480 aTmp.nSingle = (float) d; in LoadData()
|
/aoo42x/main/basic/inc/basic/ |
H A D | sbxvar.hxx | 170 float nSingle; member 208 SbxValues( float _nSingle ): nSingle( _nSingle ), eType(SbxSINGLE) {} in SbxValues()
|