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

  /external/v8/test/cctest/compiler/
test-jump-threading.cc 19 sequence_(main_isolate(), main_zone(), &blocks_),
24 InstructionSequence sequence_; member in class:v8::internal::compiler::TestCode
31 sequence_.AddInstruction(
33 int pos = static_cast<int>(sequence_.instructions().size() - 1);
46 sequence_.AddInstruction(
48 int pos = static_cast<int>(sequence_.instructions().size() - 1);
54 sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop));
58 sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop));
59 int index = static_cast<int>(sequence_.instructions().size()) - 1;
67 sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop))
    [all...]
  /external/v8/src/compiler/
register-allocator-verifier.h 62 const InstructionSequence* sequence() const { return sequence_; }
78 const InstructionSequence* const sequence_; member in class:v8::internal::compiler::final
instruction-scheduler.h 136 InstructionSequence* sequence() { return sequence_; }
139 InstructionSequence* sequence_; member in class:v8::internal::compiler::final
instruction-selector.h 255 InstructionSequence* sequence() const { return sequence_; }
263 InstructionSequence* const sequence_; member in class:v8::internal::compiler::final
pipeline.cc 98 sequence_(nullptr),
139 sequence_(nullptr),
167 sequence_(sequence),
229 InstructionSequence* sequence() const { return sequence_; }
259 sequence_ = nullptr;
271 DCHECK(sequence_ == nullptr);
275 sequence_ = new (instruction_zone()) InstructionSequence(
328 InstructionSequence* sequence_; member in class:v8::internal::compiler::PipelineData
    [all...]
instruction-scheduler.cc 35 sequence_(sequence),
register-allocator-verifier.cc 79 : zone_(zone), config_(config), sequence_(sequence), constraints_(zone) {
502 sequence_(sequence),
660 const InstructionSequence* sequence() const { return sequence_; }
663 const InstructionSequence* const sequence_; member in class:v8::internal::compiler::RegisterAllocatorVerifier::BlockMaps
instruction.cc 811 wrapper.sequence_ = this;
893 const InstructionSequence& code = *printable.sequence_;
instruction.h 1351 const InstructionSequence* sequence_; member in struct:v8::internal::compiler::final::PrintableInstructionSequence
    [all...]
instruction-selector.cc 28 sequence_(sequence),
    [all...]
  /system/core/fastboot/
udp.cpp 134 int sequence_ = -1; member in class:udp::UdpTransport
155 sequence_ = 0;
169 sequence_ = ExtractUint16(rx_data);
222 header.Set(id, sequence_, kFlagContinuation);
225 header.Set(id, sequence_, kFlagNone);
285 ++sequence_;
305 header->Set(rx_packet_[kIndexId], sequence_, kFlagNone);
  /external/webrtc/webrtc/p2p/client/
basicportallocator.h 127 PortData() : port_(NULL), sequence_(NULL), state_(STATE_INIT) {}
129 : port_(port), sequence_(seq), state_(STATE_INIT) {
133 AllocationSequence* sequence() { return sequence_; }
157 AllocationSequence* sequence_; member in class:cricket::BasicPortAllocatorSession::PortData
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
bundle-lock.s 8 sequence_\size\()_offset_\offset\():
  /art/runtime/base/
mutex.cc 752 DCHECK_EQ(0, sequence_.LoadRelaxed());
794 sequence_++; // Indicate the broadcast occurred.
797 int32_t cur_sequence = sequence_.LoadRelaxed();
800 done = futex(sequence_.Address(), FUTEX_CMP_REQUEUE, 0,
820 sequence_++; // Indicate a signal occurred.
823 int num_woken = futex(sequence_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
824 // Check something was woken or else we changed sequence_ before they had chance to wait.
846 int32_t cur_sequence = sequence_.LoadRelaxed();
848 if (futex(sequence_.Address(), FUTEX_WAIT, cur_sequence, nullptr, nullptr, 0) != 0) {
897 int32_t cur_sequence = sequence_.LoadRelaxed()
    [all...]
mutex.h 467 // their Mutex and another thread takes it and signals, the waiting thread observes that sequence_
470 AtomicInteger sequence_; member in class:art::ConditionVariable
  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.cc 47 : sequence_(nullptr),
80 if (sequence_ == nullptr) {
81 sequence_ = new (zone())
84 return sequence_;
instruction-sequence-unittest.h 233 InstructionSequence* sequence_; member in class:v8::internal::compiler::InstructionSequenceTest

Completed in 1903 milliseconds