| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | LICENSE | 43 "Work" shall mean the work of authorship, whether in Source or 45 copyright notice that is included in or attached to the work 48 "Derivative Works" shall mean any work, whether in Source or Object 49 form, that is based on (or derived from) the Work and for which the 51 represent, as a whole, an original work of authorship. For the purposes 54 the Work and Derivative Works thereof. 56 "Contribution" shall mean any work of authorship, including 57 the original version of the Work and any modifications or additions 58 to that Work or Derivative Works thereof, that is intentionally 59 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| H A D | dco.txt | 21 (b) The contribution is based upon previous work that, to the best 24 work with modifications, whether created in whole or in part
|
| H A D | README.md | 50 …, IAR 8 and Visual Studio 2017. More recent versions should work. Slightly older versions may work. 55 * Doxygen 1.8.11 or later (if building the documentation; slightly older versions should work). 162 CC=your_cc` will *not* work (similarly with `CFLAGS` and other variables). 302 …ryptographic accelerators, secure elements and random generators. This is work in progress. Please…
|
| /optee_os/lib/libutils/compiler-rt/ |
| H A D | LICENSE.TXT | 39 "Work" shall mean the work of authorship, whether in Source or 41 copyright notice that is included in or attached to the work 44 "Derivative Works" shall mean any work, whether in Source or Object 45 form, that is based on (or derived from) the Work and for which the 47 represent, as a whole, an original work of authorship. For the purposes 50 the Work and Derivative Works thereof. 52 "Contribution" shall mean any work of authorship, including 53 the original version of the Work and any modifications or additions 54 to that Work or Derivative Works thereof, that is intentionally 55 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /optee_os/core/lib/zlib/ |
| H A D | inftrees.c | 24 whose indices are 0..2^bits-1. work is a writable array of at least 25 lens shorts, which is used as a work area. type is the type of code 33 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument 39 unsigned short FAR *work; 97 table. The sorted table is work[], with that space being provided by 148 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; 184 base = extra = work; /* dummy value--not used */ 218 if (work[sym] + 1U < match) { 220 here.val = work[sym]; 222 else if (work[sym] >= match) { [all …]
|
| H A D | inflate.h | 122 unsigned short work[288]; /* work area for code table building */ member
|
| /optee_os/.github/workflows/ |
| H A D | ci.yml | 422 run: git config --global --add safe.directory /home/runner/work/optee_os/optee_os 424 run: bash /home/runner/work/optee_os/optee_os/scripts/ci-host-cleanup.sh 441 path: /home/runner/work/ccache 450 -v /home/runner/work/optee_os/optee_os:/runner/optee_os \ 451 -v /home/runner/work/ccache:/root/.cache/ccache \ 566 run: git config --global --add safe.directory /home/runner/work/optee_os/optee_os 568 run: bash /home/runner/work/optee_os/optee_os/scripts/ci-host-cleanup.sh 585 path: /home/runner/work/ccache 594 -v /home/runner/work/optee_os/optee_os:/runner/optee_os \ 595 -v /home/runner/work/ccach [all...] |
| /optee_os/core/include/drivers/ |
| H A D | pinctrl.h | 67 * @fdt: Device tree to work on 86 * @fdt: Device tree to work on 100 * @fdt: Device tree to work on 128 * @fdt: Device tree to work on
|
| H A D | nvmem.h | 64 * @fdt: Device tree to work on 84 * @fdt: Device tree to work on 98 * @fdt: Device tree to work on 113 * @fdt: Device tree to work on
|
| H A D | clk_dt.h | 36 * @fdt: Device tree to work on 52 * @fdt: Device tree to work on 78 * @fdt: Device tree to work on
|
| H A D | i2c.h | 101 * @fdt: Device-tree to work on 102 * @node: Node to work on in @fdt provided device-tree 176 * @fdt: Device tree to work on 245 * @fdt: Device tree to work on
|
| H A D | rstctrl.h | 148 * @fdt: Device tree to work on 188 * @fdt: Device tree to work on 215 * @fdt: Device tree to work on
|
| H A D | gpio.h | 191 * @fdt: Device tree to work on 212 * @fdt: Device tree to work on 276 * @fdt: Device tree to work on
|
| H A D | firewall_device.h | 37 * @fdt: FDT to work on 54 * @fdt: FDT to work on
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | pkcs5.c | 277 unsigned char work[MBEDTLS_MD_MAX_SIZE]; in pkcs5_pbkdf2_hmac() local 296 // U1 ends up in work in pkcs5_pbkdf2_hmac() 306 if ((ret = mbedtls_md_hmac_finish(ctx, work)) != 0) { in pkcs5_pbkdf2_hmac() 314 memcpy(md1, work, md_size); in pkcs5_pbkdf2_hmac() 333 mbedtls_xor(work, work, md1, md_size); in pkcs5_pbkdf2_hmac() 337 memcpy(out_p, work, use_len); in pkcs5_pbkdf2_hmac() 351 mbedtls_platform_zeroize(work, MBEDTLS_MD_MAX_SIZE); in pkcs5_pbkdf2_hmac()
|
| /optee_os/core/lib/libtomcrypt/src/ciphers/ |
| H A D | des.c | 1397 ulong32 work, right, leftt; in desfunc() local 1404 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 1405 right ^= work; in desfunc() 1406 leftt ^= (work << 4); in desfunc() 1408 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 1409 right ^= work; in desfunc() 1410 leftt ^= (work << 16); in desfunc() 1412 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 1413 leftt ^= work; in desfunc() 1414 right ^= (work << 2); in desfunc() [all …]
|
| /optee_os/core/arch/arm/plat-imx/registers/ |
| H A D | imx6-dcp.h | 65 /* Work Packet control0 configuration */ 91 /* Work Packet control1 configuration */
|
| /optee_os/core/arch/arm/plat-hikey/ |
| H A D | main.c | 99 * which might not work with certain clients. There seems to be no in spi_init() 131 * peripherals will not work either (during bootloader stage) in peripherals_init()
|
| /optee_os/core/arch/arm/plat-rcar/ |
| H A D | romapi.h | 20 * work. All parameters should be aligned to 8 bytes.
|
| /optee_os/core/lib/qcbor/src/ |
| H A D | ieee754.h | 48 * cases the handlng of the NaN payload will work for silent and quiet 76 * to a float or double. Simply casting uValue will usually work but
|
| H A D | ieee754.c | 33 * dependency on any math libraries. It can even work if the CPU 40 * can work. 220 * the work in 64 bits because that is what the end result is. It in IEEE754_HalfToDouble() 327 /* Pull the three parts out of the double-precision float Most work in IEEE754_SingleToHalf() 509 * work is done with uint64_t which helps avoid integer promotions in IEEE754_DoubleToSingle()
|
| /optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
| H A D | platform_util.h | 69 * \note The use of this macro is a work in progress. 90 * \note The use of this macro is a work in progress. 122 * (void)!(result) is known to work up at least up to GCC 10, as well
|
| /optee_os/lib/libutee/arch/arm/gprof/ |
| H A D | gmon.h | 107 * is less than three, this algorithm will not work! 123 * Profiling a test case with 64000 small functions will work if
|
| /optee_os/core/lib/libtomcrypt/src/math/ |
| H A D | rand_prime.c | 39 /* allocate buffer to work with */ in rand_prime()
|
| /optee_os/core/lib/libtomcrypt/src/modes/lrw/ |
| H A D | lrw_setiv.c | 40 /* check if we have to actually do work */ in lrw_setiv()
|