Home
last modified time | relevance | path

Searched refs:newVal (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/base/hiviewdfx/hilog/services/hilogd/
H A Dcmd_executor.cpp70 auto newVal = std::make_unique<ClientThread>(); in OnAcceptedConnection() local
71 if (newVal != nullptr) { in OnAcceptedConnection()
72 newVal->m_stopThread.store(false); in OnAcceptedConnection()
73 newVal->m_clientThread = std::thread([this](std::unique_ptr<Socket> handler) { in OnAcceptedConnection()
76 m_clients.push_back(std::move(newVal)); in OnAcceptedConnection()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/
H A Dv2_computed.ts78 let newVal = this.observeObjectAccess();
80 if (this.target_[cachedProp] !== newVal) {
81 this.target_[cachedProp] = newVal;
/ohos5.0/commonlibrary/memory_utils/libpurgeablemem/common/src/
H A Dux_page_table_c.c277 static inline bool UxpteCAS_(uxpte_t *uxpte, uxpte_t old, uxpte_t newVal) in UxpteCAS_() argument
279 return __sync_bool_compare_and_swap(uxpte, old, newVal); in UxpteCAS_()
285 uxpte_t newVal = 0; in UxpteAdd() local
291 newVal = old + incNum; in UxpteAdd()
299 } while (!UxpteCAS_(pte, old, newVal)); in UxpteAdd()
/ohos5.0/commonlibrary/ets_utils/js_api_module/buffer/src/
H A Djs_buffer.ts1123 const newVal = Math.floor(value * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left
1124 this[offset++] = (newVal >>> eightBytes);
1125 this[offset++] = newVal;
1174 const newVal = Math.floor(value * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left
1180 this[offset++] = newVal;
1181 this[offset++] = (newVal >>> eightBytes);
1190 const newVal = value;
1196 … this[offset++] = Math.floor(newVal * Math.pow(twoBytes, -32)); // -32 means offset 32 bits to left
/ohos5.0/docs/zh-cn/application-dev/napi/
H A Duse-napi-object-wrap.md20 public set value(newVal: number);
H A Duse-sendable-napi.md21 public set value(newVal: number);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_import_and_export_rd_test.cpp91 int ModifyDataInPage(int modifyPos, char newVal, const char *modifyFile);
239 int DistributedDBInterfacesImportAndExportRdTest::ModifyDataInPage(int modifyPos, char newVal, cons… in ModifyDataInPage() argument
251 size_t ret = fwrite(&newVal, sizeof(char), 1, fp); in ModifyDataInPage()
/ohos5.0/docs/en/application-dev/napi/
H A Duse-napi-object-wrap.md20 public set value(newVal: number);
H A Duse-sendable-napi.md21 public set value(newVal: number);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-util.md646 let newVal = 'data111';
647 Reflect.set(target, 'data', newVal);
648 console.info('data is changed to ' + newVal);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DstateMgmt.js8936 let newVal = this.observeObjectAccess();
8938 if (this.target_[cachedProp] !== newVal) {
8939 this.target_[cachedProp] = newVal;
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-util.md646 let newVal = 'data111';
647 Reflect.set(target, 'data', newVal);
648 console.info('data is changed to ' + newVal);