Home
last modified time | relevance | path

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

/system/chre/build/sys_support/qcom/
Duimage.lcs.toolv8070 . = ALIGN(64);
76 . = ALIGN(64);
82 . = ALIGN (64);
96 . = ALIGN(64);
110 . = ALIGN(64);
127 …/*. = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1…
128 . = ALIGN (DEFINED (DATAALIGN) ? (DATAALIGN * 1K) : CONSTANT (MAXPAGESIZE));*/
130 . = ALIGN (4K);
138 . = ALIGN (64);
140 . = ALIGN(64);
[all …]
Duimage_v2.lcs111 . = ALIGN(4K);
135 . = ALIGN (64);
/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.cpp31 #define ALIGN(x,y) (((x) + ((y) - 1)) & ~((y) - 1)) macro
138 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
170 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
202 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
232 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
264 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
296 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
328 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
360 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
393 void *buf = (void *)(ALIGN((unsigned long)alloc_ptr.get(), 4096) + 1024); in TEST_F()
[all …]
/system/libufdt/utils/tests/
Dmkdtimg_testdata.sh30 ALIGN=4
41 dtc -O dtb -@ -qq -a "$ALIGN" -o "$out_dtb" "$src_dts"
Dmkdtboimg_testdata.sh31 ALIGN=4
51 dtc -O dtb -@ -qq -a "$ALIGN" -o "$out_dtb" "$src_dts"
/system/core/libsparse/
Dsparse_defs.h43 #define ALIGN(x, y) ((y)*DIV_ROUND_UP((x), (y))) macro
Doutput_file.cpp355 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_fill_chunk()
385 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_data_chunk()
448 unsigned int rnd_up_len = ALIGN(len, out->block_size); in write_normal_data_chunk()
/system/netd/resolv/
Dsethostent.cpp48 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro
122 ptr = (char*) ALIGN(ptr); in _hf_gethtbyname2()
Dgethnamaddr.cpp90 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro
390 bp = (char*) ALIGN(bp); in getanswer()
/system/keymaster/key_blob_utils/
Docb.c1335 #define ALIGN(n) __attribute__((aligned(n)))
1337 #define ALIGN(n) __declspec(align(n))
1339 #define ALIGN(n)
1354 ALIGN(16) char pt[128];
1355 ALIGN(16) char ct[144];
1356 ALIGN(16) char nonce[] = {0,1,2,3,4,5,6,7,8,9,10,11};
1369 ALIGN(16) char pt[1024];
1370 ALIGN(16) char ct[1024];
1371 ALIGN(16) char tag[16];
1372 ALIGN(16) char nonce[12] = {0,};
[all …]
/system/core/libcutils/
Dfs_config.cpp62 #define ALIGN(x, alignment) (((x) + ((alignment)-1)) & ~((alignment)-1)) macro
386 size_t len = ALIGN(sizeof(*p) + strlen(pc->prefix) + 1, sizeof(uint64_t)); in fs_config_generate()