Home
last modified time | relevance | path

Searched full:binaries (Results 1 – 25 of 4503) sorted by relevance

12345678910>>...181

/aosp_15_r20/system/extras/simpleperf/scripts/
H A Dbinary_cache_builder.py18 """binary_cache_builder.py: read perf.data, collect binaries needed by
65 """ Source to find debug binaries. """
70 def collect_binaries(self, binaries: Dict[str, str], binary_cache: BinaryCache):
71 """ pull binaries needed in perf.data to binary_cache.
72 binaries: maps from binary path to its build_id in perf.data.
81 """ Pull binaries from device. """
87 def collect_binaries(self, binaries: Dict[str, str], binary_cache: BinaryCache):
90 for path, build_id in binaries.items():
144 """ Collect binaries from lib dirs. """
153 def collect_binaries(self, binaries: Dict[str, str], binary_cache: BinaryCache):
[all …]
/aosp_15_r20/external/python/cpython3/Tools/msi/
Dget_externals.bat52 set binaries= variable
54 set binaries=%binaries% binutils variable
55 set binaries=%binaries% gpg variable
56 set binaries=%binaries% htmlhelp variable
57 set binaries=%binaries% nuget variable
58 set binaries=%binaries% redist-1 variable
59 set binaries=%binaries% wix-314 variable
61 for %%b in (%binaries%) do (
77 echo.Pull all sources and binaries necessary for compiling optional extension
/aosp_15_r20/system/extras/simpleperf/
H A Dcmd_inject.cpp415 std::vector<AutoFDOBinaryInfo> binaries(lbr_data.binaries.size()); in ConvertLBRDataToAutoFDO() local
418 if (sample.binary_id > binaries.size()) { in ConvertLBRDataToAutoFDO()
422 binaries[sample.binary_id - 1].AddAddress(sample.vaddr_in_file); in ConvertLBRDataToAutoFDO()
429 if (branch.from_binary_id > binaries.size()) { in ConvertLBRDataToAutoFDO()
434 binaries[branch.from_binary_id - 1].AddBranch(branch.from_vaddr_in_file, in ConvertLBRDataToAutoFDO()
444 binaries[branch.from_binary_id - 1].AddRange(begin, end); in ConvertLBRDataToAutoFDO()
448 return binaries; in ConvertLBRDataToAutoFDO()
497 std::optional<std::vector<AutoFDOBinaryInfo>> binaries = ConvertLBRDataToAutoFDO(lbr_data_); in PostProcess() local
498 if (!binaries) { in PostProcess()
502 autofdo_binary_map_[dso] = std::move(binaries.value()[binary_id - 1]); in PostProcess()
[all …]
/aosp_15_r20/external/angle/tools/flex-bison/
H A DREADME.md1 # flex and bison binaries
3 This folder contains the flex and bison binaries. We use these binaries to
7 to update the versions of these binaries in cloud storage. It must be run on
14 Please update Windows, Linux and Mac binaries at the same time. Start with
15 Windows, then merge your work into a single CL that updates all binaries
23 Contact syoussefi for any help with updating the binaries.
25 ## Updating flex and bison binaries
28 following instructions. Note: get the binaries first on windows, as only a
29 single option is available, then build the binaries for the same version on
82 Upload the binaries:
[all …]
/aosp_15_r20/external/libchrome/build/
H A Dget_syzygy_binaries.py6 """A utility script for downloading versioned Syzygy binaries."""
30 # directory state do not agree, then the binaries will be downloaded and
46 ('binaries.zip', 'binaries', 'exe', None),
51 # Name of the MS DIA dll that we need to copy to the binaries directory.
296 """Try to copy the DIA DLL to the binaries exe directory."""
321 """Installs Syzygy binaries. This assumes that the output directory has
375 # Try to copy the DIA binaries to the binaries directory.
387 help='Force an installation even if the binaries are up to date.')
392 help='The path where the binaries will be replaced. Existing binaries '
409 option_parser.add_option('--copy-dia-binaries', action='store_true',
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/link/
H A Dids_limit_test.cpp27 IdsLimit() { binaries.reserve(2u); } in IdsLimit()
57 binaries.push_back({}); in SetUp()
58 spvtest::Binary& binary = binaries.back(); in SetUp()
69 void TearDown() override { binaries.clear(); } in TearDown()
71 spvtest::Binaries binaries; member in spvtools::__anon7d692c4e0111::IdsLimit
98 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
104 spvtest::Binary& binary = binaries.back(); in TEST_F()
115 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
124 spvtest::Binaries binaries = {CreateBinary(0xFFFFFFFFu), in TEST_F() local
129 EXPECT_EQ(SPV_ERROR_INVALID_DATA, Link(binaries, &linked_binary)); in TEST_F()
H A Dglobal_values_amount_test.cpp29 EntryPointsAmountTest() { binaries.reserve(binary_count + 1u); } in EntryPointsAmountTest()
61 binaries.push_back({}); in SetUp()
62 spvtest::Binary& binary = binaries.back(); in SetUp()
75 binaries.push_back(binaries.back()); in SetUp()
78 void TearDown() override { binaries.clear(); } in TearDown()
80 spvtest::Binaries binaries; member in spvtools::__anon5d392f030111::EntryPointsAmountTest
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
91 binaries.push_back({ in TEST_F()
128 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
H A Dbinary_version_test.cpp50 spvtest::Binaries binaries = { in TEST_F() local
56 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
63 spvtest::Binaries binaries = { in TEST_F() local
69 ASSERT_EQ(SPV_ERROR_INTERNAL, Link(binaries, &linked_binary)) in TEST_F()
78 spvtest::Binaries binaries = { in TEST_F() local
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary, options)) in TEST_F()
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/link/
H A Dids_limit_test.cpp27 IdsLimit() { binaries.reserve(2u); } in IdsLimit()
57 binaries.push_back({}); in SetUp()
58 spvtest::Binary& binary = binaries.back(); in SetUp()
69 void TearDown() override { binaries.clear(); } in TearDown()
71 spvtest::Binaries binaries; member in spvtools::__anone025e6c80111::IdsLimit
98 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
104 spvtest::Binary& binary = binaries.back(); in TEST_F()
115 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
124 spvtest::Binaries binaries = {CreateBinary(0xFFFFFFFFu), in TEST_F() local
129 EXPECT_EQ(SPV_ERROR_INVALID_DATA, Link(binaries, &linked_binary)); in TEST_F()
H A Dglobal_values_amount_test.cpp29 EntryPointsAmountTest() { binaries.reserve(binary_count + 1u); } in EntryPointsAmountTest()
61 binaries.push_back({}); in SetUp()
62 spvtest::Binary& binary = binaries.back(); in SetUp()
75 binaries.push_back(binaries.back()); in SetUp()
78 void TearDown() override { binaries.clear(); } in TearDown()
80 spvtest::Binaries binaries; member in spvtools::__anon3848293d0111::EntryPointsAmountTest
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
91 binaries.push_back({ in TEST_F()
128 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
H A Dbinary_version_test.cpp50 spvtest::Binaries binaries = { in TEST_F() local
56 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
63 spvtest::Binaries binaries = { in TEST_F() local
69 ASSERT_EQ(SPV_ERROR_INTERNAL, Link(binaries, &linked_binary)) in TEST_F()
78 spvtest::Binaries binaries = { in TEST_F() local
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary, options)) in TEST_F()
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/link/
Dids_limit_test.cpp27 IdsLimit() { binaries.reserve(2u); } in IdsLimit()
57 binaries.push_back({}); in SetUp()
58 spvtest::Binary& binary = binaries.back(); in SetUp()
69 void TearDown() override { binaries.clear(); } in TearDown()
71 spvtest::Binaries binaries; member in spvtools::__anon5dbdff540111::IdsLimit
98 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
104 spvtest::Binary& binary = binaries.back(); in TEST_F()
115 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
124 spvtest::Binaries binaries = {CreateBinary(0xFFFFFFFFu), in TEST_F() local
129 EXPECT_EQ(SPV_ERROR_INVALID_DATA, Link(binaries, &linked_binary)); in TEST_F()
Dglobal_values_amount_test.cpp29 EntryPointsAmountTest() { binaries.reserve(binary_count + 1u); } in EntryPointsAmountTest()
61 binaries.push_back({}); in SetUp()
62 spvtest::Binary& binary = binaries.back(); in SetUp()
75 binaries.push_back(binaries.back()); in SetUp()
78 void TearDown() override { binaries.clear(); } in TearDown()
80 spvtest::Binaries binaries; member in spvtools::__anon9cb852490111::EntryPointsAmountTest
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
91 binaries.push_back({ in TEST_F()
128 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
Dbinary_version_test.cpp50 spvtest::Binaries binaries = { in TEST_F() local
56 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage(); in TEST_F()
63 spvtest::Binaries binaries = { in TEST_F() local
69 ASSERT_EQ(SPV_ERROR_INTERNAL, Link(binaries, &linked_binary)) in TEST_F()
78 spvtest::Binaries binaries = { in TEST_F() local
86 ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary, options)) in TEST_F()
/aosp_15_r20/external/python/cpython3/PCbuild/
Dget_externals.bat76 echo.Fetching external binaries...
78 set binaries= variable
79 if NOT "%IncludeLibffi%"=="false" set binaries=%binaries% libffi-3.4.4 variable
80 if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-1.1.1u variable
81 if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.12.1 variable
82 if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06 variable
84 for %%b in (%binaries%) do (
103 echo.Pull all sources and binaries necessary for compiling optional extension
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Object/
H A DOffloadBinary.cpp38 SmallVectorImpl<OffloadFile> &Binaries) { in extractOffloadFiles() argument
40 // There could be multiple offloading binaries stored at this section. in extractOffloadFiles()
61 Binaries.emplace_back(std::move(*NewBinaryOrErr), std::move(BufferCopy)); in extractOffloadFiles()
69 // Extract offloading binaries from an Object file \p Obj.
71 SmallVectorImpl<OffloadFile> &Binaries) { in extractFromObject() argument
95 if (Error Err = extractOffloadFiles(Contents, Binaries)) in extractFromObject()
103 SmallVectorImpl<OffloadFile> &Binaries) { in extractFromBitcode() argument
137 if (Error Err = extractOffloadFiles(Contents, Binaries)) in extractFromBitcode()
145 SmallVectorImpl<OffloadFile> &Binaries) { in extractFromArchive() argument
162 if (Error Err = extractOffloadBinaries(*ChildBuffer, Binaries)) in extractFromArchive()
[all …]
/aosp_15_r20/external/gptfdisk/
H A DREADME.Windows35 binaries, which include the strings "32" or "64" in their names. The 32-bit
36 binaries work fine on most versions of Windows, but some 64-bit
38 the 64-bit binaries.
89 The Windows binaries I've compiled do not support Unicode UTF-16LE GPT
132 cross-compiler. This system can compile the gdisk and fixparts binaries with
135 you can type "TARGET=win32 make" to compile 32-bit binaries, and
136 "TARGET=win64 make" to compile 64-bit binaries. This will attempt to build
139 binaries by specifying them, as in "TARGET=win64 make gdisk" to build the
147 mingw-w64-x86_64-ncurses" if you want to compile 64-bit binaries; change
169 For 32-bit binaries, change /mingw64 to /mingw32 on the Windows source and
[all …]
/aosp_15_r20/external/coreboot/Documentation/util/ifdtool/
H A Dbinary_extraction.md3 ## Part 1: Extracting Binaries
5 To begin extracting the binaries, first create a directory labeled "binaries"
6 in the coreboot directory (i.e. /path/to/coreboot/binaries/).
8 Now, execute the following commands to extract the binaries from a ROM image.
17 binaries from, including the file path (ex. /build/coreboot.rom).
19 Copy the extracted .bin files to the binaries directory you created previously.
33 ./cbfstool coreboot.rom extract -n mrc.bin -f /path/to/coreboot/binaries/mrc.bin
53 To begin using the binaries extracted above, enable the use of binary
62 To add the binaries you extracted, select "Chipset". Scroll and select "Add a
/aosp_15_r20/external/apache-commons-lang/src/site/xdoc/
H A Ddownload_lang.xml117 <subsection name="Binaries">
120 …<td><a href="[preferred]/commons/lang/binaries/commons-lang3-3.12.0-bin.tar.gz">commons-lang3-3.12…
121 …<td><a href="https://www.apache.org/dist/commons/lang/binaries/commons-lang3-3.12.0-bin.tar.gz.sha…
122 …<td><a href="https://www.apache.org/dist/commons/lang/binaries/commons-lang3-3.12.0-bin.tar.gz.asc…
125 …<td><a href="[preferred]/commons/lang/binaries/commons-lang3-3.12.0-bin.zip">commons-lang3-3.12.0-…
126 …<td><a href="https://www.apache.org/dist/commons/lang/binaries/commons-lang3-3.12.0-bin.zip.sha512…
127 …<td><a href="https://www.apache.org/dist/commons/lang/binaries/commons-lang3-3.12.0-bin.zip.asc">p…
147 <subsection name="Binaries">
150 …<td><a href="[preferred]/commons/lang/binaries/commons-lang-2.6-bin.tar.gz">commons-lang-2.6-bin.t…
151 …<td><a href="https://www.apache.org/dist/commons/lang/binaries/commons-lang-2.6-bin.tar.gz.sha512"…
[all …]
/aosp_15_r20/external/OpenCL-CTS/test_conformance/spirv_new/
H A Dassemble_spirv.py19 """Assembles the SPIR-V assembly files used by spirv_new into binaries,
23 binaries to be generated.
43 """Assemble SPIR-V source into binaries."""
76 """Validates SPIR-V binaries. Ignores known failures."""
99 print('All SPIR-V binaries validated successfully.')
109 binaries, and validates them using spirv-val. Either run this
112 the assembly files and the binaries to be generated.
147 print('Assembling SPIR-V source into binaries...')
150 print('Finished assembling SPIR-V binaries.')
154 print('Skipping validation of SPIR-V binaries as requested.')
[all …]
/aosp_15_r20/external/coreboot/util/amdfwtool/
H A Dsigned_psp.c16 /* Defines related to hashing signed binaries */
287 * process_signed_psp_firmwares() - Process the signed PSP binaries to keep them separate
288 * @signed_rom: Output file path grouping all the signed PSP binaries.
289 * @fw_table: Table of all the PSP firmware entries/binaries to be processed.
291 * the signed PSP binaries.
292 * @soc_id: SoC ID of the PSP binaries.
330 /* Keep the file along with set of unsigned PSP binaries & continue. */ in process_signed_psp_firmwares()
337 /* Keep the file along with set of unsigned PSP binaries & continue. */ in process_signed_psp_firmwares()
345 /* Keep the file along with set of unsigned PSP binaries & continue. */ in process_signed_psp_firmwares()
361 /* PSP binary is not signed and should not be part of signed PSP binaries in process_signed_psp_firmwares()
[all …]
/aosp_15_r20/external/webp/
H A Dbuild.gradle57 binaries {
268 binaries {
284 binaries {
300 binaries {
323 binaries {
340 binaries {
360 binaries {
381 binaries {
400 binaries {
421 binaries {
[all …]
/aosp_15_r20/external/pigweed/pw_bloat/
H A Dbloat.gni22 # capacities for the target binaries.
34 # layout of the binaries as specified in the linker script.
105 binaries = _binary_args
252 # omitted if all binaries provide their own base.
258 # binaries: List of executables to compare in the diff.
273 # binaries = [
314 # Process each of the binaries, creating an object and storing all the
319 foreach(binary, invoker.binaries) {
321 "Size report binaries must define 'label' and 'target' variables")
377 binaries = _binaries_args
[all …]
/aosp_15_r20/external/coreboot/src/drivers/intel/fsp2_0/
H A DKconfig61 Specify if the FSP binaries are 32-bits (yes) or 64-bits
68 Select this, if the FSP binaries for the platform are public
73 bool "Use binaries of the Intel FSP repository on GitHub"
78 Select this option to use the default FSP headers and binaries
91 bool "Add Intel FSP 2.0 binaries to CBFS" if !FSP_USE_REPO
94 Add the FSP-M and FSP-S binaries to CBFS.
100 The platform uses two sets of FSP-M/FSP-S binaries and selects the
102 binaries depending on CPU stepping, so supporting any stepping
130 binaries and split the file at build-time.
136 and FSP-S binaries. The file gets split at build-time.
[all …]
/aosp_15_r20/development/vndk/tools/header-checker/android/
H A Dbuild-prebuilts.sh118 binaries=()
120 binaries+=("${SOONG_HOST_OUT}/bin/${name}")
123 # Build binaries and shared libs
125 "${binaries[@]}" "${SOONG_TESTS[@]}"
127 # Copy binaries and shared libs
130 if [ -n "${binaries}" ]; then
131 cp "${binaries[@]}" "${SOONG_DIST}/bin"
162 # Package binaries and shared libs
164 echo "DIST_DIR is empty. Skip zipping binaries."

12345678910>>...181