HomeSort by relevance Sort by last modified time
    Searched refs:ALIGN_TO (Results 1 - 9 of 9) sorted by null

  /system/media/camera/src/
camera_metadata.c 32 #define ALIGN_TO(val, alignment) \
223 ALIGN_TO(sizeof(camera_metadata_t), ENTRY_ALIGNMENT);
229 metadata->data_start = ALIGN_TO(data_unaligned, DATA_ALIGNMENT);
242 memory_needed = ALIGN_TO(memory_needed, ENTRY_ALIGNMENT);
245 memory_needed = ALIGN_TO(memory_needed, DATA_ALIGNMENT);
331 uintptr_t aligned_ptr = ALIGN_TO(metadata, alignments[i].alignment);
392 if ((uintptr_t)&entries[i] != ALIGN_TO(&entries[i], ENTRY_ALIGNMENT)) {
426 if ((uintptr_t)data != ALIGN_TO(data, DATA_ALIGNMENT)) {
516 return data_bytes <= 4 ? 0 : ALIGN_TO(data_bytes, DATA_ALIGNMENT);
    [all...]
  /frameworks/av/camera/
CameraMetadata.cpp 28 #define ALIGN_TO(val, alignment) \
590 const uintptr_t metadataStart = ALIGN_TO(blob.data(), alignment);
  /hardware/qcom/display/msm8960/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))
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h 37 #define ALIGN_TO(x, align) (((x) + ((align)-1)) & ~((align)-1))
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.h 36 #define ALIGN_TO(x, align) (((x) + ((align)-1)) & ~((align)-1))
  /hardware/intel/img/psb_video/src/mrst/
lnc_hostcode.c 46 #define ALIGN_TO(value, align) ((value + align - 1) & ~(align - 1))
47 #define PAGE_ALIGN(value) ALIGN_TO(value, 4096)
    [all...]
  /hardware/intel/img/psb_video/src/
pnw_hostcode.c 45 #define ALIGN_TO(value, align) ((value + align - 1) & ~(align - 1))
46 #define PAGE_ALIGN(value) ALIGN_TO(value, 4096)
    [all...]
tng_hostcode.c 57 #define ALIGN_TO(value, align) ((value + align - 1) & ~(align - 1))
58 #define PAGE_ALIGN(value) ALIGN_TO(value, 4096)
    [all...]

Completed in 211 milliseconds