/developtools/ace_js2bundle/ace-loader/plugin/codegen/ |
D | index.js | 1 …n;let o;Object.defineProperty(t,"__esModule",{value:!0}),t.setDomain=t.getDomain=t.Domain=void 0,f… field in i
|
/developtools/ace_ets2bundle/compiler/codegen/ |
D | codegen_ets.js | 15 …n,a="Expected a function",i="__lodash_hash_undefined__",s="__lodash_placeholder__",p=32,l=128,c=1/… argument
|
/developtools/smartperf_host/ide/src/base-ui/utils/ |
D | CSVFormater.ts | 35 columns.title.map(function (n: any) { 36 row += n + ','; 46 data.map(function (n: any) { 51 let strItem = n[m]; 52 if (typeof n[m] == 'undefined') { 54 } else if (typeof n[m] == 'object') { 55 strItem = JSON.stringify(n[m]); 58 if (idx === 0 && typeof n['depthCSV'] !== 'undefined') { 61 that.treeDepth(n['depthCSV']) + 62 … (typeof columns.formatter === 'function' ? columns.formatter(m, n[m]) || n[m] : strItem) + [all …]
|
/developtools/profiler/host/smartperf/ide/src/base-ui/utils/ |
D | CSVFormater.ts | 37 columns.title.map(function (n: any) { 38 row += n + ','; 48 data.map(function (n: any) { 53 let strItem = n[m]; 54 if (typeof n[m] == 'undefined') { 56 } else if (typeof n[m] == 'object') { 57 strItem = JSON.stringify(n[m]); 60 if (idx === 0 && typeof n['depthCSV'] !== 'undefined') { 63 that.treeDepth(n['depthCSV']) + 64 … (typeof columns.formatter === 'function' ? columns.formatter(m, n[m]) || n[m] : strItem) + [all …]
|
/developtools/profiler/device/plugins/ftrace_plugin/test/app/ |
D | busy_workers.cpp | 80 void StartWorkers(int n) in StartWorkers() 83 printf("[%ld] start %d workers...\n", GetTid(), n); in StartWorkers() 84 for (int i = 0; i < n; i++) { in StartWorkers() 104 void StopWorkers(int n) in StopWorkers() 111 printf("[%ld] wating %d workers...\n", GetTid(), n); in StopWorkers() 112 for (int i = 0; i < n; i++) { in StopWorkers() 173 const int n = std::thread::hardware_concurrency(); in main() local 174 const int m = ((argc > 1) ? atoi(argv[1]) : n); // switch times in main() 175 if (n <= 1 || m <= 1) { in main() 176 printf("unexpected m or n: %d, %d\n", m, n); in main() [all …]
|
/developtools/syscap_codec/src/ |
D | endian_internal.c | 41 uint32_t NtohlInter(uint32_t n) in NtohlInter() argument 43 return CheckEndian() ? n : B_L_SWAP32(n); in NtohlInter() 51 uint16_t NtohsInter(uint16_t n) in NtohsInter() argument 53 return CheckEndian() ? n : B_L_SWAP16(n); in NtohsInter()
|
D | endian_internal.h | 28 extern uint32_t NtohlInter(uint32_t n); 30 extern uint16_t NtohsInter(uint16_t n);
|
/developtools/ace_ets2bundle/compiler/test/ |
D | README.md | 75 … expected 'class MyComponent {\n build() {\n }\n}\n' to deeply equal 'class MyComponent {\n …
|
/developtools/hdc/src/common/ |
D | auth.cpp | 80 BIGNUM *n = BN_new(); in RSA2RSAPublicKey() local 81 BN_copy(n, rsa->n); in RSA2RSAPublicKey() 86 BIGNUM *n = (BIGNUM *)RSA_get0_n(rsa); in RSA2RSAPublicKey() local 89 BIGNUM *n = BN_new(); in RSA2RSAPublicKey() local 90 BN_copy(n, rsa->n); in RSA2RSAPublicKey() 103 BN_mod_sqr(rsaRR, rsaR, n, ctx); in RSA2RSAPublicKey() 104 BN_div(nullptr, rsaRem, n, r32, ctx); in RSA2RSAPublicKey() 111 BN_div(n, rsaRem, n, r32, ctx); in RSA2RSAPublicKey() 119 BN_free(n); in RSA2RSAPublicKey() 342 newKey->n = BN_bin2bn(modulusBuffer, sizeof(modulusBuffer), nullptr); in RSAPublicKey2RSA() [all …]
|
/developtools/profiler/device/services/profiler_service/test/unittest/ |
D | trace_file_reader_test.cpp | 69 constexpr int n = 100; variable 70 for (int i = 1; i <= n; i++) { 77 HILOG_INFO(LOG_CORE, "[%d/%d] write %ld bytes to %s.", i, n, bytes, path.c_str()); 85 for (int i = 1; i <= n; i++) { 104 constexpr int n = 100; variable 105 for (int i = 1; i <= n; i++) { 112 HILOG_INFO(LOG_CORE, "[%d/%d] write %ld bytes to %s.", i, n, bytes, path.c_str());
|
/developtools/bytrace/ |
D | README_zh.md | 45 | -b n,--buffer_size n | 指定n(KB)内存大小用于存取trace日志,默认2048KB | 46 | -t n,--time n | 用来指定trace运行的时间(单位:s),取决于需要分析过程的时间 |
|
D | README.md | 43 | -b n, --buffer_size n | Sets the size of the buffer (KB) for storing and reading traces. The defa… 44 | -t n, --time n | Sets the ByTrace uptime in seconds, which depends on the time required for analy…
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/ |
D | YAxisRendererRadarChart.ets | 72 let n = centeringEnabled ? 1 : 0; 92 n = labelCount; 109 ++n; 113 n++; 115 this.mAxis.mEntryCount = n; 117 if (this.mAxis.mEntries.length < n) { 119 this.mAxis.mEntries = new Array(n); 122 for (f = first, i = 0; i < n; f += interval, ++i) { 140 if (this.mAxis.mCenteredEntries.length < n) { 141 this.mAxis.mCenteredEntries = new Array(n); [all …]
|
D | AxisRenderer.ets | 193 var n = this.mAxis.isCenterAxisLabelsEnabled() ? 1 : 0; 213 n = labelCount; 230 ++n; 233 else if (last == first && n == 0) { 234 n = 1; 237 this.mAxis.mEntryCount = n; 239 if (this.mAxis.mEntries.length < n) { 241 this.mAxis.mEntries = new Array<number>(n); 244 for (f = first, i = 0; i < n; f += interval, ++i) { 262 if (this.mAxis.mCenteredEntries.length < n) { [all …]
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
D | README.md | 37 …usage: rom_analyzer.py [-h] [-v] -p PROJECT_PATH -j MODULE_INFO_JSON -n PRODUCT_NAME -d PRODUCT_DI… 48 -n PRODUCT_NAME, --product_name PRODUCT_NAME 49 product name. eg: -n rk3568 61 …python3 rom_analyzer.py -p ~/oh/ -j ~/oh/out/rk3568/packages/phone/system_module_info.json -n rk35… 126 …usage: ram_analyzer.py [-h] [-v] -s JSON_PATH -c CFG_PATH [-j ROM_RESULT] -n DEVICE_NUM [-b BASELI… 141 -n DEVICE_NUM, --device_num DEVICE_NUM 142 … device number to be collect hidumper info. eg: -n 7001005458323933328a01fce16d3800 153 …python .\ram_analyzer.py -s .\profile\ -c .\cfgs -j .\rom_analysis_result.json -n 700100545832393…
|
/developtools/ace_ets2bundle/compiler/src/ |
D | compile_info.ts | 385 …+'\n' + 'Incremental build end: ' + this.hotReloadIncrementalTime.hotReloadIncrementalEndTime, res… 404 logger.info(this.blue, message.replace(/^NOTE/, 'ArkTS:NOTE'), this.reset, '\n'); 410 logger.warn(this.yellow, message.replace(/^WARN/, 'ArkTS:WARN'), this.reset, '\n'); 434 logger.error(this.red, detail, this.reset, '\n'); 462 logger.error(this.red, formatErrMsg + '\n', this.reset);
|
D | create.ts | 39 'ERROR: The project name cannot be a path nor contain any special symbol.\n' +
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/ |
D | CalculationUtils.ts | 160 var n = Number(jitter[j]); 161 if (!isNaN(n) && (n / 1e6 > 100)) {
|
/developtools/profiler/tools/smaps_show/src/ |
D | main.rs | 166 for (n, v) in i.value { in print_smaps_core() 167 summary.add(&n, v); in print_smaps_core() 269 for (n, v) in value_map { in read_smaps() 270 output.get_mut(idx).unwrap().add(&n, v); in read_smaps() 285 for (n, v) in value_map { in read_smaps() 286 vms.add(&n, v); in read_smaps()
|
/developtools/integration_verification/tools/fotff/res/ |
D | res.go | 60 func Fake(n int) { 62 for i := 0; i < n; i++ {
|
/developtools/integration_verification/tools/fotff/utils/ |
D | ssh.go | 155 n, err := io.CopyBuffer(dst, src, make([]byte, 32*1024*1024)) 162 …: %.2fs speed: %.2fMB/s", verb, remoteFile, addr, prep, localFile, n, cost, float64(n)/cost/1024/1…
|
/developtools/smartperf_host/trace_streamer/src/table/base/ |
D | span_join.cpp | 73 auto& n = tableDesc.cols.at(i).name_; in CreateCols() local 74 if (IsTsOrDurCol(n)) { in CreateCols() 80 if (!DeduplicationForColumn(n, cols)) { in CreateCols() 83 cols.emplace_back(n, tableDesc.cols.at(i).type_); in CreateCols() 153 int32_t n = snprintf_s(sql, sizeof(sql), 1, querySql.c_str(), tableName.c_str()); in GetColumns() local 155 int32_t ret = sqlite3_prepare_v2(dataCache->db_, sql, n, &stmt, nullptr); in GetColumns()
|
/developtools/profiler/host/smartperf/trace_streamer/src/table/base/ |
D | span_join.cpp | 73 auto& n = tableDesc.cols.at(i).name_; in CreateCols() local 74 if (IsTsOrDurCol(n)) { in CreateCols() 80 if (!DeduplicationForColumn(n, cols)) { in CreateCols() 83 cols.emplace_back(n, tableDesc.cols.at(i).type_); in CreateCols() 153 int32_t n = snprintf_s(sql, sizeof(sql), 1, querySql.c_str(), tableName.c_str()); in GetColumns() local 155 int32_t ret = sqlite3_prepare_v2(dataCache->db_, sql, n, &stmt, nullptr); in GetColumns()
|
/developtools/profiler/host/smartperf/trace_streamer/src/base/ |
D | string_help.cpp | 53 void* memset_s(void* dest, size_t destSize, int32_t ch, size_t n) in memset_s() argument 57 return memset(dest, 0, n); in memset_s()
|
D | string_help.h | 29 void* memset_s(void* dest, size_t destSize, int32_t ch, size_t n);
|