Searched refs:ALWAYS_INLINE (Results 1 - 25 of 73) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DEnumClass.h92 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 boo
[all...]
H A DAtomics.h55 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment)
61 ALWAYS_INLINE int atomicSubtract(int volatile* addend, int decrement)
66 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); }
67 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
69 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); }
70 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return InterlockedDecrement64(reinterpret_cast<long long volatile*>(addend)); }
72 ALWAYS_INLINE int atomicTestAndSetToOne(int volatile* ptr)
79 ALWAYS_INLINE void atomicSetOneToZero(int volatile* ptr)
88 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment) { return __sync_add_and_fetch(addend, increment); }
90 ALWAYS_INLINE in
[all...]
H A DBitwiseOperations.h53 ALWAYS_INLINE uint32_t countLeadingZeros32(uint32_t x)
62 ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x)
77 ALWAYS_INLINE uint32_t countLeadingZeros32(uint32_t x)
82 ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x)
91 ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return countLeadingZeros64(x); }
95 ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return countLeadingZeros32(x); }
H A DByteSwap.h49 ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return _byteswap_uint64(x); }
50 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return _byteswap_ulong(x); }
51 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return _byteswap_ushort(x); }
55 ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return __builtin_bswap64(x); }
56 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return __builtin_bswap32(x); }
59 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return __builtin_bswap16(x); }
68 ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap64(x); }
72 ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap32(x); }
H A DSpinLock.h43 ALWAYS_INLINE void spinLockLock(int volatile* lock)
50 ALWAYS_INLINE void spinLockUnlock(int volatile* lock)
H A DSaturatedArithmetic.h46 ALWAYS_INLINE int32_t saturatedAddition(int32_t a, int32_t b)
61 ALWAYS_INLINE int32_t saturatedSubtraction(int32_t a, int32_t b)
89 ALWAYS_INLINE int saturatedSet(int value, int FractionalShift)
107 ALWAYS_INLINE int saturatedSet(unsigned value, int FractionalShift)
H A DWTF.h50 static ALWAYS_INLINE PartitionRootGeneric* getBufferPartition()
H A DPartitionAlloc.h280 ALWAYS_INLINE PartitionBucket* buckets() { return reinterpret_cast<PartitionBucket*>(this + 1); }
281 ALWAYS_INLINE const PartitionBucket* buckets() const { return reinterpret_cast<const PartitionBucket*>(this + 1); }
316 ALWAYS_INLINE PartitionFreelistEntry* partitionFreelistMask(PartitionFreelistEntry* ptr)
334 ALWAYS_INLINE size_t partitionCookieSizeAdjustAdd(size_t size)
344 ALWAYS_INLINE size_t partitionCookieSizeAdjustSubtract(size_t size)
354 ALWAYS_INLINE void* partitionCookieFreePointerAdjust(void* ptr)
363 ALWAYS_INLINE void partitionCookieWriteValue(void* ptr)
372 ALWAYS_INLINE void partitionCookieCheckValue(void* ptr)
381 ALWAYS_INLINE char* partitionSuperPageToMetadataArea(char* ptr)
390 ALWAYS_INLINE PartitionPag
[all...]
H A DRefPtr.h39 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
40 ALWAYS_INLINE RefPtr(std::nullptr_t) : m_ptr(0) { }
41 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
43 ALWAYS_INLINE explicit RefPtr(T& ref) : m_ptr(&ref) { m_ptr->ref(); }
44 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
59 ALWAYS_INLINE ~RefPtr() { derefIfNotNull(m_ptr); }
61 ALWAYS_INLINE T* get() const { return m_ptr; }
67 ALWAYS_INLINE T* operator->() const { return m_ptr; }
209 ALWAYS_INLINE RefPtrValuePeeker(T* p): m_ptr(p) { }
210 ALWAYS_INLINE RefPtrValuePeeke
[all...]
H A DCompiler.h131 /* ALWAYS_INLINE */
133 #ifndef ALWAYS_INLINE
135 #define ALWAYS_INLINE inline __attribute__((__always_inline__)) macro
137 #define ALWAYS_INLINE __forceinline macro
139 #define ALWAYS_INLINE inline macro
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPartitions.h44 ALWAYS_INLINE static PartitionRoot* getObjectModelPartition() { return m_objectModelAllocator.root(); }
45 ALWAYS_INLINE static PartitionRoot* getRenderingPartition() { return m_renderingAllocator.root(); }
/external/chromium_org/third_party/WebKit/Source/wtf/asm/
H A DSaturatedArithmeticARM.h12 ALWAYS_INLINE int32_t saturatedAddition(int32_t a, int32_t b)
24 ALWAYS_INLINE int32_t saturatedSubtraction(int32_t a, int32_t b)
49 ALWAYS_INLINE int saturatedSet(int value, int FractionalShift)
76 ALWAYS_INLINE int saturatedSet(unsigned value, int FractionalShift)
/external/libunwind/include/
H A Dcompiler.h41 # define ALWAYS_INLINE inline __attribute__((always_inline)) macro
45 # define ALWAYS_INLINE macro
59 # define ALWAYS_INLINE macro
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleImage.h71 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/platform/graphics/filters/
H A DFEConvolveMatrix.h94 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/
H A DInputStreamPreprocessor.h49 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/core/html/
H A DCollectionIndexCache.h71 ALWAYS_INLINE NodeType* cachedNode() const { return m_currentNode; }
72 ALWAYS_INLINE unsigned cachedNodeIndex() const { ASSERT(cachedNode()); return m_cachedNodeIndex; }
73 ALWAYS_INLINE void setCachedNode(NodeType* node, unsigned index)
80 ALWAYS_INLINE bool isCachedNodeCountValid() const { return m_isLengthCacheValid; }
81 ALWAYS_INLINE unsigned cachedNodeCount() const { return m_cachedNodeCount; }
82 ALWAYS_INLINE void setCachedNodeCount(unsigned length)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScopedPersistent.h55 ALWAYS_INLINE v8::Local<T> newLocal(v8::Isolate* isolate) const
95 ALWAYS_INLINE v8::Persistent<T>& getUnsafe()
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DLiveNodeListBase.h67 ALWAYS_INLINE bool isRootedAtDocument() const { return m_rootType == NodeListIsRootedAtDocument; }
68 ALWAYS_INLINE NodeListInvalidationType invalidationType() const { return static_cast<NodeListInvalidationType>(m_invalidationType); }
69 ALWAYS_INLINE CollectionType type() const { return static_cast<CollectionType>(m_collectionType); }
80 ALWAYS_INLINE NodeListRootType rootType() const { return static_cast<NodeListRootType>(m_rootType); }
96 ALWAYS_INLINE bool LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType type, const QualifiedName& attrName)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h134 ALWAYS_INLINE
143 ALWAYS_INLINE
217 static ALWAYS_INLINE
223 static ALWAYS_INLINE bool TwoRangesIntersect(Shadow s1, Shadow s2,
241 u64 ALWAYS_INLINE addr0() const { return (x_ >> kClkBits) & 7; }
242 u64 ALWAYS_INLINE size() const { return 1ull << size_log(); }
243 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
244 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; }
269 bool ALWAYS_INLINE IsBothReadsOrAtomic(bool kIsWrite, bool kIsAtomic) const {
276 bool ALWAYS_INLINE IsRWNotWeake
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
H A Dp_compiler.h120 #ifndef ALWAYS_INLINE
122 # define ALWAYS_INLINE inline __attribute__((always_inline)) macro
124 # define ALWAYS_INLINE __forceinline macro
126 # define ALWAYS_INLINE INLINE macro
/external/libunwind/src/mi/
H A Dbacktrace.c35 static ALWAYS_INLINE int
/external/mesa3d/src/gallium/include/pipe/
H A Dp_compiler.h120 #ifndef ALWAYS_INLINE
122 # define ALWAYS_INLINE inline __attribute__((always_inline)) macro
124 # define ALWAYS_INLINE __forceinline macro
126 # define ALWAYS_INLINE INLINE macro
/external/compiler-rt/lib/asan/
H A Dasan_poisoning.h35 ALWAYS_INLINE void FastPoisonShadow(uptr aligned_beg, uptr aligned_size,
69 ALWAYS_INLINE void FastPoisonShadowPartialRightRedzone(
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/
H A DWebGLImageConversionNEON.h37 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 voi
[all...]

Completed in 9773 milliseconds

123