HomeSort by relevance Sort by last modified time
    Searched refs:bitness (Results 1 - 14 of 14) sorted by null

  /external/linux-kselftest/tools/testing/selftests/x86/
sigreturn.c 343 * Checks a given selector for its code bitness or returns -1 if it's not
372 return -1; /* Unknown bitness. */
376 * Checks a given selector for its code bitness or returns -1 if it's not
553 /* Finds a usable code segment of the requested bitness. */
554 int find_cs(int bitness)
560 if (cs_bitness(my_cs) == bitness)
562 if (cs_bitness(my_cs + (2 << 3)) == bitness)
564 if (my_cs > (2<<3) && cs_bitness(my_cs - (2 << 3)) == bitness)
566 if (cs_bitness(code16_sel) == bitness)
569 printf("[WARN]\tCould not find %d-bit CS\n", bitness);
    [all...]
  /external/libcxx/
run_tests.py 61 self.add_argument('--bitness', choices=(32, 64), type=int, default=32)
118 def get_build_cmds(bitness, host):
128 exe_name = 'libcxx_test_template' + str(bitness)
165 cc, cflags, ldflags = get_build_cmds(args.bitness, args.host)
  /art/build/apex/
art_apex_test.py 680 if test_args.bitness not in ['32', '64', 'multilib', 'auto']:
681 logging.error('--bitness needs to be one of 32|64|multilib|auto')
700 if test_args.bitness == 'auto':
701 logging.warning('--bitness=auto, trying to autodetect. This may be incorrect!')
706 test_args.bitness = 'multilib'
709 test_args.bitness = '32'
712 test_args.bitness = '64'
714 logging.error(' Could not detect bitness, neither lib nor lib64 contained.')
718 if test_args.bitness == '32':
720 elif test_args.bitness == '64'
    [all...]
  /external/v8/tools/
gdb-v8-support.py 97 def decode_v8_value(v, bitness):
100 if bitness == 32:
  /external/tensorflow/tensorflow/contrib/cmake/tools/
create_def_file.py 95 parser.add_argument("--bitness", help="build target bitness", required=True)
134 if args.bitness == "64":
  /cts/tests/jdwp/runner/host-side/src/com/android/compatibility/testtype/
DalvikTest.java 107 // Command to run the VM, args are bitness, classpath, dalvik-args, abi, runner-args,
348 String bitness = AbiUtils.getBitness(abiName); local
401 dalvikArgs = dalvikArgs.replace("|#ABI#|", bitness);
418 final String command = String.format(COMMAND, bitness,
  /external/python/cpython2/Lib/distutils/
util.py 86 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
87 machine += ".%s" % bitness[sys.maxint]
  /external/python/cpython3/Lib/distutils/
util.py 74 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
75 machine += ".%s" % bitness[sys.maxsize]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sysconfig.py 592 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
593 machine += ".%s" % bitness[sys.maxint]
  /external/python/cpython2/Lib/
sysconfig.py 597 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
598 machine += ".%s" % bitness[sys.maxint]
  /external/python/cpython3/Lib/
sysconfig.py 660 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
661 machine += ".%s" % bitness[sys.maxsize]
  /build/make/core/
main.mk 594 define target-select-bitness-of-required-modules
609 $(call target-select-bitness-of-required-modules)
611 define host-select-bitness-of-required-modules
626 $(call host-select-bitness-of-required-modules)
628 define host-cross-select-bitness-of-required-modules
645 $(call host-cross-select-bitness-of-required-modules)
    [all...]
envsetup.mk 401 # It always points to the path where we build libraries in the default bitness.
    [all...]
  /external/llvm/tools/sancov/
sancov.cc 112 uint32_t Bitness;
593 switch (Header->Bitness) {
603 errs() << "Unsupported bitness: " << Header->Bitness;
    [all...]

Completed in 535 milliseconds