| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/ |
| H A D | 0021-llvm-Insert-anchor-for-adding-OE-distro-vendor-names.patch | 17 llvm/lib/Support/Triple.cpp | 2 +- 20 diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp 22 --- a/llvm/lib/Support/Triple.cpp 23 +++ b/llvm/lib/Support/Triple.cpp 24 @@ -506,7 +506,7 @@ static Triple::VendorType parseVendor(StringRef VendorName) { 25 .Case("amd", Triple::AMD) 26 .Case("mesa", Triple::Mesa) 27 .Case("suse", Triple::SUSE) 28 - .Case("oe", Triple::OpenEmbedded) 29 + .Case("oe", Triple::OpenEmbedded)//CLANG_EXTRA_OE_VENDORS_CASES [all …]
|
| H A D | 0006-clang-driver-Check-sysroot-for-ldso-path.patch | 29 case llvm::Triple::ppc64le: 38 case llvm::Triple::riscv32: { 39 StringRef ABIName = tools::riscv::getRISCVABI(Args, Triple); 41 case llvm::Triple::sparcv9: 49 case llvm::Triple::systemz: 61 case llvm::Triple::ve:
|
| H A D | 0031-Fix-lib-paths-for-OpenEmbedded-Host.patch | 37 For OpenEmbedded Host, sysroots are of the form<sysroot>/usr/lib/<triple>/x.y.z. 38 Take x86-64 as example, the default triple is x86_64-unknown-linux-gnu. 63 const llvm::Triple &TargetTriple, const ArgList &Args, 67 // Locations relative to the system lib directory where GCC's triple-specific 73 TargetTriple.getVendor() == llvm::Triple::Freescale || 74 - TargetTriple.getVendor() == llvm::Triple::OpenEmbedded}, 75 + TargetTriple.getVendor() == llvm::Triple::OpenEmbedded ||
|
| H A D | 0010-clang-Define-releative-gcc-installation-dir.patch | 21 // Whether this library suffix is relevant for the triple. 31 // <sysroot>/usr/lib/<triple>/x.y.z so have a look there as well. Only do 35 TargetTriple.getVendor() == llvm::Triple::Freescale || 36 - TargetTriple.getVendor() == llvm::Triple::OpenEmbedded}}; 37 + TargetTriple.getVendor() == llvm::Triple::OpenEmbedded},
|
| H A D | 0024-clang-Fix-x86-triple-for-non-debian-multiarch-linux-.patch | 4 Subject: [PATCH] clang: Fix x86 triple for non-debian multiarch linux distros 19 GCCInstallation.getTriple().getArch() == llvm::Triple::x86 22 + // OpenEmbedded does not hardcode the triple to i386-linux-gnu like debian 23 + if (GCCInstallation.getTriple().getVendor() == llvm::Triple::OpenEmbedded)
|
| H A D | 0008-clang-Prepend-trailing-to-sysroot.patch | 30 @@ -181,7 +181,7 @@ Linux::Linux(const Driver &D, const llvm::Triple &Triple, const ArgList &Args) 33 llvm::Triple::ArchType Arch = Triple.getArch();
|
| H A D | 0032-Correct-library-search-path-for-OpenEmbedded-Host.patch | 8 So the library search path is not found with default triple 79 if (TargetEnvironment == llvm::Triple::GNUX32) 83 case llvm::Triple::aarch64:
|
| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/ |
| H A D | llvm-project-source.inc | 32 # ":" separated the ID in "/etc/os-release" and the triple for finding gcc on this OE DISTRO. 40 triple = "" 55 case += '\\n .Case("' + vendor_to_add + '", Triple::OpenEmbedded)' 56 triple += ' "x86_64-' + vendor_to_add + '-linux",' 60 bb.note("in llvm/lib/Support/Triple.cpp and ${S}/clang/lib/Driver/ToolChains/Gnu.cpp") 61 … -i 's#//CLANG_EXTRA_OE_VENDORS_TRIPLES#%s#g' ${S}/clang/lib/Driver/ToolChains/Gnu.cpp" % (triple)) 63 …cmd = d.expand("sed -i 's#//CLANG_EXTRA_OE_VENDORS_CASES#%s#g' -i ${S}/llvm/lib/Support/Triple.cpp… 68 triple = "" 77 …triple += '\\n if (Distro.Is' + distro_id.upper() + '())\\n return "x86_64-' + distro_triple… 88 …-i 's#//CLANG_EXTRA_OE_DISTRO_TRIPLES#%s#g' ${S}/clang/lib/Driver/ToolChains/Linux.cpp" % (triple))
|
| /OK3568_Linux_fs/kernel/drivers/staging/rtl8192e/ |
| H A D | dot11d.c | 115 struct chnl_txpow_triple *triple; in dot11d_update_country() local 121 triple = (struct chnl_txpow_triple *)(country + 3); in dot11d_update_country() 123 if (max_channel_number >= triple->first_channel) { in dot11d_update_country() 129 if (MAX_CHANNEL_NUMBER < (triple->first_channel + in dot11d_update_country() 130 triple->num_channels)) { in dot11d_update_country() 137 for (j = 0; j < triple->num_channels; j++) { in dot11d_update_country() 138 dot11d_info->channel_map[triple->first_channel + j] = 1; in dot11d_update_country() 139 dot11d_info->max_tx_power_list[triple->first_channel + j] = in dot11d_update_country() 140 triple->max_tx_power; in dot11d_update_country() 141 max_channel_number = triple->first_channel + j; in dot11d_update_country() [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/cmake/toolchains/ |
| H A D | clang.cmake | 43 set(triple ${TOOLCHAIN_TRIPLE}) variable 45 set(CMAKE_ASM_COMPILER_TARGET ${triple}) 48 set(CMAKE_C_COMPILER_TARGET ${triple}) 51 set(CMAKE_CXX_COMPILER_TARGET ${triple})
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/media_enquiry/cmake/toolchains/ |
| H A D | clang.cmake | 43 set(triple ${TOOLCHAIN_TRIPLE}) variable 45 set(CMAKE_ASM_COMPILER_TARGET ${triple}) 48 set(CMAKE_C_COMPILER_TARGET ${triple}) 51 set(CMAKE_CXX_COMPILER_TARGET ${triple})
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/cmake/toolchains/ |
| H A D | clang.cmake | 43 set(triple ${TOOLCHAIN_TRIPLE}) variable 45 set(CMAKE_ASM_COMPILER_TARGET ${triple}) 48 set(CMAKE_C_COMPILER_TARGET ${triple}) 51 set(CMAKE_CXX_COMPILER_TARGET ${triple})
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/IspFec/cmake/toolchains/ |
| H A D | clang.cmake | 43 set(triple ${TOOLCHAIN_TRIPLE}) variable 45 set(CMAKE_ASM_COMPILER_TARGET ${triple}) 48 set(CMAKE_C_COMPILER_TARGET ${triple}) 51 set(CMAKE_CXX_COMPILER_TARGET ${triple})
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/mbedtls/ |
| H A D | des.h | 73 * \brief Triple-DES context structure 108 * \brief Initialize Triple-DES context 115 * \brief Clear Triple-DES context 193 * \brief Triple-DES key schedule (112-bit, encryption) 204 * \brief Triple-DES key schedule (112-bit, decryption) 215 * \brief Triple-DES key schedule (168-bit, encryption) 226 * \brief Triple-DES key schedule (168-bit, decryption)
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/mbedtls/ |
| H A D | des.h | 73 * \brief Triple-DES context structure 108 * \brief Initialize Triple-DES context 115 * \brief Clear Triple-DES context 193 * \brief Triple-DES key schedule (112-bit, encryption) 204 * \brief Triple-DES key schedule (112-bit, decryption) 215 * \brief Triple-DES key schedule (168-bit, encryption) 226 * \brief Triple-DES key schedule (168-bit, decryption)
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/mbedtls/ |
| H A D | des.h | 73 * \brief Triple-DES context structure 108 * \brief Initialize Triple-DES context 115 * \brief Clear Triple-DES context 193 * \brief Triple-DES key schedule (112-bit, encryption) 204 * \brief Triple-DES key schedule (112-bit, decryption) 215 * \brief Triple-DES key schedule (168-bit, encryption) 226 * \brief Triple-DES key schedule (168-bit, decryption)
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/mbedtls/ |
| H A D | des.h | 73 * \brief Triple-DES context structure 108 * \brief Initialize Triple-DES context 115 * \brief Clear Triple-DES context 193 * \brief Triple-DES key schedule (112-bit, encryption) 204 * \brief Triple-DES key schedule (112-bit, decryption) 215 * \brief Triple-DES key schedule (168-bit, encryption) 226 * \brief Triple-DES key schedule (168-bit, decryption)
|
| /OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/altera/ |
| H A D | altera_tse.rst | 6 Altera Triple-Speed Ethernet MAC driver 11 This is the driver for the Altera Triple-Speed Ethernet (TSE) controllers 24 The Triple-Speed Ethernet, SGDMA, and MSGDMA components are all soft IP 31 Triple-Speed Ethernet instance is using an SGDMA or MSGDMA component. The 61 Altera Triple-Speed Ethernet MAC support (ALTERA_TSE) 154 - Altera Triple Speed Ethernet User Guide, found at http://www.altera.com
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/altera/ |
| H A D | Kconfig | 3 tristate "Altera Triple-Speed Ethernet MAC support" 7 This driver supports the Altera Triple-Speed (TSE) Ethernet MAC.
|
| /OK3568_Linux_fs/kernel/drivers/mux/ |
| H A D | adg792a.c | 3 * Multiplexer driver for Analog Devices ADG792A/G Triple 4:1 mux 122 dev_info(dev, "triple pole quadruple throw mux registered\n"); in adg792a_probe() 151 MODULE_DESCRIPTION("Analog Devices ADG792A/G Triple 4:1 mux driver");
|
| /OK3568_Linux_fs/kernel/include/crypto/ |
| H A D | des.h | 3 * DES & Triple DES EDE Cipher Algorithms. 45 * des3_ede_expand_key - Expand a triple DES input key into a key schedule
|
| /OK3568_Linux_fs/buildroot/package/llvm/ |
| H A D | llvm.mk | 51 # "No available targets are compatible for this triple" with llvmpipe when host 192 # LLVM_HOST_TRIPLE has a misleading name, it is in fact the triple of the 193 # system where llvm is going to run on. We need to specify triple for native 195 # This solves "No available targets are compatible for this triple" with llvmpipe
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/crypto/ |
| H A D | atmel-crypto.txt | 25 * Triple Data Encryption Standard (Triple DES)
|
| /OK3568_Linux_fs/yocto/meta-browser/meta-firefox/classes/ |
| H A D | rust-common-without-python3native.bbclass | 99 # - BUILD_SYS - Yocto triple of the build environment 114 # - triple suffix (e.g. CC:x86_64_unknown_linux_gnu) - both 117 # its likely best to not use the triple suffix due to potential confusion.
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | rust-common.bbclass | 99 # - BUILD_SYS - Yocto triple of the build environment 114 # - triple suffix (e.g. CC:x86_64_unknown_linux_gnu) - both 117 # its likely best to not use the triple suffix due to potential confusion.
|