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:ALIGNMENT
(Results
1 - 12
of
12
) sorted by relevance
/third_party/gn/src/util/
H
A
D
aligned_alloc.h
48
template <size_t
ALIGNMENT
>
51
static_assert((
ALIGNMENT
& (
ALIGNMENT
- 1)) == 0,
in Alloc()
52
"
ALIGNMENT
must be a power of 2");
in Alloc()
54
return _aligned_malloc(size,
ALIGNMENT
);
in Alloc()
56
if (
ALIGNMENT
<= sizeof(void*)) {
in Alloc()
61
// Allocation size must be a multiple of
ALIGNMENT
in Alloc()
62
DCHECK((size %
ALIGNMENT
) == 0);
in Alloc()
76
// |
ALIGNMENT
- sizeof(void*)| extra bytes are required.
in Alloc()
77
void* real_block = ::malloc(size +
ALIGNMENT
in Alloc()
[all...]
/third_party/ntfs-3g/include/ntfs-3g/
H
A
D
cache.h
32
union
ALIGNMENT
payload[0];
40
union
ALIGNMENT
payload[0];
50
union
ALIGNMENT
payload[0];
61
union
ALIGNMENT
payload[0];
H
A
D
types.h
134
union
ALIGNMENT
{
union
H
A
D
security.h
77
union
ALIGNMENT
payload[0];
92
union
ALIGNMENT
payload[0];
/third_party/jerryscript/jerry-core/include/
H
A
D
jerryscript-compiler.h
33
#define JERRY_ATTR_ALIGNED(
ALIGNMENT
) __attribute__((aligned(
ALIGNMENT
)))
76
#define JERRY_ATTR_ALIGNED(
ALIGNMENT
)
/third_party/python/Python/
H
A
D
pyarena.c
15
#define
ALIGNMENT
8
macro
87
b->ab_offset = (char *)_Py_ALIGN_UP(b->ab_mem,
ALIGNMENT
) -
in block_new()
106
size = _Py_SIZE_ROUND_UP(size,
ALIGNMENT
);
in block_alloc()
/third_party/libinput/tools/
H
A
D
libinput-measure-touchpad-pressure.py
44
ALIGNMENT
= 3
variable in TableFormatter
55
align = self.
ALIGNMENT
- 1 # account for |
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
H
A
D
memory.h
46
template <size_t SIZE, size_t
ALIGNMENT
>
48
struct alignas(
ALIGNMENT
) type {
/third_party/ffmpeg/libavcodec/mips/
H
A
D
vp9_idct_msa.c
1208
int16_t out_arr[16 * 16] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct16x16_10_colcol_addblk_msa()
1248
int16_t out_arr[16 * 16] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct16x16_colcol_addblk_msa()
1468
int16_t out_arr[16 * 16] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_iadst16x16_colcol_addblk_msa()
1936
int16_t tmp_odd_buf[16 * 8] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct8x32_1d_columns_addblk_msa()
1937
int16_t tmp_eve_buf[16 * 8] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct8x32_1d_columns_addblk_msa()
1948
int16_t tmp_odd_buf[16 * 8] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct8x32_1d_columns_msa()
1949
int16_t tmp_eve_buf[16 * 8] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct8x32_1d_columns_msa()
1999
int16_t out_arr[32 * 32] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct32x32_34_colcol_addblk_msa()
2001
int16_t tmp_buf[8 * 32] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct32x32_34_colcol_addblk_msa()
2046
int16_t out_arr[32 * 32] ALLOC_ALIGNED(
ALIGNMENT
);
in vp9_idct32x32_colcol_addblk_msa()
[all...]
H
A
D
vp9_lpf_msa.c
963
uint8_t filter48[16 * 8] ALLOC_ALIGNED(
ALIGNMENT
);
in ff_loop_filter_v_16_16_msa()
2072
uint8_t transposed_input[16 * 24] ALLOC_ALIGNED(
ALIGNMENT
);
in ff_loop_filter_h_16_8_msa()
2508
uint8_t transposed_input[16 * 24] ALLOC_ALIGNED(
ALIGNMENT
);
in ff_loop_filter_h_16_16_msa()
/third_party/python/Objects/
H
A
D
obmalloc.c
873
* classes spaced
ALIGNMENT
bytes apart.
879
#define
ALIGNMENT
16 /* must be 2^N */
macro
882
#define
ALIGNMENT
8 /* must be 2^N */
macro
898
* 1)
ALIGNMENT
<= SMALL_REQUEST_THRESHOLD <= 512
899
* 2) SMALL_REQUEST_THRESHOLD is evenly divisible by
ALIGNMENT
905
#define NB_SMALL_SIZE_CLASSES (SMALL_REQUEST_THRESHOLD /
ALIGNMENT
)
1056
#define POOL_OVERHEAD _Py_SIZE_ROUND_UP(sizeof(struct pool_header),
ALIGNMENT
)
/third_party/ffmpeg/libavutil/mips/
H
A
D
generic_macros_msa.h
28
#define
ALIGNMENT
16
macro
Completed in 21 milliseconds