Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 197) sorted by relevance

12345678

/base/startup/init/services/etc/
Dgroup1 root:x:0:
2 bin:x:2:
3 system:x:1000:
4 radio:x:1001:
5 bluetooth:x:1002:
6 graphics:x:1003:
7 ueventd:x:1004:root
8 file_manager:x:1006:
9 log:x:1007:
10 user_data_rw:x:1008:
[all …]
Dpasswd1 root:x:0:0:::/bin/false
2 bin:x:2:2:::/bin/false
3 system:x:1000:1000:::/bin/false
4 radio:x:1001:1001:::/bin/false
5 bluetooth:x:1002:1002:::/bin/false
6 graphics:x:1003:1003:::/bin/false
7 ueventd:x:1004:1004:::/bin/false
8 file_manager:x:1006:1006:::/bin/false
9 log:x:1007:1007:::/bin/false
10 user_data_rw:x:1008:1008:::/bin/false
[all …]
/base/powermgr/power_manager/test/apitest/inner_api/ffrt/src/
Dffrt_utils_test.cpp30 int32_t x = 0; variable
32 x = 2; in __anond53cd5b10102()
36 EXPECT_EQ(x, 2);
46 int32_t x = 0; variable
48 x = 2; in __anond53cd5b10202()
51 EXPECT_EQ(x, 2);
61 int x = 0; variable
64 x = 2; in __anond53cd5b10302()
68 x += 2; in __anond53cd5b10402()
72 x += 2; in __anond53cd5b10502()
[all …]
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
Drbtree.c92 static void LeftRotate(struct RbTree *t, struct RbTreeNode *x) in LeftRotate() argument
94 struct RbTreeNode *y = x->right; in LeftRotate()
95 x->right = y->left; in LeftRotate()
97 y->left->p = x; in LeftRotate()
99 y->p = x->p; in LeftRotate()
100 if (x->p == t->nil) { in LeftRotate()
102 } else if (x == x->p->left) { in LeftRotate()
103 x->p->left = y; in LeftRotate()
105 x->p->right = y; in LeftRotate()
107 y->left = x; in LeftRotate()
[all …]
/base/startup/init/services/etc_lite/
Dgroup1 root:x:0:
2 bin:x:2:
3 system:x:1000:
4 servicectrl:x:1050:root,shell,system,samgr,hdf_devmgr
5 shell:x:2000:
6 faultloggerd:x:1202:root,system
7 watchdog:x:2001:root
8 ueventd:x:2002:root
9 device_manager:x:3062:
Dpasswd1 root:x:0:0:::/bin/false
2 bin:x:2:2:::/bin/false
3 system:x:1000:1000:::/bin/false
4 shell:x:2000:2000:::/bin/false
5 faultloggerd:x:1202:1202:::/bin/false
6 watchdog:x:2001:2001:::/bin/false
7 ueventd:x:2002:2002:::/bin/false
8 device_manager:x:3062:3062:::/bin/false
/base/update/updater/services/ptable_parse/
Dptable.h76 inline void PUT_LONG(uint8_t *x, const uint32_t y) in PUT_LONG() argument
78 *(x) = (y) & 0xff; in PUT_LONG()
79 *((x) + 1) = ((y) >> 8) & 0xff; in PUT_LONG()
80 *((x) + 2) = ((y) >> 16) & 0xff; in PUT_LONG()
81 *((x) + 3) = ((y) >> 24) & 0xff; in PUT_LONG()
85 inline void PUT_LONG_LONG(uint8_t *x, const uint64_t y) in PUT_LONG_LONG() argument
87 *(x) = (y) & 0xff; in PUT_LONG_LONG()
88 *((x) + 1) = (((y) >> 8) & 0xff); in PUT_LONG_LONG()
89 *((x) + 2) = (((y) >> 16) & 0xff); in PUT_LONG_LONG()
90 *((x) + 3) = (((y) >> 24) & 0xff); in PUT_LONG_LONG()
[all …]
/base/startup/init/services/loopevent/task/
Dle_task.h26 #define LoopMutexInit(x) (void)(x) argument
27 #define LoopMutexLock(x) (void)(x) argument
28 #define LoopMutexUnlock(x) (void)(x) argument
32 #define LoopMutexInit(x) pthread_mutex_init(x, NULL) argument
33 #define LoopMutexLock(x) pthread_mutex_lock(x) argument
34 #define LoopMutexUnlock(x) pthread_mutex_unlock(x) argument
/base/startup/hvb/libhvb/src/crypto/
Dhvb_hash_sha256.c31 #define shr(x, n) (((uint32_t)(x)) >> (n)) argument
32 #define rotr(x, n) (shr(x, n) | (((uint32_t)(x)) << (32 - (n)))) argument
34 #define sigma_0(x) (rotr(x, 2) ^ rotr(x, 13) ^ rotr(x, 22)) argument
35 #define sigma_1(x) (rotr(x, 6) ^ rotr(x, 11) ^ rotr(x, 25)) argument
36 #define sigma_2(x) (rotr(x, 7) ^ rotr(x, 18) ^ shr(x, 3)) argument
37 #define sigma_3(x) (rotr(x, 17) ^ rotr(x, 19) ^ shr(x, 10)) argument
39 #define maj(x, y, z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
40 #define ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z))) argument
/base/security/access_token/services/tokensyncmanager/test/mock/src/
Dsoft_bus_session_mock.cpp30 #define MIN_(x, y) ((x) < (y)) ? (x) : (y) argument
117 std::string x; in GetPeerSessionName() local
119 x = SoftBusManager::SESSION_NAME; in GetPeerSessionName()
121 x = "sessionid-" + std::to_string(sessionId); in GetPeerSessionName()
123 if (len < x.length()) { in GetPeerSessionName()
126 if (memcpy_s(sessionName, x.length(), x.c_str(), x.length()) != EOK) { in GetPeerSessionName()
129 sessionName[x.length()] = '\0'; in GetPeerSessionName()
141 std::string x = "deviceid-" + std::to_string(sessionId); in GetPeerDeviceId() local
142 if (len < x.length()) { in GetPeerDeviceId()
146 if (memcpy_s(devId, x.length(), x.c_str(), x.length()) != EOK) { in GetPeerDeviceId()
[all …]
/base/msdp/device_status/tools/vdev/src/
Dvirtual_touchscreen.cpp88 SendEvent(EV_ABS, ABS_MT_POSITION_X, slots_[s].coord.x); in SendTouchEvent()
92 …FI_HILOGD("Send event [%{public}d], (%{public}d, %{public}d)", s, slots_[s].coord.x, slots_[s].coo… in SendTouchEvent()
96 int32_t VirtualTouchScreen::DownButton(int32_t slot, int32_t x, int32_t y) in DownButton() argument
105 slots_[slot].coord.x = std::min(std::max(x, 0), screenWidth_ - 1); in DownButton()
108 …FI_HILOGD("Press down [%{public}d], (%{public}d, %{public}d)", slot, slots_[slot].coord.x, slots_[… in DownButton()
159 .x = std::min(std::max(slots_[slot].coord.x + dx, 0), screenWidth_ - 1), in Move()
163 slot, slots_[slot].coord.x, slots_[slot].coord.y, tcoord.x, tcoord.y); in Move()
165 while (tcoord.x != slots_[slot].coord.x || tcoord.y != slots_[slot].coord.y) { in Move()
166 double total = ::hypot(tcoord.x - slots_[slot].coord.x, tcoord.y - slots_[slot].coord.y); in Move()
168 slots_[slot].coord.x = tcoord.x; in Move()
[all …]
/base/sensors/sensor/interfaces/native/include/
Dsensor_agent_type.h182 float x; member
192 float x; member
202 float x; member
212 float x; member
222 float x; member
235 float x; member
295 float x; member
305 float x; member
342 float x; member
353 float x; member
[all …]
/base/security/huks/frameworks/huks_standard/main/crypto_engine/openssl/src/
Dhks_openssl_bn.c66 static int32_t BnExpModExport(BIGNUM *bnX, struct HksBlob *x) in BnExpModExport() argument
69 if ((outLen < 0) || (x->size < (uint32_t)outLen) || x->size > INT32_MAX) { in BnExpModExport()
73 (void)memset_s(x->data, x->size, 0, x->size); in BnExpModExport()
90 int32_t i = (int32_t)(x->size - 1); in BnExpModExport()
93 x->data[i] = bnOutput[j]; in BnExpModExport()
101 int32_t HksOpensslBnExpMod(struct HksBlob *x, const struct HksBlob *a, in HksOpensslBnExpMod() argument
124 ret = BnExpModExport(bnParams.bnX, x); in HksOpensslBnExpMod()
/base/security/huks/frameworks/huks_standard/main/crypto_engine/mbedtls/src/
Dhks_mbedtls_bn.c32 static int32_t CheckBnExpModNx(const struct HksBlob *n, const struct HksBlob *x) in CheckBnExpModNx() argument
40 if (x->size < n->size) { in CheckBnExpModNx()
41 HKS_LOG_E("The param x's size is too samll! x size = 0x%" LOG_PUBLIC "X", x->size); in CheckBnExpModNx()
48 int32_t HksMbedtlsBnExpMod(struct HksBlob *x, const struct HksBlob *a, in HksMbedtlsBnExpMod() argument
51 int32_t ret = CheckBnExpModNx(n, x); in HksMbedtlsBnExpMod()
87 ret = mbedtls_mpi_write_binary(&bnX, x->data, x->size); in HksMbedtlsBnExpMod()
/base/update/updater/
Dupdater_ux_guide.md119 | coms | type、id、x、y、w、h、fontSize、fontColor | 页面包含一组控件,定义了每个控件的基本属性,x、y、w、h确定了控件在页面上的唯一位置 | x、y、w、h…
152 "x": 120,
158 现在通过修改w、h、x、y属性移动到屏幕顶部左上角:
164 "x": 0,
183 | coms | type、id、x、y、w、h、fontSize、fontColor | 页面包含一组控件,定义了每个控件的基本属性,x、y、w、h确定了控件在页面上的唯一位置 | x、y、w、h…
192 "x": 48,
202 "x": 48,
219 "x": 0,
229 "x": 48,
250 | coms | type、id、x、y、w、h、fontSize、fontColor | 页面包含一组控件,定义了每个控件的基本属性,x、y、w、h确定了控件在页面上的唯一位置 | x、y、w、h…
[all …]
/base/hiviewdfx/hiview/plugins/faultlogger/service/sanitizer_collector/
Dsanitizerd_log.h31 #define FILE_NAME(x) (strrchr(x, '/') ? (strrchr(x, '/') + 1) : (x)) argument
/base/update/updater/utils/include/
Dmacros.h31 #define STRINGFY_WRAPPER(x) #x argument
32 #define STRINGFY(x) STRINGFY_WRAPPER(x) argument
37 #define CONCAT(x, y) CONCAT_WRAPPER(x, y) argument
38 #define CONCAT_WRAPPER(x, y) x##y argument
/base/msdp/device_status/libs/src/algorithm/
Dalgo_base.cpp43 if ((abs(data->x) > ACC_VALID_THRHD) || in SetData()
50 algoPara_.x = data->y; in SetData()
51 algoPara_.y = data->x; in SetData()
53 FI_HILOGD("x:%{public}f, y:%{public}f, z:%{public}f", algoPara_.x, algoPara_.y, algoPara_.z); in SetData()
/base/hiviewdfx/hilog/frameworks/libhilog/vsnprintf/
Dvsnprintf_s_p.cpp134 #define SECUREC_MALLOC(x) malloc((size_t)(x)) argument
138 #define SECUREC_FREE(x) free((void *)(x)) argument
142 #define SECUREC_MALLOC(x) (nullptr) argument
143 #define SECUREC_FREE(x) { printf("Malloc is not allowed, so free should not be possible to execut… argument
280 #define SECUREC_CHAR(x) x argument
/base/security/device_auth/services/frameworks/inc/
Dcommon_defs.h197 #define GOTO_IF_ERR(x) do { \ argument
198 int32_t res = x; \
212 #define GOTO_ERR_AND_SET_RET(x, res) do { \ argument
213 res = x; \
219 #define RETURN_IF_ERR(x) do { \ argument
220 int32_t res = x; \
/base/msdp/device_status/rust/data/sys/src/ipc/
Ddrag.rs34 x: i32, field
55 x: i32, field
65 x: value.x, in from_c()
75 self.x.serialize(parcel)?; in serialize()
86 x: i32::deserialize(parcel)?, in deserialize()
184 writeln!(f, " x: {},", self.shadow_info.x)?; in fmt()
/base/startup/init/services/init/include/
Dinit.h35 #define UNUSED(x) (void)(x) argument
/base/security/huks/frameworks/huks_standard/main/common/src/
Dhks_tags_type_manager.c22 #define HKS_ASSIGN_ENUM_VALUE(x, y) x, argument
/base/hiviewdfx/hilog/frameworks/libhilog/include/
Dhilog_common.h80 #define likely(x) __builtin_expect(!!(x), 1) argument
81 #define unlikely(x) __builtin_expect(!!(x), 0) argument
/base/startup/init/services/param/watcher/include/
Dwatcher_utils.h28 #define UNUSED(x) (void)(x) argument

12345678