Lines Matching full:val
177 s8 val;
178 memcpy(&val, &ptr[idx], 8);
179 return val;
186 static inline void putLongToArray(u4* ptr, int idx, s8 val)
192 conv.ll = val;
196 memcpy(&ptr[idx], &val, 8);
198 *((s8*) &ptr[idx]) = val;
588 _fromvtype val; \
593 val = GET_REGISTER##_fromrtype(vsrc1); \
596 result = (_tovtype) val; \
597 if (val >= intMax) /* +inf */ \
599 else if (val <= intMin) /* -inf */ \
601 else if (val != val) /* NaN */ \
604 result = (_tovtype) val; \