Home
last modified time | relevance | path

Searched refs:TranscendentalCache (Results 1 – 3 of 3) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dheap.h1526 class TranscendentalCache {
1530 explicit TranscendentalCache(Type t);
1535 TranscendentalCache* cache = caches_[type]; in Get()
1537 caches_[type] = cache = new TranscendentalCache(type); in Get()
1604 static TranscendentalCache* caches_[kNumberOfCaches];
Druntime.cc4061 return TranscendentalCache::Get(TranscendentalCache::ACOS, x); in Runtime_Math_acos()
4070 return TranscendentalCache::Get(TranscendentalCache::ASIN, x); in Runtime_Math_asin()
4079 return TranscendentalCache::Get(TranscendentalCache::ATAN, x); in Runtime_Math_atan()
4120 return TranscendentalCache::Get(TranscendentalCache::COS, x); in Runtime_Math_cos()
4129 return TranscendentalCache::Get(TranscendentalCache::EXP, x); in Runtime_Math_exp()
4147 return TranscendentalCache::Get(TranscendentalCache::LOG, x); in Runtime_Math_log()
4235 return TranscendentalCache::Get(TranscendentalCache::SIN, x); in Runtime_Math_sin()
4253 return TranscendentalCache::Get(TranscendentalCache::TAN, x); in Runtime_Math_tan()
Dheap.cc260 TranscendentalCache::Clear(); in GarbageCollectionPrologue()
3991 TranscendentalCache::TranscendentalCache(TranscendentalCache::Type t) in TranscendentalCache() function in v8::internal::TranscendentalCache
4003 TranscendentalCache* TranscendentalCache::caches_[kNumberOfCaches];
4006 void TranscendentalCache::Clear() { in Clear()