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:ZEROPAD
(Results
1 - 11
of
11
) sorted by relevance
/kernel/linux/linux-5.10/arch/alpha/boot/
H
A
D
stdio.c
35
#define
ZEROPAD
1 /* pad with zero */
macro
52
type &= ~
ZEROPAD
;
in number()
55
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
85
if (!(type&(
ZEROPAD
+LEFT)))
in number()
143
case '0': flags |=
ZEROPAD
; goto repeat;
in vsprintf()
218
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-5.10/arch/powerpc/boot/
H
A
D
stdio.c
71
#define
ZEROPAD
1 /* pad with zero */
macro
88
type &= ~
ZEROPAD
;
in number()
91
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
121
if (!(type&(
ZEROPAD
+LEFT)))
in number()
179
case '0': flags |=
ZEROPAD
; goto repeat;
in vsprintf()
254
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-5.10/arch/x86/boot/
H
A
D
printf.c
27
#define
ZEROPAD
1 /* pad with zero */
macro
55
type &= ~
ZEROPAD
;
in number()
58
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
88
if (!(type & (
ZEROPAD
+ LEFT)))
in number()
152
flags |=
ZEROPAD
;
in vsprintf()
221
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-6.6/arch/powerpc/boot/
H
A
D
stdio.c
71
#define
ZEROPAD
1 /* pad with zero */
macro
88
type &= ~
ZEROPAD
;
in number()
91
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
121
if (!(type&(
ZEROPAD
+LEFT)))
in number()
179
case '0': flags |=
ZEROPAD
; goto repeat;
in vsprintf()
254
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-6.6/arch/alpha/boot/
H
A
D
stdio.c
35
#define
ZEROPAD
1 /* pad with zero */
macro
52
type &= ~
ZEROPAD
;
in number()
55
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
85
if (!(type&(
ZEROPAD
+LEFT)))
in number()
143
case '0': flags |=
ZEROPAD
; goto repeat;
in vsprintf()
218
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-6.6/arch/x86/boot/
H
A
D
printf.c
27
#define
ZEROPAD
1 /* pad with zero */
macro
55
type &= ~
ZEROPAD
;
in number()
58
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
88
if (!(type & (
ZEROPAD
+ LEFT)))
in number()
152
flags |=
ZEROPAD
;
in vsprintf()
221
flags |=
ZEROPAD
;
in vsprintf()
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/lib/
H
A
D
guest_sprintf.c
26
#define
ZEROPAD
1 /* pad with zero */
macro
59
type &= ~
ZEROPAD
;
in number()
62
c = (type &
ZEROPAD
) ? '0' : ' ';
in number()
92
if (!(type & (
ZEROPAD
+ LEFT)))
in number()
163
flags |=
ZEROPAD
;
in guest_vsnprintf()
240
flags |= SPECIAL | SMALL |
ZEROPAD
;
in guest_vsnprintf()
/kernel/linux/linux-5.10/drivers/firmware/efi/libstub/
H
A
D
vsprintf.c
143
#define
ZEROPAD
1 /* pad with zero */
macro
172
flags |=
ZEROPAD
;
in get_flags()
354
flags &= ~
ZEROPAD
;
in vsnprintf()
362
flags &= ~
ZEROPAD
;
in vsnprintf()
483
if ((flags &
ZEROPAD
) && field_width > precision)
in vsnprintf()
/kernel/linux/linux-6.6/drivers/firmware/efi/libstub/
H
A
D
vsprintf.c
143
#define
ZEROPAD
1 /* pad with zero */
macro
172
flags |=
ZEROPAD
;
in get_flags()
354
flags &= ~
ZEROPAD
;
in vsnprintf()
362
flags &= ~
ZEROPAD
;
in vsnprintf()
483
if ((flags &
ZEROPAD
) && field_width > precision)
in vsnprintf()
/kernel/linux/linux-5.10/lib/
H
A
D
vsprintf.c
406
#define
ZEROPAD
16 /* pad with zero, must be 16 == '0' - ' ' */
macro
410
static_assert(
ZEROPAD
== ('0' - ' '));
465
spec.flags &= ~
ZEROPAD
;
in number()
510
if (!(spec.flags & (
ZEROPAD
| LEFT))) {
in number()
538
char c = ' ' + (spec.flags &
ZEROPAD
);
in number()
575
spec.flags = SPECIAL | SMALL |
ZEROPAD
;
in special_hex_number()
730
spec.flags |=
ZEROPAD
;
in pointer_string()
1030
.flags =
ZEROPAD
,
1037
.flags =
ZEROPAD
,
1055
.flags = SPECIAL | SMALL |
ZEROPAD
,
in resource_string()
[all...]
/kernel/linux/linux-6.6/lib/
H
A
D
vsprintf.c
413
#define
ZEROPAD
16 /* pad with zero, must be 16 == '0' - ' ' */
macro
418
static_assert(
ZEROPAD
== ('0' - ' '));
473
spec.flags &= ~
ZEROPAD
;
in number()
518
if (!(spec.flags & (
ZEROPAD
| LEFT))) {
in number()
546
char c = ' ' + (spec.flags &
ZEROPAD
);
in number()
583
spec.flags = SPECIAL | SMALL |
ZEROPAD
;
in special_hex_number()
738
spec.flags |=
ZEROPAD
;
in pointer_string()
1031
.flags =
ZEROPAD
,
1038
.flags =
ZEROPAD
,
1056
.flags = SPECIAL | SMALL |
ZEROPAD
,
in resource_string()
[all...]
Completed in 10 milliseconds