HomeSort by relevance Sort by last modified time
    Searched defs:next_id_ (Results 1 - 25 of 36) sorted by null

1 2

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
local_access_chain_convert_pass.h 113 module->SetIdBound(next_id_);
118 return next_id_++;
132 uint32_t next_id_; member in class:spvtools::opt::LocalAccessChainConvertPass
inline_pass.h 47 inline uint32_t TakeNextId() { return next_id_++; }
51 module->SetIdBound(next_id_);
208 uint32_t next_id_; member in class:spvtools::opt::InlinePass
local_single_block_elim_pass.h 58 module->SetIdBound(next_id_);
63 return next_id_++;
104 uint32_t next_id_; member in class:spvtools::opt::LocalSingleBlockLoadStoreElimPass
common_uniform_elim_pass.h 166 module->SetIdBound(next_id_);
170 return next_id_++;
205 uint32_t next_id_; member in class:spvtools::opt::CommonUniformElimPass
local_ssa_elim_pass.h 141 module->SetIdBound(next_id_);
146 return next_id_++;
186 uint32_t next_id_; member in class:spvtools::opt::LocalMultiStoreElimPass
local_single_store_elim_pass.h 101 module->SetIdBound(next_id_);
106 return next_id_++;
161 uint32_t next_id_; member in class:spvtools::opt::LocalSingleStoreElimPass
  /external/libchrome/base/task/
cancelable_task_tracker.h 130 TaskId next_id_; member in class:base::CancelableTaskTracker
  /external/v8/src/
value-serializer.h 161 uint32_t next_id_ = 0; member in class:v8::internal::SerializationTag
287 uint32_t next_id_ = 0; member in class:v8::internal::ValueDeserializer
  /hardware/qcom/display/msm8909/gralloc/
gr_buf_descriptor.h 39 BufferDescriptor() : id_(next_id_++) {}
47 id_(next_id_++) {}
56 id_(next_id_++) {}
93 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 125 // from next_id_ is not unique across processes. The correct way to resolve this would
130 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /hardware/qcom/display/msm8909w_3100/libgralloc1/
gr_buf_descriptor.h 39 BufferDescriptor() : id_(next_id_++) {}
47 id_(next_id_++) {}
56 id_(next_id_++) {}
93 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 125 // from next_id_ is not unique across processes. The correct way to resolve this would
130 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /hardware/qcom/display/msm8996/libgralloc1/
gr_buf_descriptor.h 38 BufferDescriptor() : id_(next_id_++) {}
46 id_(next_id_++) {}
55 id_(next_id_++) {}
92 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 126 // from next_id_ is not unique across processes. The correct way to resolve this would
131 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_descriptor.h 38 BufferDescriptor() : id_(next_id_++) {}
46 id_(next_id_++) {}
55 id_(next_id_++) {}
92 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 126 // from next_id_ is not unique across processes. The correct way to resolve this would
131 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /external/compiler-rt/lib/lsan/
lsan_common.h 80 LeakReport() : next_id_(0), leaks_(1), leaked_objects_(1) {}
93 u32 next_id_; member in class:__lsan::LeakReport
  /external/sfntly/cpp/src/sfntly/port/
refcount.h 123 object_id_ = AtomicIncrement(&next_id_);
162 static size_t next_id_; member in class:sfntly::RefCounted
169 template <typename TDerived> size_t RefCounted<TDerived>::next_id_ = 0; member in class:sfntly::RefCounted
  /external/webrtc/webrtc/base/
optional_unittest.cc 31 Logger() : id_(next_id_++), origin_(id_) { Log("default constructor"); }
32 explicit Logger(int origin) : id_(next_id_++), origin_(origin) {
35 Logger(const Logger& other) : id_(next_id_++), origin_(other.origin_) {
38 Logger(Logger&& other) : id_(next_id_++), origin_(other.origin_) {
70 Logger::next_id_ = 0; member in class:rtc::__anon43906::Logger::Logger
78 static int next_id_; member in class:rtc::__anon43906::Logger
99 int Logger::next_id_ = 0; member in class:rtc::__anon43906::Logger
physicalsocketserver.h 213 static int next_id_; member in class:rtc::SocketDispatcher
  /frameworks/base/media/mca/filterfw/jni/
jni_util.h 116 const int id = next_id_;
119 ++next_id_;
190 next_id_(0) { }
197 int next_id_; member in class:ObjectPool
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
text_handler.h 123 next_id_(1), ids_to_preserve_(std::move(ids_to_preserve)) {}
251 uint32_t next_id_; member in class:libspirv::AssemblyContext
  /external/compiler-rt/lib/msan/
msan_report.cc 153 OriginSet() : next_id_(0) {}
156 for (int i = next_id_ - 1; i >= 0; --i)
158 if (next_id_ == kMaxSize_) return OVERFLOW;
159 int id = next_id_++;
163 int size() { return next_id_; }
181 int next_id_; member in class:__msan::OriginSet
  /external/libchrome/base/
id_map.h 41 IDMap() : iteration_depth_(0), next_id_(1), check_on_null_data_(false) {
211 KeyType this_id = next_id_;
214 next_id_++;
242 KeyType next_id_; member in class:final
  /external/tensorflow/tensorflow/core/kernels/
lookup_util.cc 94 next_id_ = 0;
106 if (errors::IsOutOfRange(status_) && next_id_ != vocab_size_) {
109 " but got ", next_id_);
114 if (next_id_ >= vocab_size_) {
117 LOG(WARNING) << "next_id_ : " << next_id_;
136 "Invalid number of columns in ", filename_, " line ", next_id_,
154 next_id_++;
173 int64 next_id_; member in class:tensorflow::lookup::__anon39820::TextFileLineIterator
187 tensor->flat<int64>()(0) = next_id_;
    [all...]

Completed in 546 milliseconds

1 2