Home
last modified time | relevance | path

Searched refs:bitness (Results 1 – 7 of 7) sorted by relevance

/art/tools/luci/config/generated/
Dcr-buildbucket.cfg26 properties_j: "bitness:32"
57 properties_j: "bitness:32"
88 properties_j: "bitness:32"
117 properties_j: "bitness:64"
148 properties_j: "bitness:64"
179 properties_j: "bitness:64"
208 properties_j: "bitness:32"
239 properties_j: "bitness:64"
271 properties_j: "bitness:64"
302 properties_j: "bitness:32"
[all …]
/art/tools/luci/config/
Dmain.star204 bitness,
215 check_arg(bitness, [32, 64])
231 product = "armv8" if bitness == 64 else "arm_krait"
246 "bitness": bitness,
/art/oatdump/
Doatdump_test.h81 bool bitness) { in GetExecutableFilePath() argument
89 if (bitness) { in GetExecutableFilePath()
95 static std::string GetExecutableFilePath(Flavor flavor, const char* name, bool bitness) { in GetExecutableFilePath() argument
96 return GetExecutableFilePath(name, kIsDebugBuild, flavor == Flavor::kStatic, bitness); in GetExecutableFilePath()
/art/build/apex/
Druntests.sh98 --bitness=32|64|multilib|auto passed on to art_apex_test.py
114 (--bitness=*) device_bitness_arg=$1;;
Dart_apex_test.py968 if test_args.bitness == BITNESS_AUTO:
974 test_args.bitness = BITNESS_MULTILIB
977 test_args.bitness = BITNESS_32
980 test_args.bitness = BITNESS_64
986 if test_args.bitness == BITNESS_32:
988 elif test_args.bitness == BITNESS_64:
991 assert test_args.bitness == BITNESS_MULTILIB
1039 test_args.bitness = BITNESS_AUTO
/art/libnativeloader/
Dpublic_libraries.h66 Bitness bitness; member
Dpublic_libraries.cpp472 struct ConfigEntry entry = {.soname = "", .nopreload = false, .bitness = ALL}; in ParseConfig()
478 if (entry.bitness != ALL) { in ParseConfig()
481 entry.bitness = tokens[i] == "32" ? ONLY_32 : ONLY_64; in ParseConfig()
492 if (entry.bitness == ONLY_32) continue; in ParseConfig()
494 if (entry.bitness == ONLY_64) continue; in ParseConfig()