Home
last modified time | relevance | path

Searched refs:num1 (Results 1 – 3 of 3) sorted by relevance

/base/hiviewdfx/hiappevent/test/unittest/common/native/
Dhiappevent_native_test.cpp65 int8_t num1 = 1; variable
66 OH_HiAppEvent_AddInt8Param(list, "int8_key", num1);
116 int8_t num1 = 1; variable
117 OH_HiAppEvent_AddInt8Param(list, "int_key", num1);
152 int8_t num1 = 1; variable
153 OH_HiAppEvent_AddInt8Param(list, nullptr, num1);
199 int8_t num1 = 1; variable
200 OH_HiAppEvent_AddInt8Param(list, key1, num1);
/base/hiviewdfx/hilog/test/unittest/common/
Dhilog_utils_test.cpp171 uint64_t num1 = 1 << 4; variable
173 EXPECT_EQ(GetBitPos(num1), 4);
/base/startup/hvb/tools/
Dhvbtool.py211 def calc_egcd(self, num1, num2): argument
212 if num1 == 0:
214 egcd_g, egcd_y, egcd_x = self.calc_egcd(num2 % num1, num1)
215 return (egcd_g, egcd_x - (num2 // num1) * egcd_y, egcd_y)
217 def calc_modinv(self, num1, modulo): argument
218 modinv_gcd, modinv_x, _ = self.calc_egcd(num1, modulo)