Home
last modified time | relevance | path

Searched refs:off (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dmem.cpp84 static DWORD mem_select_lower_bound(off_t off) in mem_select_lower_bound() argument
87 return (sizeof(off_t) <= sizeof(DWORD)) ? static_cast<DWORD>(off) in mem_select_lower_bound()
88 … : static_cast<DWORD>(static_cast<uoff_t>(off) & 0xFFFFFFFFL); in mem_select_lower_bound()
91 static DWORD mem_select_upper_bound(off_t off) in mem_select_upper_bound() argument
97 : static_cast<DWORD>((static_cast<uoff_t>(off) >> OFFSET_DWORD) & 0xFFFFFFFFL); in mem_select_upper_bound()
100 void *mmap([[maybe_unused]] void *addr, size_t len, uint32_t prot, int flags, int fildes, off_t off) in mmap() argument
119 const off_t max_size = off + static_cast<off_t>(len); in mmap()
129 const auto file_off_low = mem_select_lower_bound(off); in mmap()
130 const auto file_off_high = mem_select_upper_bound(off); in mmap()
Dwindows_mem.h31 void *mmap([[maybe_unused]] void *addr, size_t len, uint32_t prot, int flags, int fildes, off_t off
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dinterference_graph.h281 size_t off = 0; in AssignColors() local
283 off = callee_offset; in AssignColors()
287 if ((try_color = FirstFree(nbr_colors, nbr_bias_colors, colors, off)) == colors) { in AssignColors()
333 static size_t FirstFree(const T &nbr_bs, const T &nbr_bs_bias, size_t colors, size_t off) in FirstFree() argument
337 for (try_color = off; try_color < colors + off; try_color++) { in FirstFree()
344 for (auto i = try_color; i < colors + off; i++) { in FirstFree()
351 return try_color == colors + off ? colors : try_color % colors; in FirstFree()
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DXTexture.js228 let off = -1;
232 off = i;
236 if (off != -1) {
244 off = 0;
246 let cid = this.makeCut(rid, 0, off * 32, w, h);
247 this.textImgs[rid]['mask'] |= mask << off;
248 this.textIdxs[textIdx] = { cid: cid, rid: rid, mask: mask << off, time: this.timenow(), };
252 gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, off * 32, gl.RGBA, gl.UNSIGNED_BYTE, imgd);
/arkcompiler/runtime_core/libpandabase/os/
Ddebug_info.cpp386 Dwarf_Off off = 0; in GetFunctionName() local
393 if (dwarf_global_formref(attr, &off, nullptr) == DW_DLV_OK && in GetFunctionName()
394 dwarf_offdie(dbg_, off, &abs_orig_die, nullptr) == DW_DLV_OK) { in GetFunctionName()
405 if (dwarf_global_formref(attr, &off, nullptr) == DW_DLV_OK && in GetFunctionName()
406 dwarf_offdie(dbg_, off, &spec_die, nullptr) == DW_DLV_OK) { in GetFunctionName()
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Drun.bat14 @echo off
/arkcompiler/runtime_core/libpandabase/
DREADME.md138 - False values for boolean arguments: **false**, **off**, **0**
147 $ ./app --bool on --bool1=off # bool is true, bool1 is false
158 $ ./app --double 3.14 --bool off -- arg1 --arg2=1 --arg3=false # remainder arguments example
/arkcompiler/toolchain/build/config/compiler/
DBUILD.gn72 # Turn off optimizations.
/arkcompiler/runtime_core/docs/
Ddoxygen.config722 # The QUIET tag can be used to turn on/off the messages that are generated to
724 # messages are off.
729 # The WARNINGS tag can be used to turn on/off the warning messages that are
1419 # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
1433 # (i.e. any modern browser). Windows users are probably better off using the
2143 # NO turns the diagrams off. Note that this option also works with HAVE_DOT
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js224 this.getComponent(s).off("onTriggerEnter", this._onTriggerEnter, this);
280 this.getComponent(s).off("onTriggerEnter", this._onTriggerEnter, this);
376 this.getComponent(o).off("onTriggerEnter", this._onTriggerEnter, this);
1029 this.getComponent(l).off("onTriggerEnter", this._onTriggerEnter, this);
1469 this.__persistentDisplay__.off(t, e, i);
1501 d.off = function(t, e, i) {
1503 this._eventTarget.off(t, e, i);
1744 this._eventTarget.off(t, e, i);
4605 s.off = f;
20247 off(t, e, i) { method in anonymousFunctiona10e982739900.anonymousFunctiona10e982739a00.Ao
[all …]
/arkcompiler/runtime_core/tests/
DCMakeLists.txt442 # Check if JIT-compilation wasn't turned off explicitly: