Home
last modified time | relevance | path

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

12345

/dports/sysutils/smartmontools/smartmontools-7.2/
H A Djson.cpp128 void json::ref::set_uint128(uint64_t value_hi, uint64_t value_lo) in set_uint128() argument
130 if (!value_hi) in set_uint128()
133 m_js.set_uint128(m_path, value_hi, value_lo); in set_uint128()
146 if (value_hi) in set_if_safe_uint128()
169 void json::ref::set_unsafe_uint128(uint64_t value_hi, uint64_t value_lo) in set_unsafe_uint128() argument
171 if (!m_js.m_verbose && !value_hi) in set_unsafe_uint128()
176 set_uint128(value_hi, value_lo); in set_unsafe_uint128()
178 with_suffix("_s") = uint128_hilo_to_str(s, value_hi, value_lo); in set_unsafe_uint128()
182 if (!v && !value_hi) in set_unsafe_uint128()
187 uint64_t v = value_hi >> (i << 3); in set_unsafe_uint128()
[all …]
H A Djson.h78 void set_uint128(uint64_t value_hi, uint64_t value_lo);
82 bool set_if_safe_uint128(uint64_t value_hi, uint64_t value_lo);
87 void set_unsafe_uint128(uint64_t value_hi, uint64_t value_lo);
190 void set_uint128(const node_path & path, uint64_t value_hi, uint64_t value_lo);
H A Dutility.h307 const char * uint128_hilo_to_str(char * str, int strsize, uint64_t value_hi, uint64_t value_lo);
311 inline const char * uint128_hilo_to_str(char (& str)[SIZE], uint64_t value_hi, uint64_t value_lo) in uint128_hilo_to_str() argument
312 { return uint128_hilo_to_str(str, (int)SIZE, value_hi, value_lo); } in uint128_hilo_to_str()
H A Dutility.cpp788 const char * uint128_hilo_to_str(char * str, int strsize, uint64_t value_hi, uint64_t value_lo) in uint128_hilo_to_str() argument
790 snprint_uint128(str, strsize, ((unsigned __int128)value_hi << 64) | value_lo); in uint128_hilo_to_str()
797 const char * uint128_hilo_to_str(char * str, int strsize, uint64_t value_hi, uint64_t value_lo) in uint128_hilo_to_str() argument
799 snprintf(str, strsize, "%.0Lf", value_hi * (0xffffffffffffffffULL + 1.0L) + value_lo); in uint128_hilo_to_str()
806 const char * uint128_hilo_to_str(char * str, int strsize, uint64_t value_hi, uint64_t value_lo) in uint128_hilo_to_str() argument
808 snprintf(str, strsize, "%.0f", value_hi * (0xffffffffffffffffULL + 1.0) + value_lo); in uint128_hilo_to_str()
/dports/devel/llvm90/llvm-9.0.1.src/test/CodeGen/AMDGPU/
H A Datomic_optimizations_local_pointer.ll67 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
69 …add_rtn_u64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
160 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
162 …sub_rtn_u64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
252 ; GCN: v_mov_b32{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], 0
253 …max_rtn_i64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
279 ; GCN: v_mov_b32{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], 0
280 …min_rtn_i64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
306 ; GCN: v_mov_b32{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], 0
307 …max_rtn_u64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
[all …]
H A Datomic_optimizations_global_pointer.ll64 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
66 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
157 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
159 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/lang/clisp/clisp-df3b9f6fdcff22832898e89a989eb499c0f842ed/src/
H A Dintelem.d609 modexp maygc object L2_to_I (sint32 value_hi, uint32 value_lo) in L2_to_I() argument
611 if (value_hi == 0) { in L2_to_I()
615 } else if (value_hi == ~(uintL)0) { in L2_to_I()
643 #define FILL_2 FILL_1_DIGIT(value_lo); FILL_1_DIGIT(value_hi); in L2_to_I()
650 #define FILL_3 FILL_2_DIGITS(value_lo); FILL_1_DIGIT(value_hi); in L2_to_I()
654 if (value_hi >= 0) { in L2_to_I()
713 modexp maygc object UL2_to_I (uint32 value_hi, uint32 value_lo) in UL2_to_I() argument
715 if ((value_hi == 0) in UL2_to_I()
738 #define FILL_2 FILL_1_DIGIT(value_lo); FILL_1_DIGIT(value_hi); in UL2_to_I()
746 #define FILL_3 FILL_2_DIGITS(value_lo); FILL_1_DIGIT(value_hi); in UL2_to_I()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/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()
/dports/multimedia/v4l-utils/linux-5.13-rc2/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()
/dports/multimedia/libv4l/linux-5.13-rc2/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()
/dports/x11/xorgproto/xorgproto-2021.5/include/X11/extensions/
H A Dsyncproto.h169 INT32 value_hi; member
182 INT32 value_hi; member
215 INT32 value_hi; member
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/dynarmic/src/frontend/A32/translate/impl/
H A Dsynchronization.cpp240 const auto value_hi = ir.GetRegister(t2); in arm_STLEXD() local
241 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); // AccType::Ordered in arm_STLEXD()
410 const auto value_hi = ir.GetRegister(t2); in arm_STREXD() local
411 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); in arm_STREXD()
/dports/net/tightvnc/vnc_unixsrc/Xvnc/include/extensions/
H A Dsyncstr.h147 INT32 value_hi B32;
160 INT32 value_hi B32;
193 INT32 value_hi B32;
/dports/emulators/citra/citra-ac98458e0/externals/dynarmic/src/frontend/A32/translate/impl/
H A Dsynchronization.cpp246 const auto value_hi = ir.GetRegister(t2); in arm_STLEXD() local
247 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); // AccType::Ordered in arm_STLEXD()
422 const auto value_hi = ir.GetRegister(t2); in arm_STREXD() local
423 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); in arm_STREXD()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/dynarmic/src/frontend/A32/translate/impl/
H A Dsynchronization.cpp246 const auto value_hi = ir.GetRegister(t2); in arm_STLEXD() local
247 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); // AccType::Ordered in arm_STLEXD()
422 const auto value_hi = ir.GetRegister(t2); in arm_STREXD() local
423 const auto passed = ir.ExclusiveWriteMemory64(address, value_lo, value_hi); in arm_STREXD()
/dports/devel/llvm80/llvm-8.0.1.src/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll62 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
64 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
153 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
155 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
H A Datomic_optimizations_local_pointer.ll65 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
67 …add_rtn_u64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
156 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
158 …sub_rtn_u64 v{{\[}}{{[0-9]+}}:{{[0-9]+}}{{\]}}, v{{[0-9]+}}, v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/q68/
H A Dq68-jit-psp.h332 GEN_EMIT_1(GET_OP1_IMMED_16HI, uint16_t, value_hi)
333 GEN_EMIT_2(GET_OP1_IMMED_32, uint16_t, value_hi, uint16_t, value_lo)
357 GEN_EMIT_1(GET_OP2_IMMED_16HI, uint16_t, value_hi)
358 GEN_EMIT_2(GET_OP2_IMMED_32, uint16_t, value_hi, uint16_t, value_lo)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll78 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
80 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
186 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
188 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll76 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
78 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
182 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
184 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/llvm10/llvm-10.0.1.src/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll73 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
75 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
175 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
177 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll78 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
80 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
186 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
188 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/llvm11/llvm-11.0.1.src/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll76 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
78 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
182 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
184 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll73 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
75 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
175 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
177 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/CodeGen/AMDGPU/
H A Datomic_optimizations_global_pointer.ll78 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
80 ; GCN: {{flat|buffer|global}}_atomic_add_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}
186 ; GCN: v_mul_hi_u32_u24{{(_e[0-9]+)?}} v[[value_hi:[0-9]+]], s[[popcount]], 5
188 ; GCN: {{flat|buffer|global}}_atomic_sub_x2 v{{\[}}[[value_lo]]:[[value_hi]]{{\]}}

12345