Home
last modified time | relevance | path

Searched refs:ALIGN (Results 1 – 8 of 8) 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/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.cpp350 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_fill_chunk()
380 rnd_up_len = ALIGN(len, out->block_size); in write_sparse_data_chunk()
443 uint64_t rnd_up_len = ALIGN(len, out->block_size); in write_normal_data_chunk()
/system/keymaster/key_blob_utils/
Docb.c1365 #define ALIGN(n) __attribute__((aligned(n)))
1367 #define ALIGN(n) __declspec(align(n))
1369 #define ALIGN(n)
1384 ALIGN(16) char pt[128];
1385 ALIGN(16) char ct[144];
1386 ALIGN(16) char nonce[] = {0,1,2,3,4,5,6,7,8,9,10,11};
1399 ALIGN(16) char pt[1024];
1400 ALIGN(16) char ct[1024];
1401 ALIGN(16) char tag[16];
1402 ALIGN(16) char nonce[12] = {0,};
[all …]
/system/core/libcutils/
Dfs_config.cpp51 #define ALIGN(x, alignment) (((x) + ((alignment)-1)) & ~((alignment)-1)) macro