Home
last modified time | relevance | path

Searched refs:rep_ (Results 1 – 25 of 70) sorted by relevance

123

/external/tensorflow/tensorflow/core/lib/gtl/
Dflatset.h58 : rep_(N, hf, eq) {} in rep_() function
60 FlatSet(const FlatSet& src) : rep_(src.rep_) {} in FlatSet()
64 FlatSet(FlatSet&& src) : rep_(std::move(src.rep_)) {} in FlatSet()
78 rep_.CopyFrom(src.rep_);
85 rep_.MoveFrom(std::move(src.rep_));
91 void swap(FlatSet& x) { rep_.swap(x.rep_); } in swap()
92 void clear_no_resize() { rep_.clear_no_resize(); } in clear_no_resize()
93 void clear() { rep_.clear(); } in clear()
94 void reserve(size_t N) { rep_.Resize(std::max(N, size())); } in reserve()
95 void rehash(size_t N) { rep_.Resize(std::max(N, size())); } in rehash()
[all …]
Dflatmap.h75 : rep_(N, hf, eq) {} in rep_() function
77 FlatMap(const FlatMap& src) : rep_(src.rep_) {} in FlatMap()
81 FlatMap(FlatMap&& src) : rep_(std::move(src.rep_)) {} in FlatMap()
95 rep_.CopyFrom(src.rep_);
102 rep_.MoveFrom(std::move(src.rep_));
108 void swap(FlatMap& x) { rep_.swap(x.rep_); } in swap()
109 void clear_no_resize() { rep_.clear_no_resize(); } in clear_no_resize()
110 void clear() { rep_.clear(); } in clear()
111 void reserve(size_t N) { rep_.Resize(std::max(N, size())); } in reserve()
112 void rehash(size_t N) { rep_.Resize(std::max(N, size())); } in rehash()
[all …]
Dcompactptrset.h35 CompactPointerSet() : rep_(0) {} in CompactPointerSet()
44 CompactPointerSet(const CompactPointerSet& other) : rep_(0) { *this = other; } in CompactPointerSet()
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); } in empty()
116 size_t size() const { return isbig() ? big()->size() : (rep_ == 0 ? 0 : 1); } in size()
122 rep_ = 0; in clear()
127 if (rep_ == 0) { in insert()
132 rep_ = v; in insert()
[all …]
/external/protobuf/src/google/protobuf/
Drepeated_field.cc53 return &rep_->elements[current_size_]; in InternalExtend()
55 Rep* old_rep = rep_; in InternalExtend()
64 rep_ = reinterpret_cast<Rep*>(::operator new(bytes)); in InternalExtend()
66 rep_ = reinterpret_cast<Rep*>(Arena::CreateArray<char>(arena, bytes)); in InternalExtend()
73 memcpy(rep_->elements, old_rep->elements, in InternalExtend()
74 old_rep->allocated_size * sizeof(rep_->elements[0])); in InternalExtend()
75 rep_->allocated_size = old_rep->allocated_size; in InternalExtend()
77 rep_->allocated_size = 0; in InternalExtend()
82 old_total_size * sizeof(rep_->elements[0]) + kRepHeaderSize; in InternalExtend()
88 return &rep_->elements[current_size_]; in InternalExtend()
[all …]
Drepeated_field.h617 Rep* rep_;
1493 : arena_(NULL), current_size_(0), total_size_(0), rep_(NULL) {}
1496 : arena_(arena), current_size_(0), total_size_(0), rep_(NULL) {}
1500 if (rep_ != NULL && arena_ == NULL) {
1501 int n = rep_->allocated_size;
1502 void* const* elements = rep_->elements;
1508 ::operator delete(static_cast<void*>(rep_), size);
1510 ::operator delete(static_cast<void*>(rep_));
1513 rep_ = NULL;
1550 return *cast<TypeHandler>(rep_->elements[index]);
[all …]
/external/sfntly/cpp/src/test/tinyxml/
Dtinystr.h66 TiXmlString () : rep_(&nullrep_) in TiXmlString()
71 TiXmlString ( const TiXmlString & copy) : rep_(0) in TiXmlString()
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) in TiXmlString()
85 TIXML_EXPLICIT TiXmlString ( const char * str, size_type len) : rep_(0) in TiXmlString()
128 const char * c_str () const { return rep_->str; } in c_str()
131 const char * data () const { return rep_->str; } in data()
134 size_type length () const { return rep_->size; } in length()
137 size_type size () const { return rep_->size; } in size()
140 bool empty () const { return rep_->size == 0; } in empty()
143 size_type capacity () const { return rep_->capacity; } in capacity()
[all …]
/external/libtextclassifier/abseil-cpp/absl/status/
Dstatus.h594 uintptr_t rep_; variable
685 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
687 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
689 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
692 uintptr_t old_rep = rep_;
693 if (x.rep_ != old_rep) {
694 Ref(x.rep_);
695 rep_ = x.rep_;
701 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
702 x.rep_ = MovedFromRep(); in Status()
[all …]
Dstatus.cc130 status_internal::StatusRep* rep = RepToPointer(rep_); in SetPayload()
154 Unref(rep_); in ErasePayload()
155 rep_ = CodeToInlinedRep(c); in ErasePayload()
221 : rep_(CodeToInlinedRep(code)) { in Status()
223 rep_ = NewRep(code, msg, nullptr); in Status()
228 if (IsInlined(rep_)) { in raw_code()
229 return static_cast<int>(InlinedRepToCode(rep_)); in raw_code()
231 status_internal::StatusRep* rep = RepToPointer(rep_); in raw_code()
241 if (IsInlined(rep_)) { in PrepareToModify()
242 rep_ = NewRep(static_cast<absl::StatusCode>(raw_code()), in PrepareToModify()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/status/
Dstatus.h594 uintptr_t rep_; variable
685 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
687 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
689 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
692 uintptr_t old_rep = rep_;
693 if (x.rep_ != old_rep) {
694 Ref(x.rep_);
695 rep_ = x.rep_;
701 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
702 x.rep_ = MovedFromRep(); in Status()
[all …]
/external/openscreen/third_party/abseil/src/absl/status/
Dstatus.h594 uintptr_t rep_; variable
685 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
687 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
689 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
692 uintptr_t old_rep = rep_;
693 if (x.rep_ != old_rep) {
694 Ref(x.rep_);
695 rep_ = x.rep_;
701 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
702 x.rep_ = MovedFromRep(); in Status()
[all …]
Dstatus.cc130 status_internal::StatusRep* rep = RepToPointer(rep_); in SetPayload()
154 Unref(rep_); in ErasePayload()
155 rep_ = CodeToInlinedRep(c); in ErasePayload()
218 : rep_(CodeToInlinedRep(code)) { in Status()
220 rep_ = NewRep(code, msg, nullptr); in Status()
225 if (IsInlined(rep_)) { in raw_code()
226 return static_cast<int>(InlinedRepToCode(rep_)); in raw_code()
228 status_internal::StatusRep* rep = RepToPointer(rep_); in raw_code()
238 if (IsInlined(rep_)) { in PrepareToModify()
239 rep_ = NewRep(static_cast<absl::StatusCode>(raw_code()), in PrepareToModify()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/status/
Dstatus.h245 uintptr_t rep_; variable
257 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
259 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
261 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
264 uintptr_t old_rep = rep_;
265 if (x.rep_ != old_rep) {
266 Ref(x.rep_);
267 rep_ = x.rep_;
273 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
274 x.rep_ = MovedFromRep(); in Status()
[all …]
/external/abseil-cpp/absl/status/
Dstatus.h245 uintptr_t rep_; variable
257 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
259 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
261 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
264 uintptr_t old_rep = rep_;
265 if (x.rep_ != old_rep) {
266 Ref(x.rep_);
267 rep_ = x.rep_;
273 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
274 x.rep_ = MovedFromRep(); in Status()
[all …]
Dstatus.cc132 status_internal::StatusRep* rep = RepToPointer(rep_); in SetPayload()
156 Unref(rep_); in ErasePayload()
157 rep_ = CodeToInlinedRep(c); in ErasePayload()
223 : rep_(CodeToInlinedRep(code)) { in Status()
225 rep_ = NewRep(code, msg, nullptr); in Status()
230 if (IsInlined(rep_)) { in raw_code()
231 return static_cast<int>(InlinedRepToCode(rep_)); in raw_code()
233 status_internal::StatusRep* rep = RepToPointer(rep_); in raw_code()
243 if (IsInlined(rep_)) { in PrepareToModify()
244 rep_ = NewRep(static_cast<absl::StatusCode>(raw_code()), in PrepareToModify()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/graphcycles/
Dgraphcycles.cc80 GraphCycles::GraphCycles() : rep_(new Rep) {} in GraphCycles()
83 for (Vec<Node*>::size_type i = 0; i < rep_->nodes_.size(); i++) { in ~GraphCycles()
84 delete rep_->nodes_[i]; in ~GraphCycles()
86 delete rep_; in ~GraphCycles()
90 Rep* r = rep_; in CheckInvariants()
112 if (rep_->free_nodes_.empty()) { in NewNode()
116 n->rank = rep_->nodes_.size(); in NewNode()
117 rep_->nodes_.push_back(n); in NewNode()
122 int32 r = rep_->free_nodes_.back(); in NewNode()
123 rep_->nodes_[r]->data = nullptr; in NewNode()
[all …]
/external/angle/third_party/abseil-cpp/absl/status/
Dstatus.h655 uintptr_t rep_; variable
746 inline Status::Status() : rep_(CodeToInlinedRep(absl::StatusCode::kOk)) {} in Status()
748 inline Status::Status(absl::StatusCode code) : rep_(CodeToInlinedRep(code)) {} in Status()
750 inline Status::Status(const Status& x) : rep_(x.rep_) { Ref(rep_); } in Status()
753 uintptr_t old_rep = rep_;
754 if (x.rep_ != old_rep) {
755 Ref(x.rep_);
756 rep_ = x.rep_;
762 inline Status::Status(Status&& x) noexcept : rep_(x.rep_) { in Status()
763 x.rep_ = MovedFromRep(); in Status()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/utils/
Dcycle_detector.cc69 GraphCycles::GraphCycles(int32_t num_nodes) : rep_(new Rep) { in GraphCycles()
70 rep_->nodes.reserve(num_nodes); in GraphCycles()
75 n->rank = rep_->nodes.size(); in GraphCycles()
76 rep_->nodes.push_back(n); in GraphCycles()
81 for (Vec<Node*>::size_type i = 0, e = rep_->nodes.size(); i < e; ++i) { in ~GraphCycles()
82 delete rep_->nodes[i]; in ~GraphCycles()
84 delete rep_; in ~GraphCycles()
88 return rep_->nodes[x]->out.Contains(y); in HasEdge()
92 rep_->nodes[x]->out.Erase(y); in RemoveEdge()
93 rep_->nodes[y]->in.Erase(x); in RemoveEdge()
[all …]
/external/angle/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc367 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
372 for (auto* node : rep_->nodes_) { in ~GraphCycles()
376 rep_->Rep::~Rep(); in ~GraphCycles()
377 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
381 Rep* r = rep_; in CheckInvariants()
407 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
409 return MakeId(i, rep_->nodes_[i]->version); in GetId()
410 } else if (rep_->free_nodes_.empty()) { in GetId()
416 n->rank = rep_->nodes_.size(); in GetId()
420 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc366 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
371 for (auto* node : rep_->nodes_) { in ~GraphCycles()
375 rep_->Rep::~Rep(); in ~GraphCycles()
376 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
380 Rep* r = rep_; in CheckInvariants()
406 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
408 return MakeId(i, rep_->nodes_[i]->version); in GetId()
409 } else if (rep_->free_nodes_.empty()) { in GetId()
415 n->rank = rep_->nodes_.size(); in GetId()
419 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc366 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
371 for (auto* node : rep_->nodes_) { in ~GraphCycles()
375 rep_->Rep::~Rep(); in ~GraphCycles()
376 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
380 Rep* r = rep_; in CheckInvariants()
406 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
408 return MakeId(i, rep_->nodes_[i]->version); in GetId()
409 } else if (rep_->free_nodes_.empty()) { in GetId()
415 n->rank = rep_->nodes_.size(); in GetId()
419 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/openscreen/third_party/abseil/src/absl/synchronization/internal/
Dgraphcycles.cc367 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
372 for (auto* node : rep_->nodes_) { in ~GraphCycles()
376 rep_->Rep::~Rep(); in ~GraphCycles()
377 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
381 Rep* r = rep_; in CheckInvariants()
407 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
409 return MakeId(i, rep_->nodes_[i]->version); in GetId()
410 } else if (rep_->free_nodes_.empty()) { in GetId()
416 n->rank = rep_->nodes_.size(); in GetId()
420 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc366 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
371 for (auto* node : rep_->nodes_) { in ~GraphCycles()
375 rep_->Rep::~Rep(); in ~GraphCycles()
376 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
380 Rep* r = rep_; in CheckInvariants()
406 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
408 return MakeId(i, rep_->nodes_[i]->version); in GetId()
409 } else if (rep_->free_nodes_.empty()) { in GetId()
415 n->rank = rep_->nodes_.size(); in GetId()
419 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/libtextclassifier/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc366 rep_ = new (base_internal::LowLevelAlloc::AllocWithArena(sizeof(Rep), arena)) in GraphCycles()
371 for (auto* node : rep_->nodes_) { in ~GraphCycles()
375 rep_->Rep::~Rep(); in ~GraphCycles()
376 base_internal::LowLevelAlloc::Free(rep_); in ~GraphCycles()
380 Rep* r = rep_; in CheckInvariants()
406 int32_t i = rep_->ptrmap_.Find(ptr); in GetId()
408 return MakeId(i, rep_->nodes_[i]->version); in GetId()
409 } else if (rep_->free_nodes_.empty()) { in GetId()
415 n->rank = rep_->nodes_.size(); in GetId()
419 rep_->nodes_.push_back(n); in GetId()
[all …]
/external/tensorflow/tensorflow/core/lib/io/
Dtable_builder.cc111 : rep_(new Rep(options, file)) {} in TableBuilder()
114 assert(rep_->closed); // Catch errors where caller forgot to call Finish() in ~TableBuilder()
115 delete rep_; in ~TableBuilder()
119 Rep* r = rep_; in Add()
153 Rep* r = rep_; in Flush()
171 Rep* r = rep_; in WriteBlock()
203 Rep* r = rep_; in WriteRawBlock()
220 Status TableBuilder::status() const { return rep_->status; } in status()
223 Rep* r = rep_; in Finish()
265 Rep* r = rep_; in Abandon()
[all …]
Dtable.cc84 Table::~Table() { delete rep_; } in ~Table()
105 Cache* block_cache = table->rep_->options.block_cache; in BlockReader()
119 core::EncodeFixed64(cache_key_buffer, table->rep_->cache_id); in BlockReader()
126 s = ReadBlock(table->rep_->file, handle, &contents); in BlockReader()
134 s = ReadBlock(table->rep_->file, handle, &contents); in BlockReader()
156 return NewTwoLevelIterator(rep_->index_block->NewIterator(), in NewIterator()
164 Iterator* iiter = rep_->index_block->NewIterator(); in InternalGet()
183 Iterator* index_iter = rep_->index_block->NewIterator(); in ApproximateOffsetOf()
196 result = rep_->metaindex_handle.offset(); in ApproximateOffsetOf()
202 result = rep_->metaindex_handle.offset(); in ApproximateOffsetOf()

123