Searched defs:index_ (Results 1 - 25 of 131) sorted by relevance

123456

/external/libchrome/base/metrics/
H A Dsample_vector.h100 size_t index_; member in class:base::SampleVectorIterator
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Darg_op.cc32 OP_REQUIRES_OK(ctx, ctx->GetAttr("index", &index_));
41 OP_REQUIRES_OK(ctx, frame->GetArg(index_, &val));
51 const XlaExpression& arg = XlaContext::Get(ctx).args()[index_];
62 int index_; member in class:tensorflow::XlaArgOp
H A Dretval_op.cc32 OP_REQUIRES_OK(ctx, ctx->GetAttr("index", &index_));
46 OP_REQUIRES_OK(ctx, frame->SetRetval(index_, input));
61 OP_REQUIRES_OK(ctx, tc.AddConstRetval(index_, dtype_, literal));
69 tc.AddRetval(index_, dtype_, tuple_elem);
76 int index_; member in class:tensorflow::__anon25446::RetvalOp
/external/webrtc/webrtc/modules/audio_processing/vad/
H A Dstandalone_vad.h64 size_t index_; member in class:webrtc::StandaloneVad
H A Dvad_circular_buffer.h63 int index_; member in class:webrtc::VadCircularBuffer
/external/google-breakpad/src/processor/
H A Dstatic_map_iterator.h55 StaticMapIterator(): index_(-1), base_(NULL) { }
93 int32_t index_; member in class:google_breakpad::StaticMapIterator
/external/puffin/src/
H A Dbit_reader.h83 index_(0),
104 uint64_t index_; // The index to the next byte to be read. member in class:puffin::BufferBitReader
H A Dbit_writer.h72 index_(0),
94 uint64_t index_; member in class:puffin::BufferBitWriter
H A Dpuff_reader.h46 index_(0),
62 size_t index_; member in class:puffin::BufferPuffReader
H A Dpuff_writer.h51 index_(0),
73 size_t index_; member in class:puffin::BufferPuffWriter
75 // Marks where the length of data should be written after the |index_| has
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.h252 DescriptorIndex<const FileDescriptorProto*> index_; member in class:google::protobuf::SimpleDescriptorDatabase
301 SimpleDescriptorDatabase::DescriptorIndex<pair<const void*, int> > index_; member in class:google::protobuf::EncodedDescriptorDatabase
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.h38 int32_t index_; member in class:sfntly::LocaTable::LocaIterator
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dlogical_buffer.h109 const ShapeIndex& index() const { return index_; }
131 return ShapeUtil::GetSubshape(instruction_->shape(), index_);
136 bool IsTopLevel() const { return index_.empty(); }
163 ShapeIndex index_; member in class:xla::LogicalBuffer
H A Dtuple_points_to_analysis.h161 : instruction_(instruction), index_(index) {}
165 const ShapeIndex& index() const { return index_; }
168 return instruction_ == other.instruction_ && index_ == other.index_;
176 ShapeIndex index_; member in class:BufferAlias
/external/gemmlowp/internal/
H A Dallocator.h124 std::uint8_t index_; member in class:gemmlowp::Allocator::Handle
144 h.index_ = index;
159 assert(h.index_ < reserved_blocks_ &&
164 std::size_t offset = reserved_blocks_offsets_[h.index_];
/external/tensorflow/tensorflow/core/kernels/
H A Dfunction_ops.cc41 OP_REQUIRES_OK(ctx, ctx->GetAttr("index", &index_));
48 OP_REQUIRES_OK(ctx, frame->GetArg(index_, &val));
59 int index_; member in class:tensorflow::ArgOp
69 OP_REQUIRES_OK(ctx, ctx->GetAttr("index", &index_));
80 OP_REQUIRES_OK(ctx, frame->SetRetval(index_, val));
86 int index_; member in class:tensorflow::RetvalOp
/external/v8/src/
H A Dsource-position-table.h80 bool done() const { return index_ == kDone; }
86 int index_; member in class:v8::internal::SourcePositionTableIterator
/external/webrtc/webrtc/base/
H A Dwindow.h92 DesktopId() : id_(0), index_(-1) {}
94 : id_(id), index_(index) {
97 int index() const { return index_; }
98 bool IsValid() const { return index_ != -1; }
100 return id_ == other.id() && index_ == other.index();
108 int index_; member in class:rtc::DesktopId
/external/google-breakpad/src/tools/mac/dump_syms/
H A Dmacho_dump.cc75 DumpSection() : index_(0) { }
82 index_++, section.section_name.c_str(), section.segment_name.c_str(),
90 int index_; member in class:__anon7670::DumpSection
95 DumpCommand(mach_o::Reader *reader) : reader_(reader), index_(0) { }
98 printf(" load command %d: %d", index_++, type);
109 index_++, (segment.bits_64 ? "64" : "32"), segment.name.c_str(),
119 int index_; member in class:__anon7670::DumpCommand
/external/libchrome/base/json/
H A Djson_parser.h215 // |index_| and |index_last_line_|, with an optional positive/negative
231 // |start_pos_ + index_|.
238 int index_; member in class:base::internal::JSONParser
246 // The last value of |index_| on the previous line.
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_iterator.hpp65 : index_(0)
182 if (++index_ == values_->size())
186 index_ = 0;
196 return index_ == other.index_;
201 return (*values_)[index_];
206 std::size_t index_; member in class:asio::ip::basic_resolver_iterator
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_iterator.hpp65 : index_(0)
182 if (++index_ == values_->size())
186 index_ = 0;
196 return index_ == other.index_;
201 return (*values_)[index_];
206 std::size_t index_; member in class:asio::ip::basic_resolver_iterator
/external/tensorflow/tensorflow/core/framework/
H A Dop.h171 std::unordered_map<string, const OpRegistrationData*> index_; member in class:tensorflow::OpListOpRegistry
/external/v8/src/interpreter/
H A Dbytecode-register.h21 explicit Register(int index = kInvalidIndex) : index_(index) {}
23 int index() const { return index_; }
25 bool is_valid() const { return index_ != kInvalidIndex; }
60 int32_t ToOperand() const { return kRegisterFileStartOffset - index_; }
99 int index_; member in class:v8::internal::interpreter::final
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.hpp196 deUint32 index_)
198 , index (index_)
195 ProgramIdentifierIndex(const ProgramIdentifier& id_, deUint32 index_) argument

Completed in 9768 milliseconds

123456