Searched refs:ALIGN (Results 1 – 15 of 15) sorted by relevance
/system/chre/build/sys_support/qcom/ |
D | uimage.lcs.toolv80 | 70 . = 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 …]
|
D | uimage_v2.lcs | 111 . = ALIGN(4K); 135 . = ALIGN (64);
|
/system/core/libcutils/arch-x86/ |
D | android_memset32.S | 27 #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 …]
|
D | android_memset16.S | 27 #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/ |
D | android_memset32.S | 27 #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 …]
|
D | android_memset16.S | 27 #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/ |
D | device_test.cpp | 31 #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/ |
D | mkdtimg_testdata.sh | 30 ALIGN=4 41 dtc -O dtb -@ -qq -a "$ALIGN" -o "$out_dtb" "$src_dts"
|
D | mkdtboimg_testdata.sh | 31 ALIGN=4 51 dtc -O dtb -@ -qq -a "$ALIGN" -o "$out_dtb" "$src_dts"
|
/system/core/libsparse/ |
D | sparse_defs.h | 43 #define ALIGN(x, y) ((y)*DIV_ROUND_UP((x), (y))) macro
|
D | output_file.cpp | 355 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/ |
D | sethostent.cpp | 48 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro 122 ptr = (char*) ALIGN(ptr); in _hf_gethtbyname2()
|
D | gethnamaddr.cpp | 90 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro 390 bp = (char*) ALIGN(bp); in getanswer()
|
/system/keymaster/key_blob_utils/ |
D | ocb.c | 1335 #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/ |
D | fs_config.cpp | 62 #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()
|