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:ALIGN_SIZE
(Results
1 - 10
of
10
) sorted by relevance
/third_party/skia/third_party/externals/libjpeg-turbo/
H
A
D
jmemmgr.c
76
* multiples of
ALIGN_SIZE
.
77
* By default, we define
ALIGN_SIZE
as sizeof(double). This is necessary on
80
* you can save a few bytes by making
ALIGN_SIZE
smaller.
84
* aligned well. Put "#define
ALIGN_SIZE
4" in jconfig.h if you have
88
#ifndef
ALIGN_SIZE
/* so can override from jconfig.h */
90
#define
ALIGN_SIZE
sizeof(double)
macro
92
#define
ALIGN_SIZE
32 /* Most of the SIMD instructions we support require
macro
249
* allocate
ALIGN_SIZE
-1 extra space per pool to have room for alignment
276
* Round up the requested size to a multiple of
ALIGN_SIZE
in order
in alloc_small()
286
sizeofobject = round_up_pow2(sizeofobject,
ALIGN_SIZE
);
in alloc_small()
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H
A
D
memorypool.c
38
#define
ALIGN_SIZE
(2 * sizeof(void*))
macro
41
* Round up 'n' to a multiple of
ALIGN_SIZE
.
43
#define ROUND_TO_ALIGN(n) ((n+(
ALIGN_SIZE
-1)) & (~(
ALIGN_SIZE
-1)))
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/src/
H
A
D
cm_ipc_client_serialization.c
44
if (
ALIGN_SIZE
(size) > srcBlob->size - *srcOffset - sizeof(uint32_t)) {
in CmGetBlobFromBuffer()
51
*srcOffset +=
ALIGN_SIZE
(blob->size);
in CmGetBlobFromBuffer()
/third_party/backends/lib/
H
A
D
alloca.c
139
#ifndef
ALIGN_SIZE
140
#define
ALIGN_SIZE
sizeof(double)
macro
145
char align[
ALIGN_SIZE
]; /* To force sizeof(header). */
/third_party/pcre2/pcre2/src/sljit/
H
A
D
sljitExecAllocator.c
238
#define
ALIGN_SIZE
(size) (((size) + sizeof(struct block_header) + 7u) & ~(sljit_uw)7)
macro
279
size =
ALIGN_SIZE
(size);
in sljit_malloc_exec()
H
A
D
sljitProtExecAllocator.c
284
#define
ALIGN_SIZE
(size) (((size) + sizeof(struct block_header) + 7u) & ~(sljit_uw)7)
macro
327
size =
ALIGN_SIZE
(size);
in sljit_malloc_exec()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant_lib/cert_mgr_deps/include/
H
A
D
cm_type.h
55
#define
ALIGN_SIZE
(size) ((((uint32_t)(size) + 3) >> 2) << 2)
macro
/third_party/skia/third_party/externals/freetype/src/truetype/
H
A
D
ttgxvar.c
2250
#undef
ALIGN_SIZE
in FT_LOCAL_DEF()
macro
2251
#define
ALIGN_SIZE
( n ) \
in FT_LOCAL_DEF()
macro
2254
mmvar_size =
ALIGN_SIZE
( sizeof ( FT_MM_Var ) );
in FT_LOCAL_DEF()
2255
axis_flags_size =
ALIGN_SIZE
( num_axes *
in FT_LOCAL_DEF()
2257
axis_size =
ALIGN_SIZE
( num_axes *
in FT_LOCAL_DEF()
2259
namedstyle_size =
ALIGN_SIZE
( num_instances *
in FT_LOCAL_DEF()
2261
next_coords_size =
ALIGN_SIZE
( num_instances *
in FT_LOCAL_DEF()
/third_party/skia/third_party/externals/freetype/src/type1/
H
A
D
t1load.c
313
#undef
ALIGN_SIZE
in FT_LOCAL_DEF()
macro
314
#define
ALIGN_SIZE
( n ) \
in FT_LOCAL_DEF()
macro
317
mmvar_size =
ALIGN_SIZE
( sizeof ( FT_MM_Var ) );
in FT_LOCAL_DEF()
318
axis_flags_size =
ALIGN_SIZE
( mmaster.num_axis *
in FT_LOCAL_DEF()
/third_party/toybox/toys/pending/
H
A
D
xzcat.c
1166
#define
ALIGN_SIZE
(1 << ALIGN_BITS)
macro
1167
#define ALIGN_MASK (
ALIGN_SIZE
- 1)
1358
uint16_t dist_align[
ALIGN_SIZE
];
Completed in 16 milliseconds