Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:time_in_sec
(Results
1 - 2
of
2
) sorted by relevance
/third_party/lame/frontend/
H
A
D
brhist.c
176
float
time_in_sec
= 0;
in progress_line()
local
185
time_in_sec
= (float)(full - frames);
in progress_line()
186
time_in_sec
*= fsize;
in progress_line()
187
time_in_sec
/= srate;
in progress_line()
189
hour = (unsigned int)(
time_in_sec
/ 3600);
in progress_line()
190
time_in_sec
-= hour * 3600;
in progress_line()
191
min = (unsigned int)(
time_in_sec
/ 60);
in progress_line()
192
time_in_sec
-= min * 60;
in progress_line()
193
sec = (unsigned int)
time_in_sec
;
in progress_line()
H
A
D
timestatus.c
102
const unsigned long
time_in_sec
= (unsigned long)x;
in ts_time_decompose()
local
103
const unsigned long hour =
time_in_sec
/ 3600;
in ts_time_decompose()
104
const unsigned int min =
time_in_sec
/ 60 % 60;
in ts_time_decompose()
105
const unsigned int sec =
time_in_sec
% 60;
in ts_time_decompose()
Completed in 2 milliseconds