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:digit
(Results
1 - 2
of
2
) sorted by relevance
/device/soc/rockchip/rk2206/sdk_liteos/platform/system/
H
A
D
system.c
215
char
digit
;
in pre_vsscanf()
local
356
digit
= *str;
in pre_vsscanf()
357
if (is_sign &&
digit
== '-') {
in pre_vsscanf()
358
digit
= *(str + 1);
in pre_vsscanf()
360
if (!
digit
in pre_vsscanf()
361
|| (base == BASE_16 && !isxdigit(
digit
))
in pre_vsscanf()
362
|| (base == BASE_10 && !isdigit(
digit
))
in pre_vsscanf()
363
|| (base == BASE_8 && (!isdigit(
digit
) ||
digit
> '7'))
in pre_vsscanf()
364
|| (base == BASE_0 && !isdigit(
digit
))) {
in pre_vsscanf()
[all...]
H
A
D
printf.c
185
// internal test if char is a
digit
(0-9)
186
// \return true if char is a
digit
316
const char
digit
= (char)(value % base);
in _ntoa_long()
local
317
buf[len++] =
digit
< num_count ? '0' +
digit
: (flags & FLAGS_UPPERCASE ? 'A' : 'a') +
digit
- num_count;
in _ntoa_long()
348
char
digit
;
in _ntoa_long_long()
local
351
digit
= 0;
in _ntoa_long_long()
353
digit
= (char)(value % base);
in _ntoa_long_long()
355
buf[len++] =
digit
< num_coun
in _ntoa_long_long()
[all...]
Completed in 2 milliseconds