Home
last modified time | relevance | path

Searched refs:value_hi (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/hwmon/
H A Dvexpress-hwmon.c53 u32 value_hi, value_lo; in vexpress_hwmon_u64_show() local
59 err = regmap_read(data->reg, 1, &value_hi); in vexpress_hwmon_u64_show()
64 div_u64(((u64)value_hi << 32) | value_lo, in vexpress_hwmon_u64_show()
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/csf/ipa_control/
H A Dmali_kbase_csf_ipa_control.c148 u32 value_lo, value_hi; in read_value_cnt() local
154 value_hi = kbase_reg_read( in read_value_cnt()
161 value_hi = kbase_reg_read( in read_value_cnt()
168 value_hi = kbase_reg_read( in read_value_cnt()
175 value_hi = kbase_reg_read( in read_value_cnt()
181 value_lo = value_hi = 0; in read_value_cnt()
185 return (((u64)value_hi << 32) | value_lo); in read_value_cnt()
/OK3568_Linux_fs/external/xserver/Xext/
H A Dsync.c1432 newvalue = ((int64_t)stuff->value_hi << 32) | stuff->value_lo; in ProcSyncSetCounter()
1461 newvalue = (int64_t)stuff->value_hi << 32 | stuff->value_lo; in ProcSyncChangeCounter()
1465 client->errorValue = stuff->value_hi; in ProcSyncChangeCounter()
1661 .value_hi = pCounter->value >> 32, in ProcSyncQueryCounter()
1668 swapl(&rep.value_hi); in ProcSyncQueryCounter()
2194 swapl(&stuff->value_hi); in SProcSyncSetCounter()
2207 swapl(&stuff->value_hi); in SProcSyncChangeCounter()
/OK3568_Linux_fs/external/xserver/hw/xfree86/dri2/
H A Ddri2ext.c581 rep.value_hi = value >> 32; in ProcDRI2GetParam()