Lines Matching refs:u4
138 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
147 /* get a long from an array of u4 */
148 static inline s8 getLongFromArray(const u4* ptr, int idx)
151 union { s8 ll; u4 parts[2]; } conv;
164 /* store a long into an array of u4 */
165 static inline void putLongToArray(u4* ptr, int idx, s8 val)
168 union { s8 ll; u4 parts[2]; } conv;
179 /* get a double from an array of u4 */
180 static inline double getDoubleFromArray(const u4* ptr, int idx)
183 union { double d; u4 parts[2]; } conv;
196 /* store a double into an array of u4 */
197 static inline void putDoubleToArray(u4* ptr, int idx, double dval)
200 union { double d; u4 parts[2]; } conv;
215 * Assumes the existence of "u4* fp".
225 (fp[(_idx)] = (u4)(_val)) : (assert(!"bad reg"),1969) )
252 # define SET_REGISTER_AS_OBJECT(_idx, _val) (fp[(_idx)] = (u4)(_val))
303 * Assumes existence of "u4* fp" and "const u2* pc".
330 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {
348 static inline bool checkForNullExportPC(Object* obj, u4* fp, const u2* pc)
362 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {