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

1 2 3

  /external/webkit/Source/JavaScriptCore/interpreter/
Register.h 90 ALWAYS_INLINE Register::Register()
97 ALWAYS_INLINE Register::Register(const JSValue& v)
105 ALWAYS_INLINE Register& Register::operator=(const JSValue& v)
114 ALWAYS_INLINE JSValue Register::jsValue() const
119 ALWAYS_INLINE EncodedJSValue Register::encodedJSValue() const
126 ALWAYS_INLINE Register& Register::operator=(CallFrame* callFrame)
132 ALWAYS_INLINE Register& Register::operator=(CodeBlock* codeBlock)
138 ALWAYS_INLINE Register& Register::operator=(Instruction* vPC)
144 ALWAYS_INLINE int32_t Register::i() const
149 ALWAYS_INLINE CallFrame* Register::callFrame() cons
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
AlwaysInline.h 23 #ifndef ALWAYS_INLINE
25 #define ALWAYS_INLINE inline __attribute__((__always_inline__))
27 #define ALWAYS_INLINE __forceinline
29 #define ALWAYS_INLINE inline
RefPtr.h 42 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
43 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
44 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
52 ALWAYS_INLINE RefPtr(PlacementNewAdoptType) { }
58 ALWAYS_INLINE ~RefPtr() { derefIfNotNull(m_ptr); }
66 ALWAYS_INLINE T* operator->() const { return m_ptr; }
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.h 100 ALWAYS_INLINE void shift();
101 ALWAYS_INLINE int peek(int offset);
105 ALWAYS_INLINE const UChar* currentCharacter() const;
106 ALWAYS_INLINE int currentOffset() const;
108 ALWAYS_INLINE const Identifier* makeIdentifier(const UChar* characters, size_t length);
110 ALWAYS_INLINE bool lastTokenWasRestrKeyword() const;
112 ALWAYS_INLINE JSTokenType parseIdentifier(JSTokenData*, LexType);
113 ALWAYS_INLINE bool parseString(JSTokenData* lvalp, bool strictMode);
114 ALWAYS_INLINE void parseHex(double& returnValue);
115 ALWAYS_INLINE bool parseOctal(double& returnValue)
    [all...]
ParserArena.h 40 ALWAYS_INLINE const Identifier& makeIdentifier(JSGlobalData*, const UChar* characters, size_t length);
51 ALWAYS_INLINE const Identifier& IdentifierArena::makeIdentifier(JSGlobalData* globalData, const UChar* characters, size_t length)
SyntaxChecker.h 84 ALWAYS_INLINE Property(void* = 0)
88 ALWAYS_INLINE Property(const Identifier* ident, PropertyNode::Type ty)
93 ALWAYS_INLINE Property(PropertyNode::Type ty)
98 ALWAYS_INLINE bool operator!() { return !type; }
Lexer.cpp 236 ALWAYS_INLINE const UChar* Lexer::currentCharacter() const
242 ALWAYS_INLINE int Lexer::currentOffset() const
274 ALWAYS_INLINE void Lexer::shift()
284 ALWAYS_INLINE int Lexer::peek(int offset)
323 ALWAYS_INLINE const Identifier* Lexer::makeIdentifier(const UChar* characters, size_t length)
328 ALWAYS_INLINE bool Lexer::lastTokenWasRestrKeyword() const
402 ALWAYS_INLINE JSTokenType Lexer::parseIdentifier(JSTokenData* lvalp, LexType lexType)
456 ALWAYS_INLINE bool Lexer::parseString(JSTokenData* lvalp, bool strictMode)
545 ALWAYS_INLINE void Lexer::parseHex(double& returnValue)
584 ALWAYS_INLINE bool Lexer::parseOctal(double& returnValue
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h 36 ALWAYS_INLINE void JIT::emitGetJITStubArg(unsigned argumentNumber, RegisterID dst)
42 ALWAYS_INLINE bool JIT::isOperandConstantImmediateDouble(unsigned src)
47 ALWAYS_INLINE JSValue JIT::getConstantOperand(unsigned src)
53 ALWAYS_INLINE void JIT::emitPutToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
58 ALWAYS_INLINE void JIT::emitPutCellToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
66 ALWAYS_INLINE void JIT::emitPutIntToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
72 ALWAYS_INLINE void JIT::emitPutImmediateToCallFrameHeader(void* value, RegisterFile::CallFrameHeaderEntry entry)
77 ALWAYS_INLINE void JIT::emitGetFromCallFrameHeaderPtr(RegisterFile::CallFrameHeaderEntry entry, RegisterID to, RegisterID from)
85 ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures)
95 ALWAYS_INLINE void JIT::emitGetFromCallFrameHeader32(RegisterFile::CallFrameHeaderEntry entry, RegisterID to, Re (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.h 95 ALWAYS_INLINE void fastSetInteriorPixels(PaintingData&, int clipRight, int clipBottom);
97 ALWAYS_INLINE int getPixelValue(PaintingData&, int x, int y);
103 ALWAYS_INLINE void setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom);
104 ALWAYS_INLINE void setOuterPixels(PaintingData& paintingData, int x1, int y1, int x2, int y2);
FEConvolveMatrix.cpp 215 static ALWAYS_INLINE unsigned char clampRGBAValue(float channel, unsigned char max = 255)
225 ALWAYS_INLINE void setDestinationPixels(ByteArray* image, int& pixel, float* totals, float divisor, float bias, ByteArray* src)
240 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom)
287 ALWAYS_INLINE int FEConvolveMatrix::getPixelValue(PaintingData& paintingData, int x, int y)
373 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom)
375 // Must be implemented here, since it refers another ALWAYS_INLINE
383 ALWAYS_INLINE void FEConvolveMatrix::setOuterPixels(PaintingData& paintingData, int x1, int y1, int x2, int y2)
  /external/webkit/Source/JavaScriptCore/runtime/
ScopeChain.h 118 ALWAYS_INLINE JSGlobalData& ExecState::globalData() const
124 ALWAYS_INLINE JSGlobalObject* ExecState::lexicalGlobalObject() const
129 ALWAYS_INLINE JSObject* ExecState::globalThisValue() const
134 ALWAYS_INLINE ScopeChainNode* Register::scopeChain() const
139 ALWAYS_INLINE Register& Register::operator=(ScopeChainNode* scopeChain)
JSValue.h 401 ALWAYS_INLINE JSValue jsDoubleNumber(double d)
406 ALWAYS_INLINE JSValue jsNumber(double d)
411 ALWAYS_INLINE JSValue jsNumber(char i)
416 ALWAYS_INLINE JSValue jsNumber(unsigned char i)
421 ALWAYS_INLINE JSValue jsNumber(short i)
426 ALWAYS_INLINE JSValue jsNumber(unsigned short i)
431 ALWAYS_INLINE JSValue jsNumber(int i)
436 ALWAYS_INLINE JSValue jsNumber(unsigned i)
441 ALWAYS_INLINE JSValue jsNumber(long i)
446 ALWAYS_INLINE JSValue jsNumber(unsigned long i
    [all...]
Operations.h 37 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, JSString* s2)
62 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, JSString* s2)
87 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, const UString& u2)
112 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2)
127 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, const UString& u2, const UString& u3)
148 ALWAYS_INLINE JSValue jsString(ExecState* exec, Register* strings, unsigned count)
191 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSValue thisValue)
247 ALWAYS_INLINE bool JSValue::equalSlowCaseInline(ExecState* exec, JSValue v1, JSValue v2)
313 ALWAYS_INLINE bool JSValue::strictEqualSlowCaseInline(ExecState* exec, JSValue v1, JSValue v2)
337 ALWAYS_INLINE bool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2
    [all...]
JSValueInlineMethods.h 33 ALWAYS_INLINE int32_t JSValue::toInt32(ExecState* exec) const
63 ALWAYS_INLINE JSValue JSValue::toJSNumber(ExecState* exec) const
326 ALWAYS_INLINE JSCell* JSValue::asCell() const
332 ALWAYS_INLINE JSValue::JSValue(EncodeAsDoubleTag, double d)
502 ALWAYS_INLINE JSValue::JSValue(EncodeAsDoubleTag, double d)
522 ALWAYS_INLINE JSCell* JSValue::asCell() const
JSActivation.h 98 ALWAYS_INLINE JSActivation* Register::activation() const
JSPropertyNameIterator.h 101 ALWAYS_INLINE JSPropertyNameIterator* Register::propertyNameIterator() const
RopeImpl.h 72 ALWAYS_INLINE void deref()
SymbolTable.h 38 static ALWAYS_INLINE int missingSymbolMarker() { return std::numeric_limits<int>::max(); }
Lookup.h 131 ALWAYS_INLINE void initializeIfNeeded(JSGlobalData* globalData) const
137 ALWAYS_INLINE void initializeIfNeeded(ExecState* exec) const
146 ALWAYS_INLINE const HashEntry* entry(JSGlobalData* globalData, const Identifier& identifier) const
152 ALWAYS_INLINE const HashEntry* entry(ExecState* exec, const Identifier& identifier) const
159 ALWAYS_INLINE const HashEntry* entry(const Identifier& identifier) const
  /external/webkit/Source/JavaScriptCore/heap/
MarkStack.h 217 ALWAYS_INLINE void MarkStack::deprecatedAppend(JSCell** value)
223 ALWAYS_INLINE void MarkStack::append(JSValue* value)
229 ALWAYS_INLINE void MarkStack::append(JSCell** value)
235 ALWAYS_INLINE void MarkStack::internalAppend(JSValue value)
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.h 67 ALWAYS_INLINE bool JSDOMWindowBase::allowsAccessFromPrivate(const JSGlobalObject* other) const
  /system/core/include/private/pixelflinger/
ggl_fixed.h 26 #define ALWAYS_INLINE __attribute__((always_inline))
35 inline GGLfixed gglIntToFixed(GGLfixed i) ALWAYS_INLINE ;
36 inline GGLfixed gglFixedToIntRound(GGLfixed f) ALWAYS_INLINE ;
37 inline GGLfixed gglFixedToIntFloor(GGLfixed f) ALWAYS_INLINE ;
38 inline GGLfixed gglFixedToIntCeil(GGLfixed f) ALWAYS_INLINE ;
39 inline GGLfixed gglFracx(GGLfixed v) ALWAYS_INLINE ;
40 inline GGLfixed gglFloorx(GGLfixed v) ALWAYS_INLINE ;
41 inline GGLfixed gglCeilx(GGLfixed v) ALWAYS_INLINE ;
42 inline GGLfixed gglCenterx(GGLfixed v) ALWAYS_INLINE ;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform.h 140 uptr ALWAYS_INLINE INLINE GetThreadTrace(int tid) {
tsan_rtl.cc 321 ALWAYS_INLINE
327 ALWAYS_INLINE
332 ALWAYS_INLINE
358 ALWAYS_INLINE
432 ALWAYS_INLINE
560 ALWAYS_INLINE
590 ALWAYS_INLINE
tsan_rtl.h 577 void ALWAYS_INLINE INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) {
581 void ALWAYS_INLINE INLINE StatSet(ThreadState *thr, StatType typ, u64 n) {
643 void ALWAYS_INLINE INLINE MemoryRead(ThreadState *thr, uptr pc,
648 void ALWAYS_INLINE INLINE MemoryWrite(ThreadState *thr, uptr pc,
653 void ALWAYS_INLINE INLINE MemoryReadAtomic(ThreadState *thr, uptr pc,
658 void ALWAYS_INLINE INLINE MemoryWriteAtomic(ThreadState *thr, uptr pc,
724 void ALWAYS_INLINE INLINE TraceAddEvent(ThreadState *thr, FastState fs,

Completed in 464 milliseconds

1 2 3