HomeSort by relevance Sort by last modified time
    Searched refs:ALWAYS_INLINE (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/wtf/
EnumClass.h 92 ALWAYS_INLINE EnumClass() { }
93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
97 ALWAYS_INLINE bool operator==(const EnumClass other) { return m_value == other.m_value; }
98 ALWAYS_INLINE bool operator!=(const EnumClass other) { return m_value != other.m_value; }
99 ALWAYS_INLINE bool operator<(const EnumClass other) { return m_value < other.m_value; }
100 ALWAYS_INLINE bool operator<=(const EnumClass other) { return m_value <= other.m_value; }
101 ALWAYS_INLINE bool operator>(const EnumClass other) { return m_value > other.m_value; }
102 ALWAYS_INLINE bool operator>=(const EnumClass other) { return m_value >= other.m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value;
    [all...]
SpinLock.h 43 ALWAYS_INLINE void spinLockLock(int volatile* lock)
49 ALWAYS_INLINE void spinLockUnlock(int volatile* lock)
Atomics.h 47 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); }
48 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
50 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); }
51 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return InterlockedDecrement64(reinterpret_cast<long long volatile*>(addend)); }
56 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return __atomic_inc(addend) + 1; }
57 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return __atomic_dec(addend) - 1; }
61 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return __sync_add_and_fetch(addend, 1); }
62 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return __sync_sub_and_fetch(addend, 1); }
64 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return __sync_add_and_fetch(addend, 1); }
65 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return __sync_sub_and_fetch(addend, 1);
    [all...]
WTF.h 50 ALWAYS_INLINE PartitionRoot* bufferPartition() { return &Partitions::m_bufferRoot; }
PartitionAlloc.h 166 ALWAYS_INLINE PartitionFreelistEntry* partitionFreelistMask(PartitionFreelistEntry* ptr)
178 ALWAYS_INLINE size_t partitionBucketSize(const PartitionBucket* bucket)
190 ALWAYS_INLINE void* partitionBucketAlloc(PartitionBucket* bucket)
202 ALWAYS_INLINE size_t partitionAllocRoundup(size_t size)
207 ALWAYS_INLINE void* partitionAlloc(PartitionRoot* root, size_t size)
223 ALWAYS_INLINE PartitionPageHeader* partitionPointerToPage(void* ptr)
235 ALWAYS_INLINE void partitionFreeWithPage(void* ptr, PartitionPageHeader* page)
245 ALWAYS_INLINE void partitionFree(void* ptr)
255 ALWAYS_INLINE void* partitionAllocGeneric(PartitionRoot* root, size_t size)
271 ALWAYS_INLINE void partitionFreeGeneric(void* ptr, size_t size
    [all...]
Compiler.h 129 /* ALWAYS_INLINE */
131 #ifndef ALWAYS_INLINE
133 #define ALWAYS_INLINE inline __attribute__((__always_inline__))
135 #define ALWAYS_INLINE __forceinline
137 #define ALWAYS_INLINE inline
RefPtr.h 38 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
39 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
40 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
50 ALWAYS_INLINE ~RefPtr() { derefIfNotNull(m_ptr); }
58 ALWAYS_INLINE T* operator->() const { return m_ptr; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Partitions.h 43 ALWAYS_INLINE static PartitionRoot* getObjectModelPartition() { return &m_objectModelRoot; }
44 ALWAYS_INLINE static PartitionRoot* getRenderingPartition() { return &m_renderingRoot; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleShader.h 44 ALWAYS_INLINE bool isShaderResource() const { return m_isShaderResource; }
45 ALWAYS_INLINE bool isPendingShader() const { return m_isPendingShader; }
StyleImage.h 71 ALWAYS_INLINE bool isImageResource() const { return m_isImageResource; }
72 ALWAYS_INLINE bool isPendingImage() const { return m_isPendingImage; }
73 ALWAYS_INLINE bool isGeneratedImage() const { return m_isGeneratedImage; }
74 ALWAYS_INLINE bool isImageResourceSet() const { return m_isImageResourceSet; }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeList.h 84 ALWAYS_INLINE bool hasIdNameCache() const { return !isNodeList(type()); }
85 ALWAYS_INLINE bool isRootedAtDocument() const { return m_rootType == NodeListIsRootedAtDocument || m_rootType == NodeListIsRootedAtDocumentIfOwnerHasItemrefAttr; }
86 ALWAYS_INLINE NodeListInvalidationType invalidationType() const { return static_cast<NodeListInvalidationType>(m_invalidationType); }
87 ALWAYS_INLINE CollectionType type() const { return static_cast<CollectionType>(m_collectionType); }
89 ALWAYS_INLINE void invalidateCache(const QualifiedName* attrName) const
107 ALWAYS_INLINE bool isItemCacheValid() const { return m_isItemCacheValid; }
108 ALWAYS_INLINE Node* cachedItem() const { return m_cachedItem; }
109 ALWAYS_INLINE unsigned cachedItemOffset() const { return m_cachedItemOffset; }
111 ALWAYS_INLINE bool isLengthCacheValid() const { return m_isLengthCacheValid; }
112 ALWAYS_INLINE unsigned cachedLength() const { return m_cachedLength;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEConvolveMatrix.h 94 ALWAYS_INLINE void fastSetInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
96 ALWAYS_INLINE int getPixelValue(PaintingData&, int x, int y);
102 ALWAYS_INLINE void setInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
103 ALWAYS_INLINE void setOuterPixels(PaintingData&, int x1, int y1, int x2, int y2);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
InputStreamPreprocessor.h 49 ALWAYS_INLINE UChar nextInputCharacter() const { return m_nextInputCharacter; }
54 ALWAYS_INLINE bool peek(SegmentedString& source)
71 ALWAYS_INLINE bool advance(SegmentedString& source)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScopedPersistent.h 55 ALWAYS_INLINE v8::Local<T> newLocal(v8::Isolate* isolate) const
91 ALWAYS_INLINE v8::Persistent<T>& getUnsafe()
  /external/compiler-rt/lib/asan/
asan_poisoning.h 34 ALWAYS_INLINE void FastPoisonShadow(uptr aligned_beg, uptr aligned_size,
43 ALWAYS_INLINE void FastPoisonShadowPartialRightRedzone(
  /art/runtime/gc/accounting/
card_table.h 120 void* AddrFromCard(const byte *card_addr) const ALWAYS_INLINE;
123 byte* CardFromAddr(const void *addr) const ALWAYS_INLINE;
137 void CheckCardValid(byte* card) const ALWAYS_INLINE;
  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidationMessage.cpp 41 ALWAYS_INLINE ValidationMessage::ValidationMessage(HTMLFormControlElement* element)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GlyphPage.h 103 ALWAYS_INLINE GlyphData glyphDataForCharacter(UChar32 c) const
108 ALWAYS_INLINE GlyphData glyphDataForIndex(unsigned index) const
117 ALWAYS_INLINE Glyph glyphAt(unsigned index) const
123 ALWAYS_INLINE const SimpleFontData* fontDataForCharacter(UChar32 c) const
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_compiler.h 120 #ifndef ALWAYS_INLINE
122 # define ALWAYS_INLINE inline __attribute__((always_inline))
124 # define ALWAYS_INLINE __forceinline
126 # define ALWAYS_INLINE INLINE
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 120 #ifndef ALWAYS_INLINE
122 # define ALWAYS_INLINE inline __attribute__((always_inline))
124 # define ALWAYS_INLINE __forceinline
126 # define ALWAYS_INLINE INLINE
  /art/compiler/dex/
dataflow_iterator.h 73 virtual BasicBlock* NextBody(bool had_change) ALWAYS_INLINE;
147 BasicBlock* NextBody(bool had_change) ALWAYS_INLINE;
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform.h 140 uptr ALWAYS_INLINE GetThreadTrace(int tid) {
146 uptr ALWAYS_INLINE GetThreadTraceHeader(int tid) {
  /art/runtime/
scoped_thread_state_change.h 33 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) ALWAYS_INLINE
64 ~ScopedThreadStateChange() LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) ALWAYS_INLINE {
123 LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) ALWAYS_INLINE
143 ~ScopedObjectAccessUnchecked() ALWAYS_INLINE {
266 SHARED_LOCK_FUNCTION(Locks::mutator_lock_) ALWAYS_INLINE
278 ~ScopedObjectAccess() UNLOCK_FUNCTION(Locks::mutator_lock_) ALWAYS_INLINE {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/
GraphicsContext3DNEON.h 37 ALWAYS_INLINE void unpackOneRowOfRGBA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
54 ALWAYS_INLINE void unpackOneRowOfRGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
75 ALWAYS_INLINE void unpackOneRowOfARGB16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
96 ALWAYS_INLINE void unpackOneRowOfBGRA16LittleToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
117 ALWAYS_INLINE void unpackOneRowOfRGBA4444ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
145 ALWAYS_INLINE void packOneRowOfRGBA8ToUnsignedShort4444(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow)
173 ALWAYS_INLINE void unpackOneRowOfRGBA5551ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
205 ALWAYS_INLINE void packOneRowOfRGBA8ToUnsignedShort5551(const uint8_t*& source, uint16_t*& destination, unsigned& pixelsPerRow)
237 ALWAYS_INLINE void unpackOneRowOfRGB565ToRGBA8(const uint16_t*& source, uint8_t*& destination, unsigned& pixelsPerRow)
269 ALWAYS_INLINE void packOneRowOfRGBA8ToUnsignedShort565(const uint8_t*& source, uint16_t*& destination, unsigned& (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 183 ALWAYS_INLINE static PassRefPtr<StringImpl> create(const char* s, unsigned length) { return create(reinterpret_cast<const LChar*>(s), length); }
185 ALWAYS_INLINE static PassRefPtr<StringImpl> create(const char* s) { return create(reinterpret_cast<const LChar*>(s)); }
207 ALWAYS_INLINE const LChar* characters8() const { ASSERT(is8Bit()); return reinterpret_cast<const LChar*>(this + 1); }
208 ALWAYS_INLINE const UChar* characters16() const { ASSERT(!is8Bit()); return reinterpret_cast<const UChar*>(this + 1); }
211 ALWAYS_INLINE const CharType * getCharacters() const;
308 ALWAYS_INLINE static void copyChars(UChar* destination, const LChar* source, unsigned numCharacters)
364 ALWAYS_INLINE PassRefPtr<StringImpl> removeCharacters(const CharType* characters, CharacterMatchFunctionPtr);
371 ALWAYS_INLINE size_t find(const char* s, unsigned index = 0) { return find(reinterpret_cast<const LChar*>(s), index); }
375 ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase(reinterpret_cast<const LChar*>(s), index); }
400 ALWAYS_INLINE PassRefPtr<StringImpl> replace(UChar pattern, const char* replacement, unsigned replacementLength) (…)
    [all...]

Completed in 721 milliseconds

1 2 3