Home
last modified time | relevance | path

Searched refs:printf (Results 1 – 22 of 22) sorted by relevance

/optee_os/scripts/
H A Dmem_usage.py42 def printf(format, *args): function
59 printf('%-16s %.8X - %.8X size %.8X %3d KiB', name, addr, addr + size,
62 printf(' %d pages', num_pages)
63 printf('\n')
69 printf('%d ', size)
71 printf('%-36s size %.8X %3d KiB\n', name, size, size_kib)
173 printf('\n')
/optee_os/core/lib/libtomcrypt/src/misc/pkcs5/
H A Dpkcs_5_test.c159 printf("PKCS#5 test failed: 'sha1' hash not found\n"); in pkcs_5_test()
174 printf("\npkcs_5_alg2() #%d: Failed/1 (%s)\n", i, error_to_string(err)); in pkcs_5_test()
192 printf("\npkcs_5_alg1() #%d: Failed/1 (%s)\n", i, error_to_string(err)); in pkcs_5_test()
210 printf("\npkcs_5_alg1_openssl() #%d: Failed/1 (%s)\n", i, error_to_string(err)); in pkcs_5_test()
/optee_os/core/lib/libtomcrypt/src/misc/crypt/
H A Dcrypt_inits.c67 printf("EXT_MATH_LIB = %s\n", NAME_VALUE(EXT_MATH_LIB)); in crypt_mp_init()
76 printf("Unknown/Invalid MPI provider: %s\n", mpi); in crypt_mp_init()
/optee_os/lib/libutee/
H A Dtrace_ext.c40 int printf(const char *fmt, ...) in printf() function
90 int printf(const char *fmt __unused, ...) in printf() function
H A Dabort.c13 printf("Abort!\n"); in abort()
H A Dtee_api_arith_mpi.c20 printf("Panic function %s, line %d: %s\n", func, line, msg); in api_panic()
30 printf("Panic function %s, line %d, code %d\n", func, line, rc); in mpi_panic()
/optee_os/lib/libutils/isoc/
H A Dbget.c1311 V printf("%-48s %s\n", bhex, bascii);
1321 V printf(
1351 V printf("Allocated buffer: size %6ld bytes.\n", (long) bs);
1363 V printf("Free block: size %6ld bytes.%s\n",
1370 V printf(
1408 V printf("Free block: size %6ld bytes. (Bad free list links)\n",
1418 V printf(
1503 V printf( in stats()
1509 V printf( in stats()
1512 V printf(" %ld direct gets, %ld direct frees\n", ndget, ndrel); in stats()
[all …]
H A Dwrite.c15 return printf("%*s", (int)count, (char *)buf); in write()
/optee_os/core/arch/arm/plat-imx/
H A Dlink.mk8 $(q)ADDR=`printf 0x%x $$(($(subst UL,,$(CFG_TZDRAM_START))))`; \
/optee_os/lib/libutils/isoc/include/
H A Dstdio.h13 int printf(const char *fmt, ...)
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dplatform.h78 #define MBEDTLS_PLATFORM_STD_PRINTF printf /**< The default \c printf function to use. */
219 #define mbedtls_printf printf
H A Ddebug.h90 __attribute__((format(printf, string_index, first_to_check)))
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/
H A Docb3_test.c238 printf("\n\nOCB3: Failure-decrypt - res = %d\n", res); in ocb3_test()
271 printf("\n\nOCB3: Failure-decrypt - res = %d\n", res); in ocb3_test()
/optee_os/core/lib/libtomcrypt/src/misc/hkdf/
H A Dhkdf_test.c263 printf("LTC_HKDF-%s test #%d, %s\n", cases[i].Hash, i, error_to_string(err)); in hkdf_test()
/optee_os/core/lib/libtomcrypt/src/encauth/ocb/
H A Docb_test.c188 printf("\n\nOCB: Failure-decrypt - res = %d\n", res); in ocb_test()
/optee_os/core/lib/libtomcrypt/src/encauth/eax/
H A Deax_test.c239 printf("\n\nEAX: Failure-decrypt - res = %d\n", res); in eax_test()
/optee_os/core/lib/libtomcrypt/src/mac/hmac/
H A Dhmac_test.c597 printf("HMAC-%s test %s, %s\n", cases[i].algo, cases[i].num, error_to_string(err)); in hmac_test()
/optee_os/core/lib/zlib/
H A Dinflate.c360 printf(" static const code lenfix[%u] = {", size); in makefixed()
363 if ((low % 7) == 0) printf("\n "); in makefixed()
364 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, in makefixed()
371 printf("\n static const code distfix[%u] = {", size); in makefixed()
374 if ((low % 6) == 0) printf("\n "); in makefixed()
375 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits, in makefixed()
/optee_os/lib/libutils/ext/include/
H A Dcompiler.h43 #define __printf(a, b) __attribute__((format(printf, a, b)))
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dccm.c37 #define mbedtls_printf printf
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog2007 * The library now uses the %zu format specifier with the printf() family of
2173 * Add printf function attributes to mbedtls_debug_print_msg to ensure we
2174 get printf format specifier warnings.
2261 * Add extra printf compiler warning flags to builds.
2272 When that flag is on, standard GNU C printf format specifiers
3591 * Replace printf with mbedtls_printf in the ARIA module. Found by
5304 * Single Platform compatilibity layer (for memory / printf / fprintf)
/optee_os/
H A DCHANGELOG.md974 * libutee: printf() and puts() fixes, add putchar() ([#1759], [#1754])