Lines Matching refs:vuint64
2074 uint64 vuint64 = 0; in copy_int_value() local
2090 vuint64 = *(unsigned char*) psource; in copy_int_value()
2093 vuint64 = *(unsigned short*) psource; in copy_int_value()
2096 vuint64 = *(unsigned int*) psource; in copy_int_value()
2099 vuint64 = *(uint64*) psource; in copy_int_value()
2106 if (vuint64 > INT64_MAX) { in copy_int_value()
2109 vf64 = vuint64; in copy_int_value()
2114 vuint64 = (uint64) vf64; in copy_int_value()
2139 if (vuint64 > UINT8_MAX) { in copy_int_value()
2142 *(unsigned char*) pdest = (unsigned char) vuint64; in copy_int_value()
2145 if (vuint64 > UINT16_MAX) { in copy_int_value()
2148 *(unsigned short*) pdest = (unsigned short) vuint64; in copy_int_value()
2151 if (vuint64 > UINT32_MAX) { in copy_int_value()
2154 *(unsigned int*) pdest = (unsigned int) vuint64; in copy_int_value()
2157 *(uint64*) pdest = vuint64; in copy_int_value()