OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALIGN_TO
(Results
1 - 4
of
4
) sorted by null
/system/media/camera/src/
camera_metadata.c
38
#define
ALIGN_TO
(val, alignment) \
215
ALIGN_TO
(sizeof(camera_metadata_t), ENTRY_ALIGNMENT);
221
metadata->data_start =
ALIGN_TO
(data_unaligned, DATA_ALIGNMENT);
234
memory_needed =
ALIGN_TO
(memory_needed, ENTRY_ALIGNMENT);
237
memory_needed =
ALIGN_TO
(memory_needed, DATA_ALIGNMENT);
322
uintptr_t aligned_ptr =
ALIGN_TO
(metadata, alignments[i].alignment);
378
if ((uintptr_t)&entries[i] !=
ALIGN_TO
(&entries[i], ENTRY_ALIGNMENT)) {
412
if ((uintptr_t)data !=
ALIGN_TO
(data, DATA_ALIGNMENT)) {
500
return data_bytes <= 4 ? 0 :
ALIGN_TO
(data_bytes, DATA_ALIGNMENT);
[
all
...]
/hardware/qcom/display/msm8960/libhwcomposer/
hwc_utils.h
35
#define
ALIGN_TO
(x, align) (((x) + ((align)-1)) & ~((align)-1))
/hardware/qcom/display/msm8x26/libhwcomposer/
hwc_utils.h
35
#define
ALIGN_TO
(x, align) (((x) + ((align)-1)) & ~((align)-1))
/hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h
35
#define
ALIGN_TO
(x, align) (((x) + ((align)-1)) & ~((align)-1))
Completed in 570 milliseconds