Home
last modified time | relevance | path

Searched defs:roots (Results 1 – 25 of 128) sorted by relevance

123456

/third_party/node/deps/v8/src/objects/
Dhash-table-inl.h135 Handle<Map> HashTable<Derived, Shape>::GetMap(ReadOnlyRoots roots) { in GetMap()
140 Handle<Map> NameToIndexHashTable::GetMap(ReadOnlyRoots roots) { in GetMap()
145 Handle<Map> RegisteredSymbolTable::GetMap(ReadOnlyRoots roots) { in GetMap()
150 Handle<Map> EphemeronHashTable::GetMap(ReadOnlyRoots roots) { in GetMap()
164 ReadOnlyRoots roots, Key key, in FindEntry()
192 bool HashTable<Derived, Shape>::IsKey(ReadOnlyRoots roots, Object k) { in IsKey()
198 bool HashTable<Derived, Shape>::ToKey(ReadOnlyRoots roots, InternalIndex entry, in ToKey()
284 uint32_t RegisteredSymbolTableShape::Hash(ReadOnlyRoots roots, in Hash()
289 uint32_t RegisteredSymbolTableShape::HashForObject(ReadOnlyRoots roots, in HashForObject()
298 uint32_t NameToIndexShape::HashForObject(ReadOnlyRoots roots, Object other) { in HashForObject()
[all …]
Dordered-hash-table-inl.h37 bool OrderedHashTable<Derived, entrysize>::IsKey(ReadOnlyRoots roots, in IsKey()
88 Handle<Map> OrderedHashMap::GetMap(ReadOnlyRoots roots) { in GetMap()
92 Handle<Map> OrderedNameDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
96 Handle<Map> SmallOrderedNameDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
100 Handle<Map> SmallOrderedHashMap::GetMap(ReadOnlyRoots roots) { in GetMap()
104 Handle<Map> SmallOrderedHashSet::GetMap(ReadOnlyRoots roots) { in GetMap()
124 bool OrderedHashTable<Derived, entrysize>::ToKey(ReadOnlyRoots roots, in ToKey()
Dapi-callbacks-inl.h100 ReadOnlyRoots roots = GetReadOnlyRoots(); in BOOL_ACCESSORS() local
108 ReadOnlyRoots roots = GetReadOnlyRoots(); in IsSideEffectCallHandlerInfo() local
121 ReadOnlyRoots roots = GetReadOnlyRoots(); in NextCallHasNoSideEffect() local
Ddictionary-inl.h198 Handle<Map> GlobalDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
211 Handle<Map> NameDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
266 uint32_t NumberDictionaryBaseShape::Hash(ReadOnlyRoots roots, uint32_t key) { in Hash()
270 uint32_t NumberDictionaryBaseShape::HashForObject(ReadOnlyRoots roots, in HashForObject()
287 Handle<Map> NumberDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
291 Handle<Map> SimpleNumberDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
301 uint32_t NameDictionaryShape::Hash(ReadOnlyRoots roots, Handle<Name> key) { in Hash()
306 uint32_t NameDictionaryShape::HashForObject(ReadOnlyRoots roots, Object other) { in HashForObject()
317 uint32_t GlobalDictionaryShape::HashForObject(ReadOnlyRoots roots, in HashForObject()
Dstring-set-inl.h28 uint32_t StringSetShape::Hash(ReadOnlyRoots roots, String key) { in Hash()
32 uint32_t StringSetShape::HashForObject(ReadOnlyRoots roots, Object object) { in HashForObject()
Dswiss-name-dictionary.cc46 ReadOnlyRoots roots(isolate); in Rehash() local
225 ReadOnlyRoots roots(isolate); in Rehash() local
255 ReadOnlyRoots roots = this->GetReadOnlyRoots(); in NumberOfEnumerableProperties() local
272 ReadOnlyRoots roots(isolate); in SlowReverseLookup() local
Dsymbol-table.cc11 ReadOnlyRoots roots = this->GetReadOnlyRoots(); in SlowReverseLookup() local
Dcompilation-cache-table.h26 static inline uint32_t Hash(ReadOnlyRoots roots, HashTableKey* key) { in Hash()
Dcompilation-cache-table-inl.h61 uint32_t CompilationCacheShape::HashForObject(ReadOnlyRoots roots, in HashForObject()
Dtemplate-objects.cc31 ReadOnlyRoots roots(isolate); in GetTemplateObject() local
/third_party/skia/src/pathops/
DSkPathOpsRect.cpp17 int roots = 0; in setBounds() local
34 int roots = 0; in setBounds() local
51 int roots = 0; in setBounds() local
DSkPathOpsCurve.h360 static int line_intercept_h(const SkPoint a[2], SkScalar , SkScalar y, double* roots) { in line_intercept_h()
369 static int line_intercept_v(const SkPoint a[2], SkScalar , SkScalar x, double* roots) { in line_intercept_v()
378 static int quad_intercept_h(const SkPoint a[2], SkScalar , SkScalar y, double* roots) { in quad_intercept_h()
383 static int quad_intercept_v(const SkPoint a[2], SkScalar , SkScalar x, double* roots) { in quad_intercept_v()
388 static int conic_intercept_h(const SkPoint a[2], SkScalar w, SkScalar y, double* roots) { in conic_intercept_h()
393 static int conic_intercept_v(const SkPoint a[2], SkScalar w, SkScalar x, double* roots) { in conic_intercept_v()
398 static int cubic_intercept_h(const SkPoint a[3], SkScalar , SkScalar y, double* roots) { in cubic_intercept_h()
403 static int cubic_intercept_v(const SkPoint a[3], SkScalar , SkScalar x, double* roots) { in cubic_intercept_v()
DSkDConicLineIntersection.cpp77 double roots[2]; in horizontalIntersect() local
103 int roots = this->intersectRay(rootVals); in intersect() local
155 double roots[2]; in verticalIntersect() local
376 int SkIntersections::HorizontalIntercept(const SkDConic& conic, SkScalar y, double* roots) { in HorizontalIntercept()
381 int SkIntersections::VerticalIntercept(const SkDConic& conic, SkScalar x, double* roots) { in VerticalIntercept()
DSkDQuadLineIntersection.cpp175 int roots = intersectRay(rootVals); in intersect() local
204 int roots = horizontalIntersect(axisIntercept, rootVals); in horizontalIntersect() local
260 int roots = verticalIntersect(axisIntercept, rootVals); in verticalIntersect() local
452 int SkIntersections::HorizontalIntercept(const SkDQuad& quad, SkScalar y, double* roots) { in HorizontalIntercept()
457 int SkIntersections::VerticalIntercept(const SkDQuad& quad, SkScalar x, double* roots) { in VerticalIntercept()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DTerritoryContainment.java74 Set<String> roots = ImmutableSet.copyOf(Sets.difference(graph.keySet(), allContained)); in TerritoryContainment() local
76 "world region '%s' must be the only containment graph root (was %s)", WORLD, roots); in TerritoryContainment() local
/third_party/mesa3d/src/mapi/new/
DgenCommon.py66 def getFunctionsFromRoots(roots): argument
97 def getExportNamesFromRoots(target, roots): argument
/third_party/node/deps/v8/src/heap/
Dfactory-base-inl.h101 ReadOnlyRoots roots = read_only_roots(); in NewStructInternal() local
108 Struct FactoryBase<Impl>::NewStructInternal(ReadOnlyRoots roots, Map map, in NewStructInternal()
/third_party/node/deps/v8/src/snapshot/
Dread-only-deserializer.cc34 ReadOnlyRoots roots(isolate()); in DeserializeIntoIsolate() local
/third_party/node/deps/v8/src/numbers/
Dhash-seed-inl.h45 inline uint64_t HashSeed(ReadOnlyRoots roots) { in HashSeed()
/third_party/typescript/src/testRunner/unittests/
DcustomTransforms.ts5 …const roots = sources.map(source => createSourceFile(source.file, source.text, ScriptTarget.ES2015… constant
/third_party/skia/tools/
Drewrite_includes.py24 roots = [ variable
/third_party/skia/tests/
DPathOpsCubicLineIntersectionTest.cpp50 int roots = i.intersect(cubic, line); in testFail() local
152 int roots = doIntersect(i, cubic, line); in testOne() local
/third_party/node/deps/v8/src/execution/
Disolate-data.h125 RootsTable& roots() { return roots_table_; } in roots() function
126 const RootsTable& roots() const { return roots_table_; } in roots() function
/third_party/spirv-tools/source/opt/
Dir_context.cpp933 std::queue<uint32_t> roots; in ProcessEntryPointCallTree() local
941 std::queue<uint32_t> roots; in ProcessReachableCallTree() local
971 std::queue<uint32_t>* roots) { in ProcessCallTreeFromRoots()
991 std::queue<uint32_t> roots; in CollectCallTreeFromRoots() local
/third_party/skia/src/core/
DSkQuadClipper.cpp34 SkScalar roots[2]; // we only expect one, but make room for 2 for safety in chopMonoQuadAt() local

123456