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

1 2 3 4 5

  /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
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) {
RawDexFile.h 62 INLINE DvmDex* dvmGetRawDexFileDex(RawDexFile* pRawDexFile) {
67 INLINE const char* dvmGetRawDexFileCacheFileName(RawDexFile* pRawDexFile) {
DvmDex.h 107 INLINE struct StringObject* dvmDexGetResolvedString(const DvmDex* pDvmDex,
113 INLINE struct ClassObject* dvmDexGetResolvedClass(const DvmDex* pDvmDex,
119 INLINE struct Method* dvmDexGetResolvedMethod(const DvmDex* pDvmDex,
125 INLINE struct Field* dvmDexGetResolvedField(const DvmDex* pDvmDex,
136 INLINE void dvmDexSetResolvedString(DvmDex* pDvmDex, u4 stringIdx,
142 INLINE void dvmDexSetResolvedClass(DvmDex* pDvmDex, u4 classIdx,
148 INLINE void dvmDexSetResolvedMethod(DvmDex* pDvmDex, u4 methodIdx,
154 INLINE void dvmDexSetResolvedField(DvmDex* pDvmDex, u4 fieldIdx,
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) {
Misc.h 48 INLINE float dvmU4ToFloat(u4 val) {
53 INLINE u4 dvmFloatToU4(float val) {
77 INLINE void dvmPrintHexDump(const void* vaddr, size_t length) {
85 INLINE void dvmPrintHexDumpDbg(const void* vaddr, size_t length,const char* tag)
218 INLINE u8 dvmGetRelativeTimeUsec(void) {
230 INLINE u4 dvmGetRelativeTimeMsec(void) {
249 INLINE u8 dvmGetThreadCpuTimeUsec(void) {
257 INLINE u8 dvmGetOtherThreadCpuTimeUsec(pthread_t thread) {
  /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/
unbound-queue.h 44 inline UnboundQueue();
45 inline ~UnboundQueue();
47 INLINE(void Dequeue(Record* rec));
48 INLINE(void Enqueue(const Record& rec));
49 INLINE(bool IsEmpty()) { return divider_ == last_; }
50 INLINE(Record* Peek());
53 INLINE(void DeleteFirst());
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...]
circular-queue.h 55 INLINE(void* Enqueue());
85 INLINE(void WrapPositionIfNeeded(Cell** pos));
  /dalvik/vm/alloc/
WriteBarrier.h 29 INLINE void dvmWriteBarrierField(const Object *obj, void *addr)
37 INLINE void dvmWriteBarrierObject(const Object *obj)
47 INLINE void dvmWriteBarrierArray(const ArrayObject *obj,
  /dalvik/vm/oo/
ObjectInlines.h 27 INLINE void dvmSetObjectArrayElement(const ArrayObject* obj, int index,
50 INLINE JValue* dvmFieldPtr(const Object* obj, int offset) {
54 INLINE bool dvmGetFieldBoolean(const Object* obj, int offset) {
57 INLINE s1 dvmGetFieldByte(const Object* obj, int offset) {
60 INLINE s2 dvmGetFieldShort(const Object* obj, int offset) {
63 INLINE u2 dvmGetFieldChar(const Object* obj, int offset) {
66 INLINE s4 dvmGetFieldInt(const Object* obj, int offset) {
69 INLINE s8 dvmGetFieldLong(const Object* obj, int offset) {
72 INLINE float dvmGetFieldFloat(const Object* obj, int offset) {
75 INLINE double dvmGetFieldDouble(const Object* obj, int offset)
    [all...]
Object.h 660 INLINE int dvmFindFieldOffset(const ClassObject* clazz,
673 INLINE bool dvmIsPublicMethod(const Method* method) {
676 INLINE bool dvmIsPrivateMethod(const Method* method) {
679 INLINE bool dvmIsStaticMethod(const Method* method) {
682 INLINE bool dvmIsSynchronizedMethod(const Method* method) {
685 INLINE bool dvmIsDeclaredSynchronizedMethod(const Method* method) {
688 INLINE bool dvmIsFinalMethod(const Method* method) {
691 INLINE bool dvmIsNativeMethod(const Method* method) {
694 INLINE bool dvmIsAbstractMethod(const Method* method) {
697 INLINE bool dvmIsSyntheticMethod(const Method* method)
    [all...]
TypeCheck.h 36 INLINE int dvmInstanceof(const ClassObject* instance, const ClassObject* clazz)
58 INLINE int dvmIsSubClass(const ClassObject* sub, const ClassObject* clazz) {
  /dalvik/vm/analysis/
CodeVerify.h 221 INLINE bool dvmInsnIsOpcode(const InsnFlags* insnFlags, int addr) {
228 INLINE int dvmInsnGetWidth(const InsnFlags* insnFlags, int addr) {
235 INLINE bool dvmInsnIsChanged(const InsnFlags* insnFlags, int addr) {
238 INLINE void dvmInsnSetChanged(InsnFlags* insnFlags, int addr, bool changed)
249 INLINE bool dvmInsnIsVisited(const InsnFlags* insnFlags, int addr) {
252 INLINE void dvmInsnSetVisited(InsnFlags* insnFlags, int addr, bool changed)
263 INLINE bool dvmInsnIsVisitedOrChanged(const InsnFlags* insnFlags, int addr) {
270 INLINE bool dvmInsnIsInTry(const InsnFlags* insnFlags, int addr) {
273 INLINE void dvmInsnSetInTry(InsnFlags* insnFlags, int addr, bool inTry)
285 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)
250 INLINE const RegisterMap* dvmGetExpandedRegisterMap(Method* method
    [all...]
  /development/tools/jdwpspy/
Common.h 20 # define INLINE extern inline
22 # define INLINE
28 INLINE u1 get1(unsigned const char* pSrc)
36 INLINE u2 get2BE(unsigned char const* pSrc)
49 INLINE u4 get4BE(unsigned char const* pSrc)
64 INLINE u8 get8BE(unsigned char const* pSrc)
  /dalvik/vm/jdwp/
Jdwp.h 50 INLINE FieldId dvmReadFieldId(const u1** pBuf) { return read4BE(pBuf); }
51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
53 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
54 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); }
55 INLINE void dvmSetFieldId(u1* buf, FieldId val) { return set4BE(buf, val); }
56 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
57 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); }
58 INLINE void dvmSetRefTypeId(u1* buf, RefTypeId val) { return set8BE(buf, val); }
59 INLINE void dvmSetFrameId(u1* buf, FrameId val) { return set8BE(buf, val);
    [all...]
JdwpPriv.h 151 INLINE bool dvmJdwpNetStartup(JdwpState* state,
156 INLINE bool dvmJdwpAcceptConnection(JdwpState* state) {
159 INLINE bool dvmJdwpEstablishConnection(JdwpState* state) {
162 INLINE void dvmJdwpCloseConnection(JdwpState* state) {
165 INLINE void dvmJdwpNetShutdown(JdwpState* state) {
168 INLINE void dvmJdwpNetFree(JdwpState* state) {
171 INLINE bool dvmJdwpIsTransportDefined(JdwpState* state) {
174 INLINE bool dvmJdwpIsConnected(JdwpState* state) {
177 INLINE bool dvmJdwpAwaitingHandshake(JdwpState* state) {
180 INLINE bool dvmJdwpProcessIncoming(JdwpState* state)
    [all...]
  /external/qemu/fpu/
softfloat-native.h 73 static inline int isnan_f (float x) { return x != x; }
74 static inline int isnan_d (double x) { return x != x; }
75 static inline int isnan_ld (long double x) { return x != x; }
83 static inline int isinf_f (float x) { return isnan (x - x); }
84 static inline int isinf_d (double x) { return isnan (x - x); }
85 static inline int isinf_ld (long double x) { return isnan (x - x); }
204 INLINE float32 float32_add( float32 a, float32 b STATUS_PARAM)
208 INLINE float32 float32_sub( float32 a, float32 b STATUS_PARAM)
212 INLINE float32 float32_mul( float32 a, float32 b STATUS_PARAM)
216 INLINE float32 float32_div( float32 a, float32 b STATUS_PARAM
    [all...]
  /dalvik/vm/mterp/common/
FindInterface.h 29 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,

Completed in 607 milliseconds

1 2 3 4 5