/haiku/src/kits/support/ |
H A D | Architecture.cpp | 18 string_array_to_string_list(const char* const* architectures, size_t count, in string_array_to_string_list() argument 24 BString architecture(architectures[i]); in string_array_to_string_list() 38 const char* architectures[kMaxArchitectureCount]; in get_secondary_architectures() local 39 size_t count = get_secondary_architectures(architectures, in get_secondary_architectures() 41 return string_array_to_string_list(architectures, in get_secondary_architectures() 49 const char* architectures[kMaxArchitectureCount]; in get_architectures() local 50 size_t count = get_architectures(architectures, kMaxArchitectureCount); in get_architectures() 51 return string_array_to_string_list(architectures, in get_architectures()
|
/haiku/src/bin/ |
H A D | getarch.cpp | 56 BStringList architectures; in get_current_architecture() local 57 get_architectures(architectures); in get_current_architecture() 58 if (architectures.CountStrings() < 2) in get_current_architecture() 64 int32 architectureCount = architectures.CountStrings(); in get_current_architecture() 67 if (pathFinder.FindPath(architectures.StringAt(i), in get_current_architecture() 91 return architectures.StringAt(index); in get_current_architecture() 155 BStringList architectures; in main() local 156 get_secondary_architectures(architectures); in main() 157 int32 count = architectures.CountStrings(); in main() 159 printf("%s\n", architectures.StringAt(i).String()); in main()
|
H A D | setarch.cpp | 182 BStringList architectures; in main() local 183 status_t error = get_architectures(architectures); in main() 195 int32 count = architectures.CountStrings(); in main() 197 printf("%s\n", architectures.StringAt(i).String()); in main() 214 if (!architectures.HasString(architecture)) { in main()
|
/haiku/docs/user/support/ |
H A D | Architecture.dox | 20 architectures of the system. 52 \fn size_t get_secondary_architectures(const char** architectures, 54 \brief Returns the names of the system's secondary architectures. 56 These are the packaging architectures the system does provide additional 60 executables, the function will not return any secondary architectures, even 63 \param architectures A pre-allocated array of size \a count where the names 64 of the secondary architectures will be stored. Can be \c NULL, if 66 \param count The size of the \a architectures array. 68 \return The actual number of secondary architectures. May be greater than 70 \a architectures. [all …]
|
/haiku/src/system/libroot/os/ |
H A D | Architecture.cpp | 66 __get_secondary_architectures(const char** architectures, size_t count) in __get_secondary_architectures() argument 79 architectures[index] = architecture; in __get_secondary_architectures() 89 __get_architectures(const char** architectures, size_t count) in __get_architectures() argument 94 architectures[0] = __get_primary_architecture(); in __get_architectures() 95 return __get_secondary_architectures(architectures + 1, count -1) + 1; in __get_architectures()
|
/haiku/headers/private/system/ |
H A D | architecture_private.h | 17 size_t __get_secondary_architectures(const char** architectures, 19 size_t __get_architectures(const char** architectures, size_t count);
|
/haiku/headers/os/support/ |
H A D | Architecture.h | 18 size_t get_secondary_architectures(const char** architectures, 20 size_t get_architectures(const char** architectures, size_t count);
|
/haiku/docs/develop/kernel/arch/ |
H A D | index.rst | 1 CPU architectures
|
/haiku/docs/develop/kernel/arch/arm/ |
H A D | overview.rst | 5 systems. They don't have a lot of shared code as the two architectures are very different from 19 There will be no support for hardware using architectures older than ARMv5. There will probably be 20 no support for architectures before ARMv7, which require more work on the compiler and OS, for 64 this on older (pre-ARMv7) architectures. We possibly have to do something 75 allow targetting architectures with or without FPU, and using either ARM
|
/haiku/3rdparty/docker/cross-compiler/ |
H A D | Dockerfile | 36 # architectures to build
|
/haiku/docs/develop/packages/ |
H A D | HybridBuilds.rst | 8 different (packaging) architectures ("x86_gcc2" and "x86"), we can now speak of 18 supporting multiple secondary architectures (e.g. x86_64+x86+x86_gcc2), though
|
H A D | Migration.rst | 158 configured architectures, e.g. for a gcc2/gcc4 hybrid "x86_gcc2 x86". 161 be built for all architectures. That is done in a loop which sets
|
/haiku/build/jam/ |
H A D | ArchitectureRules | 850 rule MultiArchSubDirSetup architectures 852 # MultiArchSubDirSetup <architectures> ; 854 # For each of the given packaging architectures <architectures> that are 855 # in the packaging architectures configured for the build (or all configured 856 # packaging architectures, if <architectures> is empty) an object is 866 architectures ?= $(TARGET_PACKAGING_ARCHS) ; 868 for architecture in $(architectures) {
|
H A D | OptionalPackages | 88 # gcc and binutils (for all target architectures)
|
H A D | DefaultBuildProfiles | 144 # primary gcc 8 architectures or gcc 2 hybrids.
|
H A D | SystemLibraryRules | 12 # libstdc++.so for other architectures comes with the gcc_syslibs
|
H A D | BuildSetup | 103 # object directories common to all architectures 553 # for all architectures (e.g. TARGET_DEFINES).
|
/haiku/ |
H A D | Jamfile | 63 # secondary architectures
|
H A D | ReadMe.Compiling.md | 235 New architectures (and occasionally existing ones) will require a bootstrap
|
/haiku/docs/develop/build/ |
H A D | jam.rst | 11 attributes even on operating systems that don't support them. Various target architectures also 152 Management of compiler flags for different CPU architectures and "hybrid builds" where two
|
/haiku/docs/develop/build/repositories/ |
H A D | README.rst | 54 (ARCH) corresponds with the architectures. Note that where an ARCH like x86_64
|
/haiku/src/bin/unzip/ |
H A D | unzipsfx.txt | 264 that it is not portable across architectures or operating 266 For some architectures there is limited portability, how-
|
/haiku/docs/user/drivers/ |
H A D | KernelExport.dox | 381 Some CPU and cache architectures do not automatically ensure consistency between the CPU cache, 391 Some CPU and cache architectures do not automatically ensure consistency between the CPU cache,
|
/haiku/docs/develop/release/ |
H A D | cookbook.rst | 63 * Begin building "Test Candidate" (TC0, TC1, TC2, etc) images for target architectures (x86_gcc2h, …
|
/haiku/docs/develop/kits/opengl/ |
H A D | accelerant-interfaces | 74 of stacks: some architectures point to the first 'free' location, some to the 'last used'
|