Lines Matching refs:result
518 T result;
519 ReadLane(&result, lane);
520 return result;
780 int64_t result;
781 memcpy(&result, &value, sizeof(result));
782 return result;
859 // When setting a result in a register larger than the result itself, the top
1274 // the result value.
1512 T result;
1513 memset(&result, 0, sizeof(result));
1514 return result;
1575 T result;
1576 VIXL_STATIC_ASSERT(sizeof(result) <= sizeof(raw));
1577 // Copy the result and truncate to fit. This assumes a little-endian host.
1578 memcpy(&result, &raw, sizeof(result));
1579 return result;
1835 T result;
1849 VIXL_STATIC_ASSERT(sizeof(result) <= sizeof(raw));
1850 // Copy the result and truncate to fit. This assumes a little-endian host.
1851 memcpy(&result, &raw, sizeof(result));
1852 return result;
2255 // result of this cast will always be well-defined.
5002 // FFR, the actual value loaded into the result is still unpredictable.
5119 static int CalcNFlag(uint64_t result, unsigned reg_size) {
5120 return (result >> (reg_size - 1)) & 1;
5123 static int CalcZFlag(uint64_t result) { return (result == 0) ? 1 : 0; }