HomeSort by relevance Sort by last modified time
    Searched refs:machine (Results 426 - 450 of 1088) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
75 # At least on Linux/Intel, 'machine' is the processor --
78 return "%s-%s" % (osname, machine)
87 machine += ".%s" % bitness[sys.maxint]
88 # fall through to standard osname-release-machine representation
101 osname, release, machine = _osx_support.get_platform_osx
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
75 # At least on Linux/Intel, 'machine' is the processor --
78 return "%s-%s" % (osname, machine)
87 machine += ".%s" % bitness[sys.maxint]
88 # fall through to standard osname-release-machine representation
101 osname, release, machine = _osx_support.get_platform_osx
    [all...]
  /external/v8/src/compiler/
simplified-lowering.cc 33 // Representation selection and lowering of {Simplified} operators to machine
37 // machine representation after this phase, as dictated by the machine
    [all...]
js-intrinsic-lowering.cc 131 graph()->NewNode(machine()->Float64InsertHighWord32(),
132 graph()->NewNode(machine()->Float64InsertLowWord32(),
159 return Change(node, machine()->Float64ExtractHighWord32());
164 return Change(node, machine()->Float64ExtractLowWord32());
186 graph()->NewNode(machine()->Int32Add(), load, jsgraph()->OneConstant());
217 Node* vfalse = graph()->NewNode(machine()->Word32Equal(), efalse,
261 graph()->NewNode(machine()->Uint32LessThanOrEqual(),
305 machine()->Uint32LessThanOrEqual(),
333 return Change(node, machine()->Word32Clz());
338 if (!machine()->Float64RoundDown().IsSupported()) return NoChange()
691 MachineOperatorBuilder* JSIntrinsicLowering::machine() const { function in class:v8::internal::compiler::JSIntrinsicLowering
    [all...]
machine-operator-reducer.cc 5 #include "src/compiler/machine-operator-reducer.h"
47 Node* const node = graph()->NewNode(machine()->Word32And(), lhs, rhs);
55 return graph()->NewNode(machine()->Word32Sar(), lhs, Uint32Constant(rhs));
61 return graph()->NewNode(machine()->Word32Shr(), lhs, Uint32Constant(rhs));
66 return graph()->NewNode(machine()->Word32Equal(), lhs, rhs);
71 Node* const node = graph()->NewNode(machine()->Int32Add(), lhs, rhs);
78 Node* const node = graph()->NewNode(machine()->Int32Sub(), lhs, rhs);
85 return graph()->NewNode(machine()->Int32Mul(), lhs, rhs);
94 Node* quotient = graph()->NewNode(machine()->Int32MulHigh(), dividend,
115 Node* quotient = graph()->NewNode(machine()->Uint32MulHigh(), dividend
1082 MachineOperatorBuilder* MachineOperatorReducer::machine() const { function in class:v8::internal::compiler::MachineOperatorReducer
    [all...]
wasm-compiler.cc 22 #include "src/compiler/machine-operator.h"
116 graph()->NewNode(jsgraph()->machine()->Word32Equal(), node,
132 graph()->NewNode(jsgraph()->machine()->Word64Equal(), node,
379 MachineOperatorBuilder* m = jsgraph()->machine();
395 Branch(graph()->NewNode(jsgraph()->machine()->Word32Equal(), right,
415 graph()->NewNode(jsgraph()->machine()->Word32Equal(), right,
480 // TODO(titzer): query the machine operator builder here instead of #ifdef.
495 Branch(graph()->NewNode(jsgraph()->machine()->Word64Equal(), right,
516 graph()->NewNode(jsgraph()->machine()->Word64Equal(), right,
664 MachineOperatorBuilder* m = jsgraph()->machine();
1399 MachineOperatorBuilder* machine = jsgraph()->machine(); local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-elf.c 321 /* Elf machine number. */
322 unsigned short machine; member in struct:simple_object_elf_read
345 /* Elf machine number. */
346 unsigned short machine; member in struct:simple_object_elf_attributes
420 eor->machine = ELF_FETCH_FIELD (type_functions, ei_class, Ehdr, ehdr,
596 ret->machine = eor->machine;
625 if (to->machine != from->machine)
632 switch (to->machine)
    [all...]
  /external/autotest/server/
site_utils.py 682 def get_hostname_from_machine(machine):
683 """Lookup hostname from a machine string or dict.
685 @returns: Machine hostname in string format.
687 hostname, _ = get_host_info_from_machine(machine)
691 def get_host_info_from_machine(machine):
692 """Lookup host information from a machine string or dict.
696 if isinstance(machine, dict):
697 return (machine['hostname'], machine['host_attributes'])
699 return (machine, {})
    [all...]
site_server_job.py 18 the platform of the first machine instead of machine1,machine2,... This
32 # Search through machines for first machine with a platform.
72 Instead of running each test on each machine like parallel_on_machines,
83 # The Queue is thread safe, but since a machine may have to search
93 for machine in machines:
95 work_dir = os.path.join(self.resultdir, machine)
98 machine,
104 # Create the subcommand instance to run this machine worker.
117 # Only queue tests which are valid on at least one machine. Record
  /external/google-breakpad/src/common/linux/
synth_elf.cc 14 ELF::ELF(uint16_t machine,
24 // Could add support for more machine types here if needed.
25 assert(machine == EM_386 ||
26 machine == EM_X86_64 ||
27 machine == EM_ARM);
55 D16(machine);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_platform.py 46 res = platform.machine()
142 system, node, release, version, machine, processor = platform.uname()
143 self.assertEqual(machine, 'foo')
146 system, node, release, version, machine, processor = platform.uname()
147 self.assertEqual(machine, 'bar')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_platform.py 46 res = platform.machine()
142 system, node, release, version, machine, processor = platform.uname()
143 self.assertEqual(machine, 'foo')
146 system, node, release, version, machine, processor = platform.uname()
147 self.assertEqual(machine, 'bar')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_platform.py 46 res = platform.machine()
142 system, node, release, version, machine, processor = platform.uname()
143 self.assertEqual(machine, 'foo')
146 system, node, release, version, machine, processor = platform.uname()
147 self.assertEqual(machine, 'bar')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_platform.py 46 res = platform.machine()
142 system, node, release, version, machine, processor = platform.uname()
143 self.assertEqual(machine, 'foo')
146 system, node, release, version, machine, processor = platform.uname()
147 self.assertEqual(machine, 'bar')
  /external/v8/test/unittests/compiler/
common-operator-reducer-unittest.cc 7 #include "src/compiler/machine-operator.h"
10 #include "src/machine-type.h"
31 MachineOperatorBuilder machine(zone(), MachineType::PointerRepresentation(),
33 CommonOperatorReducer reducer(editor, graph(), common(), &machine);
43 MachineOperatorBuilder* machine() { return &machine_; } function in class:v8::internal::compiler::CommonOperatorReducerTest
324 Node* check = graph()->NewNode(machine()->Float32LessThan(), c0, p0);
329 Node* vfalse = graph()->NewNode(machine()->Float32Sub(), c0, p0);
344 Node* check = graph()->NewNode(machine()->Float64LessThan(), c0, p0);
349 Node* vfalse = graph()->NewNode(machine()->Float64Sub(), c0, p0);
364 Node* check = graph()->NewNode(machine()->Float32LessThan(), p0, p1)
    [all...]
  /external/autotest/tko/
job_serializer_unittest.py 93 """Check if the machine fields are the same.
95 self.assertEqual(self.tko_job.machine, self.pb_job.machine)
120 """Check if the machine owners are the same.
127 """Check if the machine groups are the same.
165 self.assertEqual(test.machine, newtest.machine)
293 self.assertEqual(test.machine, newtest.machine)
  /build/core/combo/arch/x86/
x86.mk 6 # the host development machine's CPU).
  /external/compiler-rt/lib/builtins/
clear_cache.c 19 #include <machine/sysarch.h>
23 #include <machine/sysarch.h>
  /external/dbus/tools/
Android.mk 6 -DDBUS_MACHINE_UUID_FILE=\"/etc/machine-id\" \
  /external/elfutils/backends/
ppc_regs.c 52 *bits = ebl->machine == EM_PPC64 ? 64 : 32;
61 if (ebl->machine != EM_PPC64 && regno < 64)
  /toolchain/binutils/binutils-2.25/bfd/
cpu-avr.c 27 machine which would be compatible with both and returns a pointer
83 #define N(addr_bits, machine, print, default, next) \
89 machine, /* Machine number. */ \
aoutf1.h 72 This is necessary on sparclet-aout where we want the resultant machine
99 /* Determine the architecture and machine type of the object file. */
101 unsigned long machine; local
109 machine = bfd_mach_m68000;
115 machine = bfd_mach_m68010;
121 machine = bfd_mach_m68020;
126 machine = 0;
131 machine = bfd_mach_sparc_sparclet;
136 machine = bfd_mach_sparc_sparclite_le;
142 machine = 0
    [all...]
  /external/autotest/frontend/tko/
rpc_interface_unittest_fixme.py 141 machine = models.Machine.objects.create(hostname='myhost')
158 username='myuser', machine=machine,
161 username='myuser', machine=machine,
167 machine=machine)
172 machine=machine)
    [all...]
  /bionic/libc/arch-arm/krait/bionic/
memset.S 29 #include <machine/cpu-features.h>
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ldtoa.c 30 #include <machine/ieee.h>

Completed in 665 milliseconds

<<11121314151617181920>>