Home
last modified time | relevance | path

Searched refs:ALIGN (Results 1 – 13 of 13) sorted by relevance

/system/core/libcutils/arch-x86/
Dandroid_memset32.S27 #ifndef ALIGN
28 # define ALIGN(n) .p2align n macro
111 ALIGN (4)
130 ALIGN (4)
151 ALIGN (2)
171 ALIGN (4)
206 ALIGN (4)
243 ALIGN (4)
253 ALIGN (4)
322 ALIGN (4)
[all …]
Dandroid_memset16.S27 #ifndef ALIGN
28 # define ALIGN(n) .p2align n macro
111 ALIGN (4)
130 ALIGN (4)
154 ALIGN (2)
190 ALIGN (4)
216 ALIGN (4)
243 ALIGN (4)
270 ALIGN (4)
298 ALIGN (4)
[all …]
/system/core/libcutils/arch-x86_64/
Dandroid_memset32.S27 #ifndef ALIGN
28 # define ALIGN(n) .p2align n macro
66 ALIGN (4)
79 ALIGN (2)
99 ALIGN (4)
133 ALIGN (4)
167 ALIGN (4)
177 ALIGN (4)
240 ALIGN (4)
261 ALIGN (2)
[all …]
Dandroid_memset16.S27 #ifndef ALIGN
28 # define ALIGN(n) .p2align n macro
66 ALIGN (4)
82 ALIGN (2)
118 ALIGN (4)
143 ALIGN (4)
169 ALIGN (4)
195 ALIGN (4)
222 ALIGN (4)
247 ALIGN (4)
[all …]
/system/core/libion/tests/
Ddevice_test.cpp30 #define ALIGN(x,y) (((x) + ((y) - 1)) & ~((y) - 1)) macro
137 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
171 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
205 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
237 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
271 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
305 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
339 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
373 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
408 void *buf = (void *)(ALIGN((unsigned long)alloc, 4096) + 1024); in TEST_F()
[all …]
/system/extras/simpleperf/
Drecord.cpp193 p += ALIGN(filename.size() + 1, 8); in MmapRecord()
204 p += ALIGN(filename.size() + 1, 8); in BinaryFormat()
210 header.size = sizeof(header) + sizeof(data) + ALIGN(filename.size() + 1, 8) + sample_id.Size(); in AdjustSizeBasedOnData()
225 p += ALIGN(filename.size() + 1, 8); in Mmap2Record()
236 p += ALIGN(filename.size() + 1, 8); in BinaryFormat()
242 header.size = sizeof(header) + sizeof(data) + ALIGN(filename.size() + 1, 8) + sample_id.Size(); in AdjustSizeBasedOnData()
261 p += ALIGN(strlen(p) + 1, 8); in CommRecord()
272 p += ALIGN(comm.size() + 1, 8); in BinaryFormat()
539 p += ALIGN(build_id.Size(), 8); in BuildIdRecord()
541 p += ALIGN(filename.size() + 1, 64); in BuildIdRecord()
[all …]
Drecord_file_writer.cpp183 uint32_t len = static_cast<uint32_t>(ALIGN(s.size() + 1, 64)); in WriteFeatureString()
205 uint32_t len = static_cast<uint32_t>(ALIGN(arg.size() + 1, 64)); in WriteCmdlineFeature()
Dutils.h29 #define ALIGN(value, alignment) (((value) + (alignment)-1) & ~((alignment)-1)) macro
Dread_elf.cpp78 namesz = ALIGN(namesz, 4); in GetBuildIdFromNoteSection()
79 descsz = ALIGN(descsz, 4); in GetBuildIdFromNoteSection()
/system/core/libsparse/
Dsparse_defs.h43 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y))) macro
Doutput_file.c374 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_fill_chunk()
409 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_data_chunk()
479 unsigned int rnd_up_len = ALIGN(len, out->block_size); in write_normal_data_chunk()
/system/core/libcutils/
Dfs_config.c69 #define ALIGN(x, alignment) ( ((x) + ((alignment) - 1)) & ~((alignment) - 1) ) macro
280 size_t len = ALIGN(sizeof(*p) + strlen(pc->prefix) + 1, sizeof(uint64_t)); in fs_config_generate()
/system/keymaster/
Docb.c1332 #define ALIGN(n) __attribute__((aligned(n)))
1334 #define ALIGN(n) __declspec(align(n))
1336 #define ALIGN(n)
1351 ALIGN(16) char pt[128];
1352 ALIGN(16) char ct[144];
1353 ALIGN(16) char nonce[] = {0,1,2,3,4,5,6,7,8,9,10,11};
1366 ALIGN(16) char pt[1024];
1367 ALIGN(16) char ct[1024];
1368 ALIGN(16) char tag[16];
1369 ALIGN(16) char nonce[12] = {0,};
[all …]