Home
last modified time | relevance | path

Searched refs:timedata (Results 1 – 6 of 6) sorted by relevance

/third_party/libsnd/programs/
Dsndfile-metadata-set.c51 static void read_localtime (struct tm * timedata) ;
57 struct tm timedata ; in main() local
74 read_localtime (&timedata) ; in main()
129 …{ snprintf (time, sizeof (time), "%02d:%02d:%02d", timedata.tm_hour, timedata.tm_min, timedata.tm_… in main()
132 …snprintf (date, sizeof (date), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, tim… in main()
138 …{ snprintf (time, sizeof (time), "%02d:%02d:%02d", timedata.tm_hour, timedata.tm_min, timedata.tm_… in main()
144 …snprintf (date, sizeof (date), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, tim… in main()
150 …snprintf (date, sizeof (date), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, tim… in main()
276 read_localtime (struct tm * timedata) in read_localtime() argument
280 memset (timedata, 0, sizeof (struct tm)) ; in read_localtime()
[all …]
/third_party/icu/icu4j/perf-tests/perldriver/
DOutput.pm326 my @timedata = @{shift(@_)};
355 for $j ( 0 .. $#timedata ) {
356 …my $perOperation = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operat…
361 my $baseLinePO = $timedata[0]->divideByScalar($iterPerPass[0]*$noopers[0]);
362 for $j ( 1 .. $#timedata ) {
363 …my $perOperation = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operat…
369 for $j ( 0 .. $#timedata ) {
373 for $j ( 0 .. $#timedata ) {
374 … my $perEvent = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noevents[$j]); # time per event
378 my $baseLinePO = $timedata[0]->divideByScalar($iterPerPass[0]*$noevents[0]);
[all …]
DPerfFramework4j.pm119 my @timedata;
172 push(@timedata, $ds);
/third_party/icu/icu4c/source/test/perf/perldriver/
DOutput.pm326 my @timedata = @{shift(@_)};
355 for $j ( 0 .. $#timedata ) {
356 …my $perOperation = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operat…
361 my $baseLinePO = $timedata[0]->divideByScalar($iterPerPass[0]*$noopers[0]);
362 for $j ( 1 .. $#timedata ) {
363 …my $perOperation = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operat…
369 for $j ( 0 .. $#timedata ) {
373 for $j ( 0 .. $#timedata ) {
374 … my $perEvent = $timedata[$j]->divideByScalar($iterPerPass[$j]*$noevents[$j]); # time per event
378 my $baseLinePO = $timedata[0]->divideByScalar($iterPerPass[0]*$noevents[0]);
[all …]
DPerfFramework.pm115 my @timedata;
149 push(@timedata, $ds);
152 outputRow($i, \@iterPerPass, \@noopers, \@timedata, \@noevents);
/third_party/libsnd/src/
Dcommon.c1395 struct tm timedata, *tmptr ; in psf_get_date_str() local
1401 tmptr = gmtime_r (&current, &timedata) ; in psf_get_date_str()
1405 memcpy (&timedata, tmptr, sizeof (timedata)) ; in psf_get_date_str()
1412 1900 + timedata.tm_year, timedata.tm_mon, timedata.tm_mday, in psf_get_date_str()
1413 timedata.tm_hour, timedata.tm_min, timedata.tm_sec) ; in psf_get_date_str()