Lines Matching +full:- +full:m
5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
29 static int flags = -1; in mbedtls_padlock_has_support()
32 if (flags == -1) { in mbedtls_padlock_has_support()
44 : "=m" (ebx), "=m" (edx) in mbedtls_padlock_has_support()
45 : "m" (ebx) in mbedtls_padlock_has_support()
55 * PadLock AES-ECB block en(de)cryption
68 rk = ctx->buf + ctx->rk_offset; in mbedtls_padlock_xcryptecb()
78 *ctrl = 0x80 | ctx->nr | ((ctx->nr + (mode^1) - 10) << 9); in mbedtls_padlock_xcryptecb()
90 : "=m" (ebx) in mbedtls_padlock_xcryptecb()
91 : "m" (ebx), "m" (ctrl), "m" (rk), "m" (blk) in mbedtls_padlock_xcryptecb()
101 * PadLock AES-CBC buffer en(de)cryption
117 rk = ctx->buf + ctx->rk_offset; in mbedtls_padlock_xcryptcbc()
129 *ctrl = 0x80 | ctx->nr | ((ctx->nr + (mode ^ 1) - 10) << 9); in mbedtls_padlock_xcryptcbc()
144 : "=m" (ebx) in mbedtls_padlock_xcryptcbc()
145 : "m" (ebx), "m" (count), "m" (ctrl), in mbedtls_padlock_xcryptcbc()
146 "m" (rk), "m" (input), "m" (output), "m" (iw) in mbedtls_padlock_xcryptcbc()