| /optee_os/core/lib/libtomcrypt/src/modes/xts/ |
| H A D | xts_decrypt.c | 56 unsigned char PP[16], CC[16], T[16]; in xts_decrypt() local 115 XMEMCPY(CC, T, 16); in xts_decrypt() 116 xts_mult_x(CC); in xts_decrypt() 119 if ((err = s_tweak_uncrypt(ct, PP, CC, xts)) != CRYPT_OK) { in xts_decrypt() 125 CC[i] = ct[16 + i]; in xts_decrypt() 129 CC[i] = PP[i]; in xts_decrypt() 133 if ((err = s_tweak_uncrypt(CC, pt, T, xts)) != CRYPT_OK) { in xts_decrypt()
|
| H A D | xts_encrypt.c | 58 unsigned char PP[16], CC[16], T[16]; in xts_encrypt() local 119 if ((err = s_tweak_crypt(pt, CC, T, xts)) != CRYPT_OK) { in xts_encrypt() 126 ct[16 + i] = CC[i]; in xts_encrypt() 130 PP[i] = CC[i]; in xts_encrypt()
|
| /optee_os/mk/ |
| H A D | gcc.mk | 2 CC$(sm) := $(CROSS_COMPILE_$(sm))gcc 12 nostdinc$(sm) := -nostdinc -isystem $(shell $(CC$(sm)) \ 16 libgcc$(sm) := $(shell $(CC$(sm)) $(CFLAGS$(arch-bits-$(sm))) \ 24 CC := false
|
| H A D | clang.mk | 15 CC$(sm) := $(ccache-cmd)$(OPTEE_CLANG_COMPILER_PATH)clang $(clang-target-opt) 28 nostdinc$(sm) := -nostdinc -isystem $(shell $(CC$(sm)) \ 41 CC := false
|
| H A D | cc-option.mk | 1 _cc-option-supported = $(if $(shell $(CC$(sm)) -Werror $(1) -c -x c /dev/null -o /dev/null 2>/dev/n… 2 _cc-opt-cached-var-name = $(subst =,~,$(strip cached-cc-option-$(1)-$(subst $(empty) $(empty),,$(CC…
|
| H A D | compile.mk | 78 comp-q-$2 := CC # one trailing space 79 comp-compiler-$2 := $$(CC$(sm)) 226 $(cmd-echo-silent) ' CC $$@'; \
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | README.md | 13 Compiler options can be set using conventional environment variables such as `CC` and `CFLAGS` when… 75 If you are cross-compiling, you must set the `CC` environment variable to a C compiler for the host… 161 initial invocation of cmake. This means that `CC=your_cc make` and `make 162 CC=your_cc` will *not* work (similarly with `CFLAGS` and other variables). 166 CC=your_cc cmake /path/to/mbedtls_source 179 If you want to change `CC` or `CFLAGS` afterwards, you will need to remove the 186 CC=your_cc cmake .
|
| H A D | ChangeLog | 1022 CC is set for cross compilation.
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | aes.c | 128 V(5A, 36, 36, 6C), V(41, 3F, 3F, 7E), V(02, F7, F7, F5), V(4F, CC, CC, 83), \ 152 V(E1, 5F, 5F, BE), V(A2, 97, 97, 35), V(CC, 44, 44, 88), V(39, 17, 17, 2E), \ 171 V(90, 70, 70, E0), V(42, 3E, 3E, 7C), V(C4, B5, B5, 71), V(AA, 66, 66, CC), \ 248 V(55, FA, 30, 20), V(F6, 6D, 76, AD), V(91, 76, CC, 88), V(25, 4C, 02, F5), \ 268 V(24, FB, 98, 19), V(97, E9, BD, D6), V(CC, 43, 40, 89), V(77, 9E, D9, 67), \ 288 V(E4, 9D, 3A, 2C), V(0D, 92, 78, 50), V(9B, CC, 5F, 6A), V(62, 46, 7E, 54), \ 298 V(8D, D6, 4D, 76), V(4D, B0, EF, 43), V(54, 4D, AA, CC), V(DF, 04, 96, E4), \
|