Home
last modified time | relevance | path

Searched refs:tv (Results 1 – 25 of 32) sorted by relevance

12

/trunk/main/helpcontent2/helpers/
H A Dupdate_tree.pl213 for $tv(@treeviews) {
214 print "\nProcessing $tv\n";
215 @lines = &readtv("$tree_src/$tv");
282 my $tmpname_template=$tv."_XXXXX";
296 unlink "$tree_dest\\$lng\\$tv" ;
297 …mv $treetmpfile , "$tree_dest\\$lng\\$tv" or &terminate("Cannot mv $treetmpfile to $tree_dest\\$ln…
301 unlink "$tree_dest/$lng/$tv" ;
302 …my $ret=mv $treetmpfile , "$tree_dest/$lng/$tv$inpath" or &terminate("Cannot write to $tree_dest/$…
303 …my $ret=mv "$tree_dest/$lng/$tv$inpath" , "$tree_dest/$lng/$tv" or &terminate("Cannot write to $tr…
/trunk/main/sal/rtl/source/
H A Drandom.c123 TimeValue tv; in __rtl_random_initPool() local
142 osl_getSystemTime (&tv); in __rtl_random_initPool()
143 tv.Seconds = RTL_RANDOM_RNG_2(tv.Seconds); in __rtl_random_initPool()
144 tv.Nanosec = RTL_RANDOM_RNG_2(tv.Nanosec); in __rtl_random_initPool()
145 __rtl_random_seedPool (pImpl, (sal_uInt8*)&tv, sizeof(tv)); in __rtl_random_initPool()
148 rd.m_nY = (sal_Int16)(((tv.Seconds >> 1) << 1) + 1); in __rtl_random_initPool()
149 rd.m_nZ = (sal_Int16)(((tv.Nanosec >> 1) << 1) + 1); in __rtl_random_initPool()
/trunk/main/sal/osl/w32/
H A Dsocket.cxx1290 struct timeval tv; in osl_connectSocketTo() local
1350 tv.tv_sec= pTimeout->Seconds; in osl_connectSocketTo()
1351 tv.tv_usec= pTimeout->Nanosec / 1000L; in osl_connectSocketTo()
1358 &tv); in osl_connectSocketTo()
1629 struct timeval tv; in osl_isReceiveReady() local
1639 tv.tv_sec = pTimeout->Seconds; in osl_isReceiveReady()
1640 tv.tv_usec = pTimeout->Nanosec / 1000L; in osl_isReceiveReady()
1647 (pTimeout) ? &tv : 0)==1); /* use timeout? */ in osl_isReceiveReady()
1658 struct timeval tv; in osl_isSendReady() local
1668 tv.tv_sec = pTimeout->Seconds; in osl_isSendReady()
[all …]
/trunk/main/store/workben/
H A Dt_store.cxx99 OTime tv; in getSystemTime() local
100 osl_getSystemTime (&tv); in getSystemTime()
101 return tv; in getSystemTime()
574 TimeValue tv; in main() local
575 tv.Seconds = 300; in main()
576 tv.Nanosec = 0; in main()
577 osl_waitThread (&tv); in main()
/trunk/main/extensions/source/update/check/
H A Dupdatecheck.cxx505 TimeValue tv = { 10, 0 }; in run() local
508 aResult = m_aCondition.wait(&tv); in run()
558 tv.Seconds = static_cast< sal_Int32 > (next - systime.Seconds); in run()
559 aResult = m_aCondition.wait(&tv); in run()
580 tv.Seconds = nRetryInterval[n-1]; in run()
581 aResult = m_aCondition.wait(&tv); in run()
681 TimeValue tv; in run() local
682 tv.Seconds = 15; in run()
692 tv.Seconds = nRetryInterval[n-1]; in run()
694 m_aCondition.wait(&tv); in run()
[all …]
/trunk/main/svtools/source/filter/
H A Dsgvspln.cxx825 double* tv; in Spline2Poly() local
837 bOk=CalcSpline(rSpln,Periodic,n,ax,ay,bx,by,cx,cy,dx,dy,tv); in Spline2Poly()
845 t=tv[i]+Step; in Spline2Poly()
848 bEnde=t>=tv[i+1]; in Spline2Poly()
849 if (bEnde) t=tv[i+1]; in Spline2Poly()
850 dt1=t-tv[i]; dt2=dt1*dt1; dt3=dt2*dt1; in Spline2Poly()
873 delete[] tv; in Spline2Poly()
/trunk/main/sal/osl/unx/
H A Dsocket.c2042 struct timeval tv; in osl_connectSocketTo() local
2112 tv.tv_sec= pTimeout->Seconds; in osl_connectSocketTo()
2113 tv.tv_usec= pTimeout->Nanosec / 1000L; in osl_connectSocketTo()
2121 (pTimeout) ? &tv : 0); in osl_connectSocketTo()
2571 struct timeval tv; in __osl_socket_poll() local
2586 tv.tv_sec = pTimeout->Seconds; in __osl_socket_poll()
2587 tv.tv_usec = pTimeout->Nanosec / 1000; in __osl_socket_poll()
2595 (pTimeout) ? &tv : NULL); in __osl_socket_poll()
3030 struct timeval tv; in osl_demultiplexSocketEvents() local
3038 tv.tv_sec = pTimeout->Seconds; in osl_demultiplexSocketEvents()
[all …]
H A Dtempfile.c106 struct timeval tv; in osl_gen_random_name_impl_() local
110 gettimeofday(&tv, NULL); in osl_gen_random_name_impl_()
112 value += ((uint64_t)tv.tv_usec << 16) ^ tv.tv_sec ^ getpid(); in osl_gen_random_name_impl_()
/trunk/main/sal/osl/os2/
H A Dtempfile.c95 struct timeval tv; in osl_gen_random_name_impl_() local
99 gettimeofday(&tv, NULL); in osl_gen_random_name_impl_()
101 value += ((uint64_t)tv.tv_usec << 16) ^ tv.tv_sec ^ getpid(); in osl_gen_random_name_impl_()
H A Dsocket.c2065 struct timeval tv; in osl_connectSocketTo() local
2135 tv.tv_sec= pTimeout->Seconds; in osl_connectSocketTo()
2136 tv.tv_usec= pTimeout->Nanosec / 1000L; in osl_connectSocketTo()
2144 (pTimeout) ? &tv : 0); in osl_connectSocketTo()
2606 struct timeval tv; in __osl_socket_poll() local
2618 tv.tv_sec = pTimeout->Seconds; in __osl_socket_poll()
2619 tv.tv_usec = pTimeout->Nanosec / 1000; in __osl_socket_poll()
2627 (pTimeout) ? &tv : NULL); in __osl_socket_poll()
3060 struct timeval tv; in osl_demultiplexSocketEvents() local
3068 tv.tv_sec = pTimeout->Seconds; in osl_demultiplexSocketEvents()
[all …]
/trunk/main/tools/source/datetime/
H A Dttime.cxx400 timeval tv; in GetSystemTicks()
401 gettimeofday (&tv, 0); in GetSystemTicks()
403 double fTicks = tv.tv_sec; in GetSystemTicks()
405 fTicks += ((tv.tv_usec + 500) / 1000); in GetSystemTicks()
/trunk/main/l10ntools/source/
H A Dexport2.cxx670 TimeValue tv; in getRandomName() local
674 osl_getSystemTime( &tv ); in getRandomName()
678 value += ((sal_uInt64) ( tv.Nanosec / 1000 ) << 16) ^ ( tv.Nanosec / 1000 ) ^ proInfo.Ident; in getRandomName()
/trunk/main/extensions/source/scanner/
H A Dsane.cxx722 struct timeval tv; in Start() local
726 tv.tv_sec = 5; in Start()
727 tv.tv_usec = 0; in Start()
728 if( select( fd+1, &fdset, NULL, NULL, &tv ) == 0 ) in Start()
/trunk/main/canvas/source/tools/
H A Dsurface.cxx440 … const double tv(((aPoint.getY()-aSurfaceClipRect.getMinY())*rUV.getHeight()/h)+rUV.getMinY()); in drawWithClip() local
442 vertex.v=static_cast<float>(tv); in drawWithClip()
/trunk/main/ucb/source/ucp/gio/
H A Dgio_content.cxx384 TimeValue tv; in getDateFromUnix() local
385 tv.Nanosec = 0; in getDateFromUnix()
386 tv.Seconds = t; in getDateFromUnix()
389 if ( osl_getDateTimeFromTimeValue( &tv, &dt ) ) in getDateFromUnix()
/trunk/main/desktop/source/deployment/misc/
H A Ddp_misc.cxx470 TimeValue tv = { 0 /* secs */, 500000000 /* nanosecs */ }; in resolveUnoURL() local
471 ::osl::Thread::wait( tv ); in resolveUnoURL()
/trunk/main/cppuhelper/source/
H A Dbootstrap.cxx647 TimeValue tv = { 0 /* secs */, 500000000 /* nanosecs */ }; in bootstrap() local
648 ::osl::Thread::wait( tv ); in bootstrap()
/trunk/main/ucb/source/ucp/gvfs/
H A Dgvfs_content.cxx564 TimeValue tv; in getDateFromUnix() local
565 tv.Nanosec = 0; in getDateFromUnix()
566 tv.Seconds = t; in getDateFromUnix()
569 if ( osl_getDateTimeFromTimeValue( &tv, &dt ) ) in getDateFromUnix()
/trunk/main/libtextcat/data/new_fingerprints/lm/
H A Dsanskrit.lm245 tv 130
H A Dslovenian.lm250 tv 62
H A Dlatvian.lm362 tv 123
H A Dcroatian.lm279 tv 180
H A Dserbian-latin.lm244 tv 336
H A Dslovak_ascii.lm336 tv 82
/trunk/extras/l10n/source/sv/
H A Dlocalize.sdf736 …dan installerad, vilket gör att den här produkten inte kan installeras. De två produkterna är inte…
7568 …S_AUTOFMTSTRS STR_AUTOFMTREDL_CPTL_STT_WORD+1 0 sv KOrrigera två versaler i BÖrjan a…
8567 …ODE_GET_DIFF_DATE_360 1 0 sv Bestämmer antalet dagar mellan två datum baserat på 36…
8606 …_OPCODE_GET_DIFF_DATE 1 0 sv Bestämmer antalet dagar mellan två datum. …
9130 …_MAT_MULT 1 0 sv Matrismultiplikation. Bildar produkten av två matriser. …
9147 …CODE_SUM_X2MY2 1 0 sv Summerar kvadraternas differenser för två matriser. …
9152 …ONS1.SC_OPCODE_SUM_X2DY2 1 0 sv Summerar kvadratsummorna av två matriser. …
9157 …IPTIONS1.SC_OPCODE_SUM_XMY2 1 0 sv Summerar kvadraterna av två matrisers differens…
9487 … 0 sv Läge = 1 beräknar det ensidiga testet, läge =2 beräknar det tvåsidiga. …
9509 …CRIPTIONS2.SC_OPCODE_CHI_DIST 3 0 sv Värdet för vilket chi-två-fördelningen skall …
[all …]

12