Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 40) sorted by relevance

12

/optee_os/core/drivers/
H A Dplic.c30 #define PLIC_PRIORITY(base, source) \ argument
32 SHIFT_U32(source, PLIC_PRIORITY_SHIFT_PER_SOURCE) \
34 #define PLIC_PENDING(base, source) \ argument
36 (4 * ((source) / 32)) \
38 #define PLIC_ENABLE(base, source, context) \ argument
41 (4 * ((source) / 32)) \
80 plic_is_pending(struct plic_data *pd, uint32_t source) in plic_is_pending() argument
82 return io_read32(PLIC_PENDING(pd->plic_base, source)) & in plic_is_pending()
83 BIT(source % 32); in plic_is_pending()
86 static void plic_set_pending(struct plic_data *pd, uint32_t source) in plic_set_pending() argument
[all …]
H A Daplic_msi.c26 static void aplic_set_target(struct aplic_data *aplic, uint32_t source, in aplic_set_target() argument
40 (source - 1) * sizeof(uint32_t); in aplic_set_target()
45 uint32_t source) in aplic_get_source_mode() argument
50 (source - 1) * sizeof(uint32_t)); in aplic_get_source_mode()
H A Daplic_priv.c119 TEE_Result aplic_set_source_mode(struct aplic_data *aplic, uint32_t source, in aplic_set_source_mode() argument
146 (source - 1) * sizeof(uint32_t); in aplic_set_source_mode()
H A Daplic_direct.c63 static void aplic_set_target(struct aplic_data *aplic, uint32_t source, in aplic_set_target() argument
74 (source - 1) * sizeof(uint32_t); in aplic_set_target()
/optee_os/core/include/drivers/
H A Daplic_priv.h85 uint32_t source) in aplic_enable_interrupt() argument
87 io_write32(aplic->aplic_base + APLIC_SETIENUM, source); in aplic_enable_interrupt()
91 uint32_t source) in aplic_disable_interrupt() argument
93 io_write32(aplic->aplic_base + APLIC_CLRIENUM, source); in aplic_disable_interrupt()
96 static inline void aplic_set_pending(struct aplic_data *aplic, uint32_t source) in aplic_set_pending() argument
98 io_write32(aplic->aplic_base + APLIC_SETIPNUM, source); in aplic_set_pending()
102 uint32_t source) in aplic_clear_pending() argument
104 io_write32(aplic->aplic_base + APLIC_CLRIPNUM, source); in aplic_clear_pending()
113 TEE_Result aplic_set_source_mode(struct aplic_data *aplic, uint32_t source,
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dentropy.c30 memset(ctx->source, 0, sizeof(ctx->source)); in mbedtls_entropy_init()
82 mbedtls_platform_zeroize(ctx->source, sizeof(ctx->source)); in mbedtls_entropy_free()
104 ctx->source[idx].f_source = f_source; in mbedtls_entropy_add_source()
105 ctx->source[idx].p_source = p_source; in mbedtls_entropy_add_source()
106 ctx->source[idx].threshold = threshold; in mbedtls_entropy_add_source()
107 ctx->source[idx].strong = strong; in mbedtls_entropy_add_source()
214 if (ctx->source[i].strong == MBEDTLS_ENTROPY_SOURCE_STRONG) { in entropy_gather_internal()
219 if ((ret = ctx->source[i].f_source(ctx->source[i].p_source, in entropy_gather_internal()
232 ctx->source[i].size += olen; in entropy_gather_internal()
315 if (ctx->source[i].size < ctx->source[i].threshold) { in mbedtls_entropy_func()
[all …]
/optee_os/lib/libutils/isoc/arch/arm/softfloat/
H A DREADME.txt9 is distributed in the form of C source code. Building the SoftFloat sources
17 SoftFloat-source.html Documentation for building SoftFloat.
20 Other files in the package comprise the source code for SoftFloat.
H A DCOPYING.txt8 each source file individually.
13 Redistribution and use in source and binary forms, with or without
16 1. Redistributions of source code must retain the above copyright notice,
/optee_os/lib/libutils/compiler-rt/
H A DREADME.txt4 This directory and its subdirectories contain source code for the compiler
7 Compiler-RT is open source software. You may freely distribute it under the
/optee_os/lib/libmbedtls/mbedtls/
H A Ddco.txt18 have the right to submit it under the open source license
22 of my knowledge, is covered under an appropriate open source
25 by me, under the same open source license (unless I am
37 this project or the open source license(s) involved.
H A DSUPPORT.md8 - the `docs` directory in the source tree;
H A DLICENSE35 including but not limited to software source code, documentation
36 source, and configuration files.
64 communication on electronic mailing lists, source code control systems,
238 this service if you wish), that you receive source code or can get it
250 source code. And you must show them these terms so they know their
294 source code as you receive it, in any medium, provided that you
353 source code, which must be distributed under the terms of Sections
358 cost of physically performing source distribution, a complete
359 machine-readable copy of the corresponding source code, to be
364 to distribute corresponding source code. (This alternative is
[all …]
H A DREADME.md52 * Perl to run the tests, and to generate some source files in the development branch.
61 ### Generated source files in the development branch
63 The source code of Mbed TLS includes some files that are automatically generated by scripts and who…
67 * Perl, for some library source files and for Visual Studio build files.
68 * Python 3.8 and some Python packages, for some library source files, sample programs and test data…
91 In order to build from the source code using GNU Make, just enter at the command line:
119 In order to build the source using CMake in a separate directory (recommended), just enter at the c…
174 the Mbed TLS source directory, use:
232 …be generated first as described in [“Generated source files in the development branch”](#generated…
279 …analyses, hardware and firmware architecture specifications, and an open source firmware reference…
[all …]
/optee_os/core/arch/arm/plat-amlogic/scripts/
H A Daml_bin2img.py42 def aml_create_header_file(source, dest, entry, res_mem_start, res_mem_size, argument
45 src_fd = open(source, 'rb')
109 source_file = args.source
/optee_os/core/arch/arm/plat-stm32mp1/scripts/
H A Dstm32image.py76 def stm32image_create_header_file(source, dest, load, entry, bintype): argument
78 src_fd = open(source, 'rb')
126 source_file = args.source
/optee_os/core/lib/zlib/
H A Dzutil.c150 void ZLIB_INTERNAL zmemcpy(dest, source, len) in zmemcpy() argument
152 const Bytef* source;
157 *dest++ = *source++; /* ??? to be unrolled */
H A Dzlib.h678 z_streamp source));
945 z_streamp source));
1231 const Bytef *source, uLong sourceLen));
1246 const Bytef *source, uLong sourceLen,
1269 const Bytef *source, uLong sourceLen));
1287 const Bytef *source, uLong *sourceLen));
/optee_os/
H A DREADME.md2 This git contains source code for the secure side implementation of OP-TEE
H A DLICENSE7 Redistribution and use in source and binary forms, with or without
10 1. Redistributions of source code must retain the above copyright notice,
/optee_os/core/lib/libtomcrypt/src/prngs/
H A Dfortuna.c264 static int s_fortuna_add(unsigned long source, unsigned long pool, const unsigned char *in, unsigne… in s_fortuna_add() argument
275 tmp[0] = (unsigned char)source; in s_fortuna_add()
299 int fortuna_add_random_event(unsigned long source, unsigned long pool, const unsigned char *in, uns… in fortuna_add_random_event() argument
306 LTC_ARGCHK(source <= 255); in fortuna_add_random_event()
311 err = s_fortuna_add(source, pool, in, inlen, prng); in fortuna_add_random_event()
/optee_os/core/lib/qcbor/
H A DLICENSE14 Redistribution and use in source and binary forms, with or without
17 1. Redistributions of source code must retain the above copyright notice, this
/optee_os/core/arch/arm/dts/
H A Dstm32mp151.dtsi137 wakeup-source;
871 wakeup-source;
966 wakeup-source;
979 wakeup-source;
992 wakeup-source;
1005 wakeup-source;
1024 wakeup-source;
1041 wakeup-source;
1058 wakeup-source;
1075 wakeup-source;
[all …]
H A Dstm32mp257f-dk.dts79 wakeup-source;
H A Dstm32mp235f-dk.dts71 wakeup-source;
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dentropy.h112 mbedtls_entropy_source_state MBEDTLS_PRIVATE(source)[MBEDTLS_ENTROPY_MAX_SOURCES];

12