Home
last modified time | relevance | path

Searched refs:V8_INLINE (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/v8/src/platform/
Dmutex.cc37 static V8_INLINE void InitializeNativeHandle(pthread_mutex_t* mutex) { in InitializeNativeHandle()
58 static V8_INLINE void InitializeRecursiveNativeHandle(pthread_mutex_t* mutex) { in InitializeRecursiveNativeHandle()
72 static V8_INLINE void DestroyNativeHandle(pthread_mutex_t* mutex) { in DestroyNativeHandle()
79 static V8_INLINE void LockNativeHandle(pthread_mutex_t* mutex) { in LockNativeHandle()
86 static V8_INLINE void UnlockNativeHandle(pthread_mutex_t* mutex) { in UnlockNativeHandle()
93 static V8_INLINE bool TryLockNativeHandle(pthread_mutex_t* mutex) { in TryLockNativeHandle()
104 static V8_INLINE void InitializeNativeHandle(PCRITICAL_SECTION cs) {
109 static V8_INLINE void InitializeRecursiveNativeHandle(PCRITICAL_SECTION cs) {
114 static V8_INLINE void DestroyNativeHandle(PCRITICAL_SECTION cs) {
119 static V8_INLINE void LockNativeHandle(PCRITICAL_SECTION cs) {
[all …]
Dmutex.h97 V8_INLINE void AssertHeldAndUnmark() { in AssertHeldAndUnmark()
104 V8_INLINE void AssertUnheldAndMark() { in AssertUnheldAndMark()
Dsocket.h69 V8_INLINE bool IsValid() const { in IsValid()
Delapsed-timer.h106 static V8_INLINE TimeTicks Now() { in Now()
/external/chromium_org/v8/include/
Dv8.h219 V8_INLINE Handle() : val_(0) {} in Handle()
231 template <class S> V8_INLINE Handle(Handle<S> that) in Handle()
244 V8_INLINE bool IsEmpty() const { return val_ == 0; } in IsEmpty()
249 V8_INLINE void Clear() { val_ = 0; } in Clear()
251 V8_INLINE T* operator->() const { return val_; }
253 V8_INLINE T* operator*() const { return val_; }
261 template <class S> V8_INLINE bool operator==(const Handle<S>& that) const {
269 template <class S> V8_INLINE bool operator==(
284 template <class S> V8_INLINE bool operator!=(const Handle<S>& that) const {
288 template <class S> V8_INLINE bool operator!=(
[all …]
Dv8config.h305 # define V8_INLINE inline __attribute__((always_inline)) macro
307 # define V8_INLINE __forceinline macro
309 # define V8_INLINE inline macro
/external/chromium_org/v8/src/utils/
Drandom-number-generator.h66 V8_INLINE int NextInt() V8_WARN_UNUSED_RESULT { in NextInt()
83 V8_INLINE bool NextBool() V8_WARN_UNUSED_RESULT { in NextBool()
/external/chromium_org/v8/src/
Dchecks.cc41 static V8_INLINE void DumpBacktrace() { in DumpBacktrace()
Dglobals.h359 #define INLINE(declarator) V8_INLINE declarator
Dcpu.cc57 static V8_INLINE void __cpuid(int cpu_info[4], int info_type) { in __cpuid()
Daccessors.cc81 static V8_INLINE bool CheckForName(Handle<String> name, in CheckForName()
Dspaces.h1094 V8_INLINE bool IsOutsideAllocatedSpace(const void* address) const { in IsOutsideAllocatedSpace()