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

1 2 3 4

  /dalvik/vm/
Inlines.h 18 * In gcc, "extern inline" ensures that the copy in the header is never
20 * non-inline copies. However, we still need to provide a non-inline
23 * the "always_inline" gcc attribute to ensure that the non-inline version
29 # define INLINE extern __inline__
31 # define INLINE
RawDexFile.h 50 INLINE DvmDex* dvmGetRawDexFileDex(RawDexFile* pRawDexFile) {
55 INLINE const char* dvmGetRawDexFileCacheFileName(RawDexFile* pRawDexFile) {
Exception.h 32 INLINE void dvmThrowException(const char* exceptionDescriptor,
48 INLINE void dvmThrowExceptionFmt(const char* exceptionDescriptor,
62 INLINE void dvmThrowExceptionByClass(ClassObject* exceptionClass,
74 INLINE void dvmThrowExceptionWithClassMessage(const char* exceptionDescriptor,
92 INLINE Object* dvmGetException(Thread* self) {
99 INLINE void dvmSetException(Thread* self, Object* exception)
112 INLINE void dvmClearException(Thread* self) {
127 INLINE bool dvmCheckException(Thread* self) {
188 INLINE Object* dvmFillInStackTrace(Thread* thread) {
193 INLINE int* dvmFillInStackTraceRaw(Thread* thread, int* pCount)
    [all...]
Bits.h 33 INLINE u1 get1(unsigned const char* pSrc)
41 INLINE u2 get2BE(unsigned char const* pSrc)
49 INLINE u4 get4BE(unsigned char const* pSrc)
57 INLINE u8 get8BE(unsigned char const* pSrc)
76 INLINE u2 get2LE(unsigned char const* pSrc)
84 INLINE u4 get4LE(unsigned char const* pSrc)
99 INLINE u8 get8LE(unsigned char const* pSrc)
117 INLINE u1 read1(unsigned const char** ppSrc)
125 INLINE u2 read2BE(unsigned char const** ppSrc)
136 INLINE u4 read4BE(unsigned char const** ppSrc
    [all...]
JarFile.h 48 INLINE DvmDex* dvmGetJarFileDex(JarFile* pJarFile) {
53 INLINE const char* dvmGetJarFileCacheFileName(JarFile* pJarFile) {
DvmDex.h 106 INLINE struct StringObject* dvmDexGetResolvedString(const DvmDex* pDvmDex,
112 INLINE struct ClassObject* dvmDexGetResolvedClass(const DvmDex* pDvmDex,
118 INLINE struct Method* dvmDexGetResolvedMethod(const DvmDex* pDvmDex,
124 INLINE struct Field* dvmDexGetResolvedField(const DvmDex* pDvmDex,
135 INLINE void dvmDexSetResolvedString(DvmDex* pDvmDex, u4 stringIdx,
141 INLINE void dvmDexSetResolvedClass(DvmDex* pDvmDex, u4 classIdx,
147 INLINE void dvmDexSetResolvedMethod(DvmDex* pDvmDex, u4 methodIdx,
153 INLINE void dvmDexSetResolvedField(DvmDex* pDvmDex, u4 fieldIdx,
175 INLINE struct StringObject* dvmDexGetResolvedString(const DvmDex* pDvmDex,
188 INLINE struct ClassObject* dvmDexGetResolvedClass(const DvmDex* pDvmDex
    [all...]
IndirectRefTable.h 212 INLINE IndirectRef dvmObjectToIndirectRef(IndirectRefTable* pRef,
228 INLINE u4 dvmIndirectRefToIndex(IndirectRef iref)
237 INLINE IndirectRefKind dvmGetIndirectRefType(IndirectRef iref)
272 INLINE u4 dvmPushIndirectRefTableSegment(IndirectRefTable* pRef)
288 INLINE void dvmPopIndirectRefTableSegment(IndirectRefTable* pRef, u4 cookie)
298 INLINE size_t dvmIndirectRefTableEntries(const IndirectRefTable* pRef)
307 INLINE size_t dvmIsIndirectRefTableFull(const IndirectRefTable* pRef)
331 INLINE IndirectRef dvmAppendToIndirectRefTable(IndirectRefTable* pRef,
355 INLINE Object* dvmGetFromIndirectRefTable(IndirectRefTable* pRef,
Hash.h 114 INLINE void dvmHashTableLock(HashTable* pHashTable) {
117 INLINE void dvmHashTableUnlock(HashTable* pHashTable) {
124 INLINE int dvmHashTableNumEntries(HashTable* pHashTable) {
131 INLINE int dvmHashTableMemUsage(HashTable* pHashTable) {
187 INLINE void dvmHashIterNext(HashIter* pIter) {
197 INLINE void dvmHashIterBegin(HashTable* pHashTable, HashIter* pIter) {
202 INLINE bool dvmHashIterDone(HashIter* pIter) {
205 INLINE void* dvmHashIterData(HashIter* pIter) {
  /bootable/recovery/minzip/
inline_magic.h 21 #define INLINE extern __inline__
23 #define INLINE
Bits.h 17 INLINE unsigned char get1(unsigned const char* pSrc)
25 INLINE unsigned short get2BE(unsigned char const* pSrc)
38 INLINE unsigned int get4BE(unsigned char const* pSrc)
53 INLINE unsigned long long get8BE(unsigned char const* pSrc)
72 INLINE unsigned short get2LE(unsigned char const* pSrc)
85 INLINE unsigned int get4LE(unsigned char const* pSrc)
100 INLINE unsigned long long get8LE(unsigned char const* pSrc)
119 INLINE unsigned char read1(unsigned const char** ppSrc)
127 INLINE unsigned short read2BE(unsigned char const** ppSrc)
140 INLINE unsigned int read4BE(unsigned char const** ppSrc
    [all...]
Zip.h 84 INLINE unsigned int mzZipEntryCount(const ZipArchive* pArchive) {
91 INLINE const ZipEntry*
103 INLINE unsigned int
111 INLINE UnterminatedString mzGetZipEntryFileName(const ZipEntry* pEntry) {
117 INLINE long mzGetZipEntryOffset(const ZipEntry* pEntry) {
120 INLINE long mzGetZipEntryUncompLen(const ZipEntry* pEntry) {
123 INLINE long mzGetZipEntryModTime(const ZipEntry* pEntry) {
126 INLINE long mzGetZipEntryCrc32(const ZipEntry* pEntry) {
Hash.h 100 INLINE int mzHashTableNumEntries(HashTable* pHashTable) {
107 INLINE int mzHashTableMemUsage(HashTable* pHashTable) {
152 INLINE void mzHashIterNext(HashIter* pIter) {
162 INLINE void mzHashIterBegin(HashTable* pHashTable, HashIter* pIter) {
167 INLINE bool mzHashIterDone(HashIter* pIter) {
170 INLINE void* mzHashIterData(HashIter* pIter) {
  /external/v8/src/
list.h 52 INLINE(explicit List(int capacity)) { Initialize(capacity); }
53 INLINE(~List()) { DeleteData(data_); }
62 INLINE(void* operator new(size_t size)) {
65 INLINE(void operator delete(void* p, size_t)) { return P::Delete(p); }
70 inline T& operator[](int i) const {
75 inline T& at(int i) const { return operator[](i); }
76 inline T& last() const { return at(length_ - 1); }
77 inline T& first() const { return at(0); }
79 INLINE(bool is_empty() const) { return length_ == 0; }
80 INLINE(int length() const) { return length_;
    [all...]
assembler.h 55 INLINE(Label()) { Unuse(); }
56 INLINE(~Label()) { ASSERT(!is_linked()); }
58 INLINE(void Unuse()) { pos_ = 0; }
60 INLINE(bool is_bound() const) { return pos_ < 0; }
61 INLINE(bool is_unused() const) { return pos_ == 0; }
62 INLINE(bool is_linked() const) { return pos_ > 0; }
150 static inline bool IsConstructCall(Mode mode) {
153 static inline bool IsCodeTarget(Mode mode) {
157 static inline bool IsGCRelocMode(Mode mode) {
160 static inline bool IsJSReturn(Mode mode)
    [all...]
  /dalvik/vm/analysis/
CodeVerify.h 117 INLINE bool dvmInsnIsOpcode(const InsnFlags* insnFlags, int addr) {
124 INLINE int dvmInsnGetWidth(const InsnFlags* insnFlags, int addr) {
131 INLINE bool dvmInsnIsChanged(const InsnFlags* insnFlags, int addr) {
134 INLINE void dvmInsnSetChanged(InsnFlags* insnFlags, int addr, bool changed)
145 INLINE bool dvmInsnIsVisited(const InsnFlags* insnFlags, int addr) {
148 INLINE void dvmInsnSetVisited(InsnFlags* insnFlags, int addr, bool changed)
159 INLINE bool dvmInsnIsVisitedOrChanged(const InsnFlags* insnFlags, int addr) {
166 INLINE bool dvmInsnIsInTry(const InsnFlags* insnFlags, int addr) {
169 INLINE void dvmInsnSetInTry(InsnFlags* insnFlags, int addr, bool inTry)
181 INLINE bool dvmInsnIsBranchTarget(const InsnFlags* insnFlags, int addr)
    [all...]
RegisterMap.h 69 INLINE RegisterMapFormat dvmRegisterMapGetFormat(const RegisterMap* pMap) {
76 INLINE void dvmRegisterMapSetFormat(RegisterMap* pMap, RegisterMapFormat format)
85 INLINE bool dvmRegisterMapGetOnHeap(const RegisterMap* pMap) {
92 INLINE u1 dvmRegisterMapGetRegWidth(const RegisterMap* pMap) {
99 INLINE void dvmRegisterMapSetRegWidth(RegisterMap* pMap, int regWidth) {
106 INLINE void dvmRegisterMapSetOnHeap(RegisterMap* pMap, bool val) {
116 INLINE u2 dvmRegisterMapGetNumEntries(const RegisterMap* pMap) {
123 INLINE void dvmRegisterMapSetNumEntries(RegisterMap* pMap, u2 numEntries) {
148 INLINE void dvmReleaseRegisterMapLine(const RegisterMap* pMap, const u1* data)
294 INLINE const RegisterMap* dvmGetExpandedRegisterMap(Method* method
    [all...]
  /dalvik/vm/oo/
Object.h 664 INLINE int dvmFindFieldOffset(const ClassObject* clazz,
685 INLINE JValue* dvmFieldPtr(const Object* obj, int offset) {
689 INLINE bool dvmGetFieldBoolean(const Object* obj, int offset) {
692 INLINE s1 dvmGetFieldByte(const Object* obj, int offset) {
695 INLINE s2 dvmGetFieldShort(const Object* obj, int offset) {
698 INLINE u2 dvmGetFieldChar(const Object* obj, int offset) {
701 INLINE s4 dvmGetFieldInt(const Object* obj, int offset) {
704 INLINE s8 dvmGetFieldLong(const Object* obj, int offset) {
707 INLINE float dvmGetFieldFloat(const Object* obj, int offset) {
710 INLINE double dvmGetFieldDouble(const Object* obj, int offset)
    [all...]
TypeCheck.h 36 INLINE int dvmInstanceof(const ClassObject* instance, const ClassObject* clazz)
58 INLINE int dvmIsSubClass(const ClassObject* sub, const ClassObject* clazz) {
  /development/tools/jdwpspy/
Common.h 25 # define INLINE extern inline
27 # define INLINE
33 INLINE u1 get1(unsigned const char* pSrc)
41 INLINE u2 get2BE(unsigned char const* pSrc)
54 INLINE u4 get4BE(unsigned char const* pSrc)
69 INLINE u8 get8BE(unsigned char const* pSrc)
  /dalvik/vm/jdwp/
Jdwp.h 51 INLINE FieldId dvmReadFieldId(const u1** pBuf) { return read4BE(pBuf); }
52 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
53 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
54 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
55 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); }
56 INLINE void dvmSetFieldId(u1* buf, FieldId val) { return set4BE(buf, val); }
57 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
58 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); }
59 INLINE void dvmSetRefTypeId(u1* buf, RefTypeId val) { return set8BE(buf, val); }
60 INLINE void dvmSetFrameId(u1* buf, FrameId val) { return set8BE(buf, val);
    [all...]
JdwpPriv.h 139 INLINE bool dvmJdwpNetStartup(JdwpState* state,
144 INLINE bool dvmJdwpAcceptConnection(JdwpState* state) {
147 INLINE bool dvmJdwpEstablishConnection(JdwpState* state) {
150 INLINE void dvmJdwpCloseConnection(JdwpState* state) {
153 INLINE void dvmJdwpNetShutdown(JdwpState* state) {
156 INLINE void dvmJdwpNetFree(JdwpState* state) {
159 INLINE bool dvmJdwpIsTransportDefined(JdwpState* state) {
162 INLINE bool dvmJdwpIsConnected(JdwpState* state) {
165 INLINE bool dvmJdwpAwaitingHandshake(JdwpState* state) {
168 INLINE bool dvmJdwpProcessIncoming(JdwpState* state)
    [all...]
  /external/qemu/fpu/
softfloat-native.h 71 static inline int isnan_f (float x) { return x != x; }
72 static inline int isnan_d (double x) { return x != x; }
73 static inline int isnan_ld (long double x) { return x != x; }
81 static inline int isinf_f (float x) { return isnan (x - x); }
82 static inline int isinf_d (double x) { return isnan (x - x); }
83 static inline int isinf_ld (long double x) { return isnan (x - x); }
199 INLINE float32 float32_add( float32 a, float32 b STATUS_PARAM)
203 INLINE float32 float32_sub( float32 a, float32 b STATUS_PARAM)
207 INLINE float32 float32_mul( float32 a, float32 b STATUS_PARAM)
211 INLINE float32 float32_div( float32 a, float32 b STATUS_PARAM
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmendian.h 54 static INLINE uint16
60 static INLINE uint32
66 static INLINE uint32
75 static INLINE void
125 static INLINE void
133 static INLINE void
143 static INLINE void
151 static INLINE void
166 static INLINE uint16
173 static INLINE uint3
    [all...]
  /dalvik/vm/mterp/common/
FindInterface.h 27 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
osTIType.h 64 #define INLINE inline

Completed in 622 milliseconds

1 2 3 4