Searched defs:rep_ (Results 1 - 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/graphcycles/
H A Dgraphcycles.h123 Rep *rep_; // opaque representation member in class:tensorflow::GraphCycles
/external/tensorflow/tensorflow/core/lib/io/
H A Dtable.h67 Rep* rep_; member in class:tensorflow::table::Table
69 explicit Table(Rep* rep) { rep_ = rep; }
H A Dtable_builder.h89 Rep* rep_; member in class:tensorflow::table::TableBuilder
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dcompactptrset.h35 CompactPointerSet() : rep_(0) {}
44 CompactPointerSet(const CompactPointerSet& other) : rep_(0) { *this = other; }
55 if (other.rep_ != 0) {
56 big()->insert(reinterpret_cast<T>(other.rep_));
60 rep_ = other.rep_;
115 bool empty() const { return isbig() ? big()->empty() : (rep_ == 0); }
116 size_t size() const { return isbig() ? big()->size() : (rep_ == 0 ? 0 : 1); }
122 rep_ = 0;
127 if (rep_
187 uintptr_t rep_; member in class:tensorflow::gtl::CompactPointerSet
[all...]
H A Dflatset.h58 : rep_(N, hf, eq) {}
60 FlatSet(const FlatSet& src) : rep_(src.rep_) {}
74 rep_.CopyFrom(src.rep_);
80 void swap(FlatSet& x) { rep_.swap(x.rep_); }
81 void clear_no_resize() { rep_.clear_no_resize(); }
82 void clear() { rep_.clear(); }
83 void reserve(size_t N) { rep_
275 Rep rep_; member in class:tensorflow::gtl::FlatSet
[all...]
H A Dflatmap.h75 : rep_(N, hf, eq) {}
77 FlatMap(const FlatMap& src) : rep_(src.rep_) {}
91 rep_.CopyFrom(src.rep_);
97 void swap(FlatMap& x) { rep_.swap(x.rep_); }
98 void clear_no_resize() { rep_.clear_no_resize(); }
99 void clear() { rep_.clear(); }
100 void reserve(size_t N) { rep_
171 mutable iterator rep_; // Share state and logic with non-const iterator. member in class:tensorflow::gtl::FlatMap::const_iterator
376 Rep rep_; member in class:tensorflow::gtl::FlatMap
[all...]
/external/ImageMagick/Magick++/lib/
H A DColor.cpp387 Magick::Color::Color(PixelInfo* rep_,PixelType pixelType_) argument
388 : _pixel(rep_),
395 void Magick::Color::pixel(PixelInfo *rep_,PixelType pixelType_) argument
400 _pixel=rep_;
528 Magick::ColorCMYK::ColorCMYK(PixelInfo *rep_,PixelType pixelType_) argument
529 : Color(rep_,pixelType_)
572 Magick::ColorGray::ColorGray(PixelInfo *rep_,PixelType pixelType_) argument
573 : Color(rep_,pixelType_)
762 Magick::ColorMono::ColorMono(PixelInfo *rep_,PixelType pixelType_) argument
763 : Color(rep_,pixelType
841 ColorRGB(PixelInfo *rep_,PixelType pixelType_) argument
912 ColorYUV(PixelInfo *rep_,PixelType pixelType_) argument
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h576 ReportDesc *rep_; member in class:__tsan::ScopedReport
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h255 // if rep_ is NULL, then arena is NULL.
256 Rep* rep_; member in class:google::protobuf::RepeatedField
273 return (rep_ == NULL) ? NULL : rep_->arena;
528 // if rep_ is NULL, then arena is NULL.
529 Rep* rep_; member in class:google::protobuf::internal::RepeatedPtrFieldBase
980 rep_(NULL) {
987 rep_(NULL) {
988 // In case arena is NULL, then we do not create rep_, as code has an invariant
989 // `rep_
[all...]
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Darithmetic_optimizer.cc340 std::vector<NodeDef*>& candidates = rep_[sig];
354 std::unordered_map<std::size_t, std::vector<NodeDef*>> rep_; member in class:tensorflow::grappler::UniqueNodes
/external/v8/src/compiler/
H A Dcode-assembler.cc710 explicit Impl(MachineRepresentation rep) : value_(nullptr), rep_(rep) {}
712 MachineRepresentation rep_; member in class:v8::internal::compiler::CodeAssemblerVariable::Impl
739 MachineRepresentation CodeAssemblerVariable::rep() const { return impl_->rep_; }
842 var.first->rep_, static_cast<int>(merge_count_), &(i->second[0]));

Completed in 330 milliseconds