/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | gaussian_distribution_gentables.cc | 69 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_.x[1]); in TableGenerator() 98 tables_.x[kC] = 0.0; in TableGenerator() 99 tables_.f[kC] = f(tables_.x[kC]); // 1.0 in TableGenerator() 102 double v = (kV / tables_.x[i - 1]) + tables_.f[i - 1]; in TableGenerator() [all …]
|
/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 933 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_->FindFile(name); in FindFileByName() [all …]
|
D | descriptor.h | 1582 const FileDescriptorTables* tables_; variable 1960 std::unique_ptr<Tables> tables_; variable
|
/third_party/node/deps/v8/src/codegen/ |
D | compilation-cache.cc | 44 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_[generations()])); in Iterate() 88 MemsetPointer(reinterpret_cast<Address*>(tables_), in Clear()
|
D | compilation-cache.h | 45 tables_[kFirstGeneration] = *value; in SetFirstTable() 75 Object tables_[kMaxGenerations]; // One for each generation. variable
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-module-builder.cc | 271 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_.size() - 1); in AddTable() [all …]
|
D | wasm-module-builder.h | 384 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_; variable
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/ |
D | font.cc | 65 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() 264 BuildTablesFromBuilders(font, &table_builders_, &font->tables_); in Build()
|
D | font.h | 245 int32_t num_tables() { return (int32_t)tables_.size(); } in num_tables() 343 TableMap tables_; variable
|
/third_party/node/deps/v8/src/logging/ |
D | runtime-call-stats.cc | 310 tables_.push_back(std::move(new_table)); in NewTable() 317 for (auto& worker_stats : tables_) { in AddToMainTable()
|
D | runtime-call-stats.h | 679 std::vector<std::unique_ptr<RuntimeCallStats>> tables_; variable
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
D | raytracing.txt | 586 The application allocates and manages _shader binding tables_ as
|
D | raytracing.adoc | 656 The application allocates and manages _shader binding tables_ as
|