Home
last modified time | relevance | path

Searched refs:tables_ (Results 1 - 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dgaussian_distribution_gentables.cc69 Tables tables_; member in absl::random_internal::TableGenerator
83 static_assert((ABSL_ARRAYSIZE(tables_.x) == kC + 1), in TableGenerator()
86 static_assert((ABSL_ARRAYSIZE(tables_.x) == ABSL_ARRAYSIZE(tables_.f)), in TableGenerator()
92 tables_.x[0] = kV / f(kR); in TableGenerator()
93 tables_.f[0] = f(tables_.x[0]); in TableGenerator()
95 tables_.x[1] = kR; in TableGenerator()
96 tables_.f[1] = f(tables_ in TableGenerator()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc933 result = pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name); in FindByNameHelper()
1060 DescriptorPool::generated_pool()->tables_.get()); in FindEnumValueByNumberCreatingIfUnknown()
1253 tables_(new Tables), in DescriptorPool()
1266 tables_(new Tables), in DescriptorPool()
1278 tables_(new Tables), in DescriptorPool()
1307 return tables_->FindFile(filename) != nullptr; in InternalIsFileLoaded()
1385 tables_->known_bad_symbols_.clear(); in FindFileByName()
1386 tables_->known_bad_files_.clear(); in FindFileByName()
1388 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName()
1395 result = tables_ in FindFileByName()
3153 DescriptorPool::Tables* tables_; // for convenience global() member in google::protobuf::DescriptorBuilder
[all...]
H A Ddescriptor.h1582 const FileDescriptorTables* tables_; member in google::protobuf::FileDescriptor
1949 // mutex which must be locked while accessing tables_.
1960 std::unique_ptr<Tables> tables_; member in google::protobuf::DescriptorPool
/third_party/node/deps/v8/src/codegen/
H A Dcompilation-cache.cc44 if (tables_[generation].IsUndefined(isolate())) { in GetTable()
46 tables_[generation] = *result; in GetTable()
49 CompilationCacheTable::cast(tables_[generation]); in GetTable()
61 c->tables_[i] = c->tables_[i - 1]; in AgeByGeneration()
65 c->tables_[0] = ReadOnlyRoots(c->isolate()).undefined_value(); in AgeByGeneration()
71 if (c->tables_[0].IsUndefined(c->isolate())) return; in AgeCustom()
72 CompilationCacheTable::cast(c->tables_[0]).Age(c->isolate()); in AgeCustom()
83 FullObjectSlot(&tables_[0]), in Iterate()
84 FullObjectSlot(&tables_[generation in Iterate()
[all...]
H A Dcompilation-cache.h45 tables_[kFirstGeneration] = *value; in SetFirstTable()
75 Object tables_[kMaxGenerations]; // One for each generation. member in v8::internal::CompilationSubCache
/third_party/node/deps/v8/src/wasm/
H A Dwasm-module-builder.cc271 tables_(zone), in WasmModuleBuilder()
345 DCHECK_LT(table_index, tables_.size()); in IncreaseTableMinSize()
346 uint32_t old_min_size = tables_[table_index].min_size; in IncreaseTableMinSize()
350 tables_[table_index].min_size = old_min_size + count; in IncreaseTableMinSize()
351 tables_[table_index].max_size = in IncreaseTableMinSize()
352 std::max(old_min_size + count, tables_[table_index].max_size); in IncreaseTableMinSize()
357 tables_.push_back({type, min_size, 0, false, {}}); in AddTable()
358 return static_cast<uint32_t>(tables_.size() - 1); in AddTable()
363 tables_.push_back({type, min_size, max_size, true, {}}); in AddTable()
364 return static_cast<uint32_t>(tables_ in AddTable()
[all...]
H A Dwasm-module-builder.h384 ValueType GetTableType(uint32_t index) { return tables_[index].type; } in GetTableType()
414 int NumTables() { return static_cast<int>(tables_.size()); } in NumTables()
468 ZoneVector<WasmTable> tables_; member in v8::internal::wasm::WasmModuleBuilder
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont.cc65 return tables_.find(tag) != tables_.end(); in HasTable()
71 return tables_[tag]; in GetTable()
75 return &tables_; in GetTableMap()
179 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end(); in GenerateTableOrdering()
262 // Note: Different from Java. Directly use font->tables_ here to avoid in Build()
264 BuildTablesFromBuilders(font, &table_builders_, &font->tables_); in Build()
H A Dfont.h245 int32_t num_tables() { return (int32_t)tables_.size(); } in num_tables()
343 TableMap tables_; member in sfntly::Font
/third_party/node/deps/v8/src/logging/
H A Druntime-call-stats.cc310 tables_.push_back(std::move(new_table)); in NewTable()
317 for (auto& worker_stats : tables_) { in AddToMainTable()
H A Druntime-call-stats.h679 std::vector<std::unique_ptr<RuntimeCallStats>> tables_; member in v8::internal::final

Completed in 16 milliseconds