summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Lup Yuen <luppy@appkaki.com>2020-09-27 05:18:57 (GMT)
committerLee Lup Yuen <luppy@appkaki.com>2020-09-27 05:18:57 (GMT)
commit641b1e41b4512b14e389de3b828455759d449cb8 (patch)
tree66195e309d62c2723d71da3cb0067e4ecccccf4c
parentdf52d01f8b2d3e99f1c52ae47ece76cfca459ed3 (diff)
Commit from GitHub Actions
-rw-r--r--docs/lvgl.js302
-rw-r--r--docs/lvgl.txt5708
-rw-r--r--docs/lvgl.wasmbin2818862 -> 2796519 bytes
3 files changed, 2923 insertions, 3087 deletions
diff --git a/docs/lvgl.js b/docs/lvgl.js
index 50e186a..30ff092 100644
--- a/docs/lvgl.js
+++ b/docs/lvgl.js
@@ -88,22 +88,21 @@ if (ENVIRONMENT_IS_NODE) {
- read_ = function shell_read(filename, binary) {
- if (!nodeFS) nodeFS = require('fs');
- if (!nodePath) nodePath = require('path');
- filename = nodePath['normalize'](filename);
- return nodeFS['readFileSync'](filename, binary ? null : 'utf8');
- };
-
- readBinary = function readBinary(filename) {
- var ret = read_(filename, true);
- if (!ret.buffer) {
- ret = new Uint8Array(ret);
- }
- assert(ret.buffer);
- return ret;
- };
+read_ = function shell_read(filename, binary) {
+ if (!nodeFS) nodeFS = require('fs');
+ if (!nodePath) nodePath = require('path');
+ filename = nodePath['normalize'](filename);
+ return nodeFS['readFileSync'](filename, binary ? null : 'utf8');
+};
+readBinary = function readBinary(filename) {
+ var ret = read_(filename, true);
+ if (!ret.buffer) {
+ ret = new Uint8Array(ret);
+ }
+ assert(ret.buffer);
+ return ret;
+};
@@ -299,15 +298,6 @@ var NODEFS = 'NODEFS is no longer included by default; build with -lnodefs.js';
var STACK_ALIGN = 16;
-function dynamicAlloc(size) {
- assert(DYNAMICTOP_PTR);
- var ret = HEAP32[DYNAMICTOP_PTR>>2];
- var end = (ret + size + 15) & -16;
- assert(end <= HEAP8.length, 'failure to dynamicAlloc - memory growth etc. is not supported there, call malloc/sbrk directly');
- HEAP32[DYNAMICTOP_PTR>>2] = end;
- return ret;
-}
-
function alignMemory(size, factor) {
if (!factor) factor = STACK_ALIGN; // stack alignment (16-byte) by default
return Math.ceil(size / factor) * factor;
@@ -347,9 +337,6 @@ function warnOnce(text) {
-
-
-
// Wraps a JS function as a wasm function with a given signature.
function convertJsFunctionToWasm(func, sig) {
@@ -516,35 +503,6 @@ function removeFunction(index) {
-var funcWrappers = {};
-
-function getFuncWrapper(func, sig) {
- if (!func) return; // on null pointer, return undefined
- assert(sig);
- if (!funcWrappers[sig]) {
- funcWrappers[sig] = {};
- }
- var sigCache = funcWrappers[sig];
- if (!sigCache[func]) {
- // optimize away arguments usage in common cases
- if (sig.length === 1) {
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func);
- };
- } else if (sig.length === 2) {
- sigCache[func] = function dynCall_wrapper(arg) {
- return dynCall(sig, func, [arg]);
- };
- } else {
- // general case
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func, Array.prototype.slice.call(arguments));
- };
- }
- }
- return sigCache[func];
-}
-
@@ -555,20 +513,6 @@ function makeBigInt(low, high, unsigned) {
return unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0));
}
-/** @param {Array=} args */
-function dynCall(sig, ptr, args) {
- if (args && args.length) {
- // j (64-bit integer) must be passed in as two numbers [low 32, high 32].
- assert(args.length === sig.substring(1).replace(/j/g, '--').length);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].apply(null, [ptr].concat(args));
- } else {
- assert(sig.length == 1);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].call(null, ptr);
- }
-}
-
var tempRet0 = 0;
var setTempRet0 = function(value) {
@@ -592,7 +536,6 @@ var GLOBAL_BASE = 1024;
-
// === Preamble library stuff ===
// Documentation for the public APIs defined in this file must be updated in:
@@ -671,7 +614,7 @@ var wasmMemory;
var wasmTable = new WebAssembly.Table({
'initial': 48,
- 'maximum': 48 + 0,
+ 'maximum': 48,
'element': 'anyfunc'
});
@@ -767,10 +710,12 @@ function cwrap(ident, returnType, argTypes, opts) {
}
}
+// We used to include malloc/free by default in the past. Show a helpful error in
+// builds with assertions.
+
var ALLOC_NORMAL = 0; // Tries to use _malloc()
var ALLOC_STACK = 1; // Lives for the duration of the current function call
-var ALLOC_DYNAMIC = 2; // Cannot be freed except through sbrk
-var ALLOC_NONE = 3; // Do not allocate
+var ALLOC_NONE = 2; // Do not allocate
// allocate(): This is for internal use. You can use it yourself as well, but the interface
// is a little tricky (see docs right below). The reason is that it is optimized
@@ -804,7 +749,7 @@ function allocate(slab, types, allocator, ptr) {
} else {
ret = [_malloc,
stackAlloc,
- dynamicAlloc][allocator](Math.max(size, singleType ? 1 : types.length));
+ ][allocator](Math.max(size, singleType ? 1 : types.length));
}
if (zeroinit) {
@@ -857,12 +802,6 @@ function allocate(slab, types, allocator, ptr) {
return ret;
}
-// Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready
-function getMemory(size) {
- if (!runtimeInitialized) return dynamicAlloc(size);
- return _malloc(size);
-}
-
@@ -1250,7 +1189,6 @@ function writeAsciiToMemory(str, buffer, dontAddNull) {
var PAGE_SIZE = 16384;
var WASM_PAGE_SIZE = 65536;
-var ASMJS_PAGE_SIZE = 16777216;
function alignUp(x, multiple) {
if (x % multiple > 0) {
@@ -1291,17 +1229,16 @@ function updateGlobalBufferAndViews(buf) {
Module['HEAPF64'] = HEAPF64 = new Float64Array(buf);
}
-var STATIC_BASE = 1024,
- STACK_BASE = 5730928,
+var STACK_BASE = 5730768,
STACKTOP = STACK_BASE,
- STACK_MAX = 488048,
- DYNAMIC_BASE = 5730928,
- DYNAMICTOP_PTR = 487888;
+ STACK_MAX = 487888,
+ DYNAMIC_BASE = 5730768;
assert(STACK_BASE % 16 === 0, 'stack must start aligned');
assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
+
var TOTAL_STACK = 5242880;
if (Module['TOTAL_STACK']) assert(TOTAL_STACK === Module['TOTAL_STACK'], 'the stack size can no longer be determined at runtime')
@@ -1314,12 +1251,6 @@ assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined'
'JS engine does not provide full typed array support');
-
-
-
-
-
-
// In non-standalone/normal mode, we create the memory here.
@@ -1349,7 +1280,6 @@ INITIAL_INITIAL_MEMORY = buffer.byteLength;
assert(INITIAL_INITIAL_MEMORY % WASM_PAGE_SIZE === 0);
updateGlobalBufferAndViews(buffer);
-HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE;
@@ -1396,26 +1326,6 @@ function abortFnPtrError(ptr, sig) {
-function callRuntimeCallbacks(callbacks) {
- while(callbacks.length > 0) {
- var callback = callbacks.shift();
- if (typeof callback == 'function') {
- callback(Module); // Pass the module as the first argument.
- continue;
- }
- var func = callback.func;
- if (typeof func === 'number') {
- if (callback.arg === undefined) {
- Module['dynCall_v'](func);
- } else {
- Module['dynCall_vi'](func, callback.arg);
- }
- } else {
- func(callback.arg === undefined ? null : callback.arg);
- }
- }
-}
-
var __ATPRERUN__ = []; // functions called before the runtime is initialized
var __ATINIT__ = []; // functions called during startup
var __ATMAIN__ = []; // functions called when main() is to be run
@@ -1489,29 +1399,6 @@ function addOnPostRun(cb) {
__ATPOSTRUN__.unshift(cb);
}
-/** @param {number|boolean=} ignore */
-function unSign(value, bits, ignore) {
- if (value >= 0) {
- return value;
- }
- return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts
- : Math.pow(2, bits) + value;
-}
-/** @param {number|boolean=} ignore */
-function reSign(value, bits, ignore) {
- if (value <= 0) {
- return value;
- }
- var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32
- : Math.pow(2, bits-1);
- if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that
- // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors
- // TODO: In i64 mode 1, resign the two parts separately and safely
- value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts
- }
- return value;
-}
-
@@ -1663,7 +1550,6 @@ function abort(what) {
throw e;
}
-
var memoryInitializer = null;
@@ -1695,7 +1581,6 @@ Module['FS_createPreloadedFile'] = FS.createPreloadedFile;
-
function hasPrefix(str, prefix) {
return String.prototype.startsWith ?
str.startsWith(prefix) :
@@ -1735,6 +1620,7 @@ function createExportWrapper(name, fixedasm) {
};
}
+
var wasmBinaryFile = 'lvgl.wasm';
if (!isDataURI(wasmBinaryFile)) {
wasmBinaryFile = locateFile(wasmBinaryFile);
@@ -1774,9 +1660,7 @@ function getBinaryPromise() {
});
}
// Otherwise, getBinary should be able to get it synchronously
- return new Promise(function(resolve, reject) {
- resolve(getBinary());
- });
+ return Promise.resolve().then(getBinary);
}
@@ -1867,7 +1751,6 @@ function createWasm() {
return {}; // no exports yet; we'll fill them in later
}
-
// Globals used by JS i64 conversions
var tempDouble;
var tempI64;
@@ -1881,11 +1764,6 @@ var ASM_CONSTS = {
-// STATICTOP = STATIC_BASE + 487024;
-/* global initializers */ __ATINIT__.push({ func: function() { ___wasm_call_ctors() } });
-
-
-
/* no memory initializer */
// {{PRE_LIBRARY}}
@@ -1895,6 +1773,26 @@ var ASM_CONSTS = {
abort('Stack overflow! Attempted to allocate ' + allocSize + ' bytes on the stack, but stack has only ' + (STACK_MAX - stackSave() + allocSize) + ' bytes available!');
}
+ function callRuntimeCallbacks(callbacks) {
+ while(callbacks.length > 0) {
+ var callback = callbacks.shift();
+ if (typeof callback == 'function') {
+ callback(Module); // Pass the module as the first argument.
+ continue;
+ }
+ var func = callback.func;
+ if (typeof func === 'number') {
+ if (callback.arg === undefined) {
+ wasmTable.get(func)();
+ } else {
+ wasmTable.get(func)(callback.arg);
+ }
+ } else {
+ func(callback.arg === undefined ? null : callback.arg);
+ }
+ }
+ }
+
function demangle(func) {
warnOnce('warning: build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling');
return func;
@@ -1910,21 +1808,45 @@ var ASM_CONSTS = {
});
}
+
+ function dynCallLegacy(sig, ptr, args) {
+ assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
+ if (args && args.length) {
+ // j (64-bit integer) must be passed in as two numbers [low 32, high 32].
+ assert(args.length === sig.substring(1).replace(/j/g, '--').length);
+ } else {
+ assert(sig.length == 1);
+ }
+ if (args && args.length) {
+ return Module['dynCall_' + sig].apply(null, [ptr].concat(args));
+ }
+ return Module['dynCall_' + sig].call(null, ptr);
+ }function dynCall(sig, ptr, args) {
+ // Without WASM_BIGINT support we cannot directly call function with i64 as
+ // part of thier signature, so we rely the dynCall functions generated by
+ // wasm-emscripten-finalize
+ if (sig.indexOf('j') != -1) {
+ return dynCallLegacy(sig, ptr, args);
+ }
+
+ return wasmTable.get(ptr).apply(null, args)
+ }
+
function jsStackTrace() {
- var err = new Error();
- if (!err.stack) {
+ var error = new Error();
+ if (!error.stack) {
// IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown,
// so try that as a special-case.
try {
throw new Error();
} catch(e) {
- err = e;
+ error = e;
}
- if (!err.stack) {
+ if (!error.stack) {
return '(no stack trace available)';
}
}
- return err.stack.toString();
+ return error.stack.toString();
}
function stackTrace() {
@@ -1937,18 +1859,10 @@ var ASM_CONSTS = {
abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']);
}
- function ___handle_stack_overflow() {
- abort('stack overflow')
- }
-
function _abort() {
abort();
}
- function _emscripten_get_sbrk_ptr() {
- return 487888;
- }
-
function _emscripten_memcpy_big(dest, src, num) {
HEAPU8.copyWithin(dest, src, src + num);
}
@@ -2030,6 +1944,8 @@ var ASM_CONSTS = {
},basename:function(path) {
// EMSCRIPTEN return '/'' for '/', not an empty string
if (path === '/') return '/';
+ path = PATH.normalize(path);
+ path = path.replace(/\/$/, "");
var lastSlash = path.lastIndexOf('/');
if (lastSlash === -1) return path;
return path.substr(lastSlash+1);
@@ -2178,8 +2094,10 @@ function intArrayToString(array) {
}
-var asmGlobalArg = {};
-var asmLibraryArg = { "__assert_fail": ___assert_fail, "__handle_stack_overflow": ___handle_stack_overflow, "abort": _abort, "emscripten_get_sbrk_ptr": _emscripten_get_sbrk_ptr, "emscripten_memcpy_big": _emscripten_memcpy_big, "emscripten_resize_heap": _emscripten_resize_heap, "fd_write": _fd_write, "memory": wasmMemory, "mktime": _mktime, "setTempRet0": _setTempRet0, "table": wasmTable };
+
+/* global initializers */ __ATINIT__.push({ func: function() { ___wasm_call_ctors() } });
+
+var asmLibraryArg = { "__assert_fail": ___assert_fail, "__indirect_function_table": wasmTable, "abort": _abort, "emscripten_memcpy_big": _emscripten_memcpy_big, "emscripten_resize_heap": _emscripten_resize_heap, "fd_write": _fd_write, "memory": wasmMemory, "mktime": _mktime, "setTempRet0": _setTempRet0 };
var asm = createWasm();
/** @type {function(...*):?} */
var ___wasm_call_ctors = Module["___wasm_call_ctors"] = createExportWrapper("__wasm_call_ctors");
@@ -2248,42 +2166,6 @@ var _malloc = Module["_malloc"] = createExportWrapper("malloc");
var _free = Module["_free"] = createExportWrapper("free");
/** @type {function(...*):?} */
-var ___set_stack_limit = Module["___set_stack_limit"] = createExportWrapper("__set_stack_limit");
-
-/** @type {function(...*):?} */
-var dynCall_iiii = Module["dynCall_iiii"] = createExportWrapper("dynCall_iiii");
-
-/** @type {function(...*):?} */
-var dynCall_vii = Module["dynCall_vii"] = createExportWrapper("dynCall_vii");
-
-/** @type {function(...*):?} */
-var dynCall_vi = Module["dynCall_vi"] = createExportWrapper("dynCall_vi");
-
-/** @type {function(...*):?} */
-var dynCall_iii = Module["dynCall_iii"] = createExportWrapper("dynCall_iii");
-
-/** @type {function(...*):?} */
-var dynCall_ii = Module["dynCall_ii"] = createExportWrapper("dynCall_ii");
-
-/** @type {function(...*):?} */
-var dynCall_viiii = Module["dynCall_viiii"] = createExportWrapper("dynCall_viiii");
-
-/** @type {function(...*):?} */
-var dynCall_viii = Module["dynCall_viii"] = createExportWrapper("dynCall_viii");
-
-/** @type {function(...*):?} */
-var dynCall_iiiiii = Module["dynCall_iiiiii"] = createExportWrapper("dynCall_iiiiii");
-
-/** @type {function(...*):?} */
-var dynCall_iiiiiii = Module["dynCall_iiiiiii"] = createExportWrapper("dynCall_iiiiiii");
-
-/** @type {function(...*):?} */
-var dynCall_iiiii = Module["dynCall_iiiii"] = createExportWrapper("dynCall_iiiii");
-
-/** @type {function(...*):?} */
-var dynCall_iidiiii = Module["dynCall_iidiiii"] = createExportWrapper("dynCall_iidiiii");
-
-/** @type {function(...*):?} */
var dynCall_jiji = Module["dynCall_jiji"] = createExportWrapper("dynCall_jiji");
/** @type {function(...*):?} */
@@ -2295,7 +2177,6 @@ var __growWasmMemory = Module["__growWasmMemory"] = createExportWrapper("__growW
// === Auto-generated postamble setup entry stuff ===
-
if (!Object.getOwnPropertyDescriptor(Module, "intArrayFromString")) Module["intArrayFromString"] = function() { abort("'intArrayFromString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "intArrayToString")) Module["intArrayToString"] = function() { abort("'intArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "ccall")) Module["ccall"] = function() { abort("'ccall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
@@ -2303,7 +2184,6 @@ if (!Object.getOwnPropertyDescriptor(Module, "cwrap")) Module["cwrap"] = functio
if (!Object.getOwnPropertyDescriptor(Module, "setValue")) Module["setValue"] = function() { abort("'setValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "getValue")) Module["getValue"] = function() { abort("'getValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "allocate")) Module["allocate"] = function() { abort("'allocate' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Object.getOwnPropertyDescriptor(Module, "getMemory")) Module["getMemory"] = function() { abort("'getMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
if (!Object.getOwnPropertyDescriptor(Module, "UTF8ArrayToString")) Module["UTF8ArrayToString"] = function() { abort("'UTF8ArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "UTF8ToString")) Module["UTF8ToString"] = function() { abort("'UTF8ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "stringToUTF8Array")) Module["stringToUTF8Array"] = function() { abort("'stringToUTF8Array' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
@@ -2328,9 +2208,6 @@ if (!Object.getOwnPropertyDescriptor(Module, "FS_createLazyFile")) Module["FS_cr
if (!Object.getOwnPropertyDescriptor(Module, "FS_createLink")) Module["FS_createLink"] = function() { abort("'FS_createLink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
if (!Object.getOwnPropertyDescriptor(Module, "FS_createDevice")) Module["FS_createDevice"] = function() { abort("'FS_createDevice' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
if (!Object.getOwnPropertyDescriptor(Module, "FS_unlink")) Module["FS_unlink"] = function() { abort("'FS_unlink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Object.getOwnPropertyDescriptor(Module, "dynamicAlloc")) Module["dynamicAlloc"] = function() { abort("'dynamicAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Object.getOwnPropertyDescriptor(Module, "loadDynamicLibrary")) Module["loadDynamicLibrary"] = function() { abort("'loadDynamicLibrary' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Object.getOwnPropertyDescriptor(Module, "loadWebAssemblyModule")) Module["loadWebAssemblyModule"] = function() { abort("'loadWebAssemblyModule' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "getLEB")) Module["getLEB"] = function() { abort("'getLEB' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "getFunctionTables")) Module["getFunctionTables"] = function() { abort("'getFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "alignFunctionTables")) Module["alignFunctionTables"] = function() { abort("'alignFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
@@ -2364,13 +2241,20 @@ if (!Object.getOwnPropertyDescriptor(Module, "UNWIND_CACHE")) Module["UNWIND_CAC
if (!Object.getOwnPropertyDescriptor(Module, "withBuiltinMalloc")) Module["withBuiltinMalloc"] = function() { abort("'withBuiltinMalloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "readAsmConstArgsArray")) Module["readAsmConstArgsArray"] = function() { abort("'readAsmConstArgsArray' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "readAsmConstArgs")) Module["readAsmConstArgs"] = function() { abort("'readAsmConstArgs' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "mainThreadEM_ASM")) Module["mainThreadEM_ASM"] = function() { abort("'mainThreadEM_ASM' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "jstoi_q")) Module["jstoi_q"] = function() { abort("'jstoi_q' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "jstoi_s")) Module["jstoi_s"] = function() { abort("'jstoi_s' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "getExecutableName")) Module["getExecutableName"] = function() { abort("'getExecutableName' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "listenOnce")) Module["listenOnce"] = function() { abort("'listenOnce' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "autoResumeAudioContext")) Module["autoResumeAudioContext"] = function() { abort("'autoResumeAudioContext' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "dynCallLegacy")) Module["dynCallLegacy"] = function() { abort("'dynCallLegacy' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "getDynCaller")) Module["getDynCaller"] = function() { abort("'getDynCaller' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "dynCall")) Module["dynCall"] = function() { abort("'dynCall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "callRuntimeCallbacks")) Module["callRuntimeCallbacks"] = function() { abort("'callRuntimeCallbacks' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "abortStackOverflow")) Module["abortStackOverflow"] = function() { abort("'abortStackOverflow' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "reallyNegative")) Module["reallyNegative"] = function() { abort("'reallyNegative' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "unSign")) Module["unSign"] = function() { abort("'unSign' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "reSign")) Module["reSign"] = function() { abort("'reSign' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "formatString")) Module["formatString"] = function() { abort("'formatString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "PATH")) Module["PATH"] = function() { abort("'PATH' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "PATH_FS")) Module["PATH_FS"] = function() { abort("'PATH_FS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
@@ -2407,6 +2291,9 @@ if (!Object.getOwnPropertyDescriptor(Module, "CatchInfo")) Module["CatchInfo"] =
if (!Object.getOwnPropertyDescriptor(Module, "exception_addRef")) Module["exception_addRef"] = function() { abort("'exception_addRef' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "exception_decRef")) Module["exception_decRef"] = function() { abort("'exception_decRef' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "Browser")) Module["Browser"] = function() { abort("'Browser' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "funcWrappers")) Module["funcWrappers"] = function() { abort("'funcWrappers' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "getFuncWrapper")) Module["getFuncWrapper"] = function() { abort("'getFuncWrapper' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
+if (!Object.getOwnPropertyDescriptor(Module, "setMainLoop")) Module["setMainLoop"] = function() { abort("'setMainLoop' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "FS")) Module["FS"] = function() { abort("'FS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "MEMFS")) Module["MEMFS"] = function() { abort("'MEMFS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
if (!Object.getOwnPropertyDescriptor(Module, "TTY")) Module["TTY"] = function() { abort("'TTY' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
@@ -2453,11 +2340,9 @@ if (!Object.getOwnPropertyDescriptor(Module, "allocateUTF8OnStack")) Module["all
Module["writeStackCookie"] = writeStackCookie;
Module["checkStackCookie"] = checkStackCookie;if (!Object.getOwnPropertyDescriptor(Module, "ALLOC_NORMAL")) Object.defineProperty(Module, "ALLOC_NORMAL", { configurable: true, get: function() { abort("'ALLOC_NORMAL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
if (!Object.getOwnPropertyDescriptor(Module, "ALLOC_STACK")) Object.defineProperty(Module, "ALLOC_STACK", { configurable: true, get: function() { abort("'ALLOC_STACK' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Object.getOwnPropertyDescriptor(Module, "ALLOC_DYNAMIC")) Object.defineProperty(Module, "ALLOC_DYNAMIC", { configurable: true, get: function() { abort("'ALLOC_DYNAMIC' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
if (!Object.getOwnPropertyDescriptor(Module, "ALLOC_NONE")) Object.defineProperty(Module, "ALLOC_NONE", { configurable: true, get: function() { abort("'ALLOC_NONE' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-
var calledRun;
/**
@@ -2498,7 +2383,6 @@ function callMain(args) {
try {
- Module['___set_stack_limit'](STACK_MAX);
var ret = entryFunction(argc, argv);
@@ -2527,6 +2411,7 @@ function callMain(args) {
}
} finally {
calledMain = true;
+
}
}
@@ -2633,12 +2518,13 @@ function exit(status, implicit) {
}
} else {
- ABORT = true;
EXITSTATUS = status;
exitRuntime();
if (Module['onExit']) Module['onExit'](status);
+
+ ABORT = true;
}
quit_(status, new ExitStatus(status));
diff --git a/docs/lvgl.txt b/docs/lvgl.txt
index f807182..d500f29 100644
--- a/docs/lvgl.txt
+++ b/docs/lvgl.txt
@@ -3,7 +3,7 @@ lvgl.wasm: file format wasm 0x1
Section Details:
-Type[40]:
+Type[39]:
- type[0] (i32, i32) -> i32
- type[1] (i32) -> i32
- type[2] (i32, i32, i32) -> nil
@@ -13,1981 +13,1940 @@ Type[40]:
- type[6] () -> nil
- type[7] (i32, i32, i32, i32) -> nil
- type[8] () -> i32
- - type[9] (i32, i32, i32, i32, i32) -> i32
- - type[10] (i32) -> i64
- - type[11] (i32, i32, i32, i32) -> i32
- - type[12] (i32, i32, i32, i32, i32, i32, i32) -> nil
- - type[13] (i32, i32) -> i64
+ - type[9] (i32) -> i64
+ - type[10] (i32, i32, i32, i32, i32) -> i32
+ - type[11] (i32, i32, i32, i32, i32, i32, i32) -> nil
+ - type[12] (i32, i32) -> i64
+ - type[13] (i32, i32, i32, i32) -> i32
- type[14] (i32, i32, i32, i32, i32) -> nil
- type[15] (i32, i32, i32, i32, i32, i32) -> nil
- type[16] (i32, i32, i32, i32, i32, i32, i32, i32) -> nil
- type[17] (i32, i32, i32, i32, i32, i32) -> i32
- - type[18] (i32, i32, i32, i32, i32, i32, i32) -> i32
- - type[19] (i32, f64, i32, i32, i32, i32) -> i32
- - type[20] (i32, i64, i32) -> i64
- - type[21] (i32, i32, i32, i32, i32, i32, i32, i32, i32) -> nil
- - type[22] (i32, i64, i64, i32) -> nil
- - type[23] (i32, i32, i32, i32, i32, i32, i32, i32) -> i32
- - type[24] (i32, i64) -> i32
+ - type[18] (i32, i64, i32) -> i64
+ - type[19] (i32, i32, i32, i32, i32, i32, i32, i32, i32) -> nil
+ - type[20] (i32, i64, i64, i32) -> nil
+ - type[21] (i32, i32, i32, i32, i32, i32, i32) -> i32
+ - type[22] (i32, i32, i32, i32, i32, i32, i32, i32) -> i32
+ - type[23] (i32, i64) -> i32
+ - type[24] (i32, f64, i32, i32, i32, i32) -> i32
- type[25] (i64, i32) -> i32
- type[26] () -> i64
- type[27] (i32, i64) -> nil
- type[28] (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) -> i32
- type[29] (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) -> i32
- type[30] (i32, i32, i32, i32, i64, i32, i64, i32, i32, i32) -> i32
- - type[31] (i32, i32, f64, i32, i32, i32, i32) -> i32
- - type[32] (i64, i32, i32) -> i32
- - type[33] (f32) -> i32
- - type[34] (i32, i32, i64, i32) -> i64
- - type[35] (i64) -> i64
- - type[36] (f64) -> i64
- - type[37] (i32) -> f32
- - type[38] (i64, i64) -> f64
- - type[39] (f64, i32) -> f64
-Import[10]:
+ - type[31] (i64, i32, i32) -> i32
+ - type[32] (f32) -> i32
+ - type[33] (i32, i32, i64, i32) -> i64
+ - type[34] (i64) -> i64
+ - type[35] (f64) -> i64
+ - type[36] (i32) -> f32
+ - type[37] (i64, i64) -> f64
+ - type[38] (f64, i32) -> f64
+Import[9]:
- func[0] sig=7 <__assert_fail> <- env.__assert_fail
- func[1] sig=1 <mktime> <- env.mktime
- func[2] sig=6 <abort> <- env.abort
- - func[3] sig=11 <__wasi_fd_write> <- wasi_snapshot_preview1.fd_write
+ - func[3] sig=13 <__wasi_fd_write> <- wasi_snapshot_preview1.fd_write
- func[4] sig=1 <emscripten_resize_heap> <- env.emscripten_resize_heap
- func[5] sig=3 <emscripten_memcpy_big> <- env.emscripten_memcpy_big
- - func[6] sig=6 <__handle_stack_overflow> <- env.__handle_stack_overflow
- - func[7] sig=5 <setTempRet0> <- env.setTempRet0
+ - func[6] sig=5 <setTempRet0> <- env.setTempRet0
- memory[0] pages: initial=256 max=256 <- env.memory
- - table[0] type=funcref initial=48 <- env.table
-Function[920]:
- - func[8] sig=8 <emscripten_get_sbrk_ptr>
- - func[9] sig=6 <__wasm_call_ctors>
- - func[10] sig=6 <_lv_indev_init>
- - func[11] sig=4 <lv_indev_reset>
- - func[12] sig=8 <lv_indev_get_act>
- - func[13] sig=1 <lv_indev_is_dragging>
- - func[14] sig=1 <lv_disp_get_scr_act>
- - func[15] sig=1 <lv_disp_get_scr_prev>
- - func[16] sig=1 <lv_disp_get_layer_top>
- - func[17] sig=1 <lv_disp_get_layer_sys>
- - func[18] sig=6 <lv_init>
- - func[19] sig=4 <lv_color_hex>
- - func[20] sig=7 <lv_color_make>
- - func[21] sig=0 <lv_obj_create>
- - func[22] sig=3 <lv_obj_design>
- - func[23] sig=3 <lv_obj_signal>
- - func[24] sig=1 <lv_obj_get_base_dir>
- - func[25] sig=4 <lv_area_copy>
- - func[26] sig=1 <lv_obj_get_parent>
- - func[27] sig=1 <lv_obj_get_x>
- - func[28] sig=1 <lv_obj_get_y>
- - func[29] sig=2 <lv_obj_set_pos>
- - func[30] sig=5 <lv_obj_invalidate>
- - func[31] sig=0 <lv_obj_handle_get_type_signal>
- - func[32] sig=0 <lv_obj_is_protected>
- - func[33] sig=0 <lv_obj_get_draw_rect_ext_pad_size>
- - func[34] sig=5 <lv_obj_realign>
- - func[35] sig=5 <lv_obj_refresh_ext_draw_pad>
- - func[36] sig=4 <lv_obj_add_state>
- - func[37] sig=4 <lv_obj_clear_state>
- - func[38] sig=1 <lv_obj_get_focused_obj>
- - func[39] sig=4 <lv_obj_clean_style_list>
- - func[40] sig=0 <lv_obj_get_style_clip_corner>
- - func[41] sig=0 <lv_obj_get_style_radius>
- - func[42] sig=0 <lv_obj_get_style_transform_width>
- - func[43] sig=0 <lv_obj_get_style_transform_height>
- - func[44] sig=0 <lv_obj_get_style_bg_opa>
- - func[45] sig=0 <lv_obj_get_style_bg_blend_mode>
- - func[46] sig=0 <lv_obj_get_style_border_blend_mode>
- - func[47] sig=0 <lv_obj_get_style_opa_scale>
- - func[48] sig=0 <lv_obj_get_style_border_post>
- - func[49] sig=2 <lv_obj_init_draw_rect_dsc>
- - func[50] sig=3 <_lv_memcpy_small>
- - func[51] sig=4 <lv_obj_get_coords>
- - func[52] sig=2 <refresh_children_position>
- - func[53] sig=4 <lv_obj_invalidate_area>
- - func[54] sig=1 <lv_obj_del>
- - func[55] sig=1 <lv_obj_get_disp>
- - func[56] sig=5 <obj_del_core>
- - func[57] sig=1 <lv_obj_get_screen>
- - func[58] sig=3 <lv_event_send>
- - func[59] sig=7 <trans_del>
- - func[60] sig=5 <lv_event_mark_deleted>
- - func[61] sig=0 <lv_obj_get_child>
- - func[62] sig=1 <lv_obj_get_hidden>
- - func[63] sig=1 <lv_obj_get_width>
- - func[64] sig=1 <lv_area_get_width>
- - func[65] sig=4 <lv_obj_set_x>
- - func[66] sig=4 <lv_obj_set_y>
- - func[67] sig=2 <lv_obj_set_size>
- - func[68] sig=1 <lv_obj_get_height>
- - func[69] sig=1 <lv_area_get_height>
- - func[70] sig=14 <lv_obj_align_mid>
- - func[71] sig=14 <lv_obj_align>
- - func[72] sig=4 <lv_obj_set_height>
- - func[73] sig=0 <lv_obj_get_style_pad_left>
- - func[74] sig=0 <lv_obj_get_style_pad_right>
- - func[75] sig=3 <_lv_obj_get_style_int>
- - func[76] sig=12 <obj_align_core>
- - func[77] sig=12 <obj_align_mid_core>
- - func[78] sig=2 <lv_obj_add_style>
- - func[79] sig=0 <lv_obj_get_style_list>
- - func[80] sig=4 <lv_obj_refresh_style>
- - func[81] sig=3 <lv_signal_send>
- - func[82] sig=5 <refresh_children_style>
- - func[83] sig=4 <lv_obj_reset_style_list>
- - func[84] sig=5 <lv_obj_report_style_mod>
- - func[85] sig=4 <report_style_mod_core>
- - func[86] sig=0 <lv_style_list_get_style>
- - func[87] sig=4 <lv_obj_set_click>
- - func[88] sig=4 <lv_obj_set_state>
- - func[89] sig=0 <lv_obj_get_style_transition_time>
- - func[90] sig=0 <lv_obj_get_style_transition_delay>
- - func[91] sig=0 <lv_obj_get_style_transition_path>
- - func[92] sig=0 <lv_obj_get_style_transition_prop_1>
- - func[93] sig=0 <lv_obj_get_style_transition_prop_2>
- - func[94] sig=0 <lv_obj_get_style_transition_prop_3>
- - func[95] sig=0 <lv_obj_get_style_transition_prop_4>
- - func[96] sig=0 <lv_obj_get_style_transition_prop_5>
- - func[97] sig=0 <lv_obj_get_style_transition_prop_6>
- - func[98] sig=9 <trans_create>
- - func[99] sig=4 <lv_anim_set_var>
- - func[100] sig=4 <trans_anim_cb>
- - func[101] sig=4 <lv_anim_set_exec_cb>
- - func[102] sig=5 <trans_anim_start_cb>
- - func[103] sig=4 <lv_anim_set_start_cb>
- - func[104] sig=5 <trans_anim_ready_cb>
- - func[105] sig=4 <lv_anim_set_ready_cb>
- - func[106] sig=2 <lv_anim_set_values>
- - func[107] sig=4 <lv_anim_set_time>
- - func[108] sig=4 <lv_anim_set_delay>
- - func[109] sig=4 <lv_anim_set_path>
- - func[110] sig=1 <lv_obj_get_focus_parent>
- - func[111] sig=4 <lv_obj_add_protect>
- - func[112] sig=4 <lv_obj_clear_protect>
- - func[113] sig=3 <_lv_obj_get_style_ptr>
- - func[114] sig=7 <_lv_obj_get_style_color>
- - func[115] sig=3 <_lv_obj_get_style_opa>
- - func[116] sig=7 <lv_color_mix>
- - func[117] sig=4 <lv_obj_set_event_cb>
- - func[118] sig=11 <lv_event_send_func>
- - func[119] sig=4 <lv_obj_set_signal_cb>
- - func[120] sig=4 <lv_obj_set_design_cb>
- - func[121] sig=0 <lv_obj_allocate_ext_attr>
- - func[122] sig=0 <lv_obj_get_style_border_side>
- - func[123] sig=0 <lv_obj_get_style_border_width>
- - func[124] sig=1 <lv_obj_get_width_fit>
- - func[125] sig=1 <lv_obj_get_auto_realign>
- - func[126] sig=0 <lv_obj_get_state>
- - func[127] sig=1 <lv_obj_get_signal_cb>
- - func[128] sig=1 <lv_obj_get_design_cb>
- - func[129] sig=1 <lv_obj_get_ext_attr>
- - func[130] sig=2 <lv_obj_get_style_bg_color>
- - func[131] sig=0 <lv_obj_get_style_bg_grad_dir>
- - func[132] sig=2 <lv_obj_get_style_bg_grad_color>
- - func[133] sig=0 <lv_obj_get_style_bg_main_stop>
- - func[134] sig=0 <lv_obj_get_style_bg_grad_stop>
- - func[135] sig=0 <lv_obj_get_style_border_opa>
- - func[136] sig=2 <lv_obj_get_style_border_color>
- - func[137] sig=0 <lv_obj_get_style_outline_width>
- - func[138] sig=0 <lv_obj_get_style_outline_opa>
- - func[139] sig=0 <lv_obj_get_style_outline_pad>
- - func[140] sig=2 <lv_obj_get_style_outline_color>
- - func[141] sig=0 <lv_obj_get_style_outline_blend_mode>
- - func[142] sig=0 <lv_obj_get_style_pattern_image>
- - func[143] sig=0 <lv_obj_get_style_pattern_opa>
- - func[144] sig=0 <lv_obj_get_style_pattern_recolor_opa>
- - func[145] sig=0 <lv_obj_get_style_pattern_repeat>
- - func[146] sig=2 <lv_obj_get_style_pattern_recolor>
- - func[147] sig=0 <lv_obj_get_style_text_font>
- - func[148] sig=0 <lv_obj_get_style_pattern_blend_mode>
- - func[149] sig=0 <lv_obj_get_style_value_str>
- - func[150] sig=0 <lv_obj_get_style_value_opa>
- - func[151] sig=0 <lv_obj_get_style_value_ofs_x>
- - func[152] sig=0 <lv_obj_get_style_value_ofs_y>
- - func[153] sig=2 <lv_obj_get_style_value_color>
- - func[154] sig=0 <lv_obj_get_style_value_font>
- - func[155] sig=0 <lv_obj_get_style_value_letter_space>
- - func[156] sig=0 <lv_obj_get_style_value_line_space>
- - func[157] sig=0 <lv_obj_get_style_value_align>
- - func[158] sig=0 <lv_obj_get_style_value_blend_mode>
- - func[159] sig=2 <lv_obj_init_draw_label_dsc>
- - func[160] sig=0 <lv_obj_get_style_text_opa>
- - func[161] sig=2 <lv_obj_get_style_text_color>
- - func[162] sig=0 <lv_obj_get_style_text_letter_space>
- - func[163] sig=0 <lv_obj_get_style_text_line_space>
- - func[164] sig=0 <lv_obj_get_style_text_decor>
- - func[165] sig=0 <lv_obj_get_style_text_blend_mode>
- - func[166] sig=2 <lv_obj_get_style_text_sel_color>
- - func[167] sig=0 <lv_obj_get_style_shadow_width>
- - func[168] sig=0 <lv_obj_get_style_shadow_opa>
- - func[169] sig=0 <lv_obj_get_style_shadow_spread>
- - func[170] sig=0 <lv_obj_get_style_shadow_ofs_x>
- - func[171] sig=0 <lv_obj_get_style_shadow_ofs_y>
- - func[172] sig=6 <_lv_refr_init>
- - func[173] sig=5 <_lv_disp_refr_task>
- - func[174] sig=6 <lv_refr_join_area>
- - func[175] sig=6 <lv_refr_areas>
- - func[176] sig=6 <lv_refr_vdb_flush>
- - func[177] sig=1 <lv_area_get_width.1>
- - func[178] sig=4 <_lv_inv_area>
- - func[179] sig=4 <lv_area_copy.1>
- - func[180] sig=3 <_lv_memcpy_small.1>
- - func[181] sig=8 <_lv_refr_get_disp_refreshing>
- - func[182] sig=5 <lv_refr_area>
- - func[183] sig=5 <lv_refr_area_part>
- - func[184] sig=1 <lv_area_get_height.1>
- - func[185] sig=0 <lv_refr_get_top_obj>
- - func[186] sig=4 <lv_refr_obj_and_children>
- - func[187] sig=4 <lv_refr_obj>
- - func[188] sig=5 <lv_style_init>
- - func[189] sig=4 <lv_style_copy>
- - func[190] sig=1 <lv_debug_check_style>
- - func[191] sig=1 <_lv_style_get_mem_size>
- - func[192] sig=0 <get_style_prop_id>
- - func[193] sig=0 <get_next_prop_index>
- - func[194] sig=0 <lv_style_remove_prop>
- - func[195] sig=0 <get_property_index>
- - func[196] sig=0 <get_style_prop_attr>
- - func[197] sig=1 <get_prop_size>
- - func[198] sig=4 <style_resize>
- - func[199] sig=0 <get_style_prop>
- - func[200] sig=5 <lv_style_list_init>
- - func[201] sig=4 <lv_style_list_copy>
- - func[202] sig=1 <lv_debug_check_style_list>
- - func[203] sig=5 <_lv_style_list_reset>
- - func[204] sig=1 <get_alloc_local_style>
- - func[205] sig=1 <lv_style_list_get_local_style>
- - func[206] sig=5 <lv_style_reset>
- - func[207] sig=1 <_lv_style_list_get_transition_style>
- - func[208] sig=0 <lv_style_list_get_style.1>
- - func[209] sig=4 <_lv_style_list_add_style>
- - func[210] sig=4 <_lv_style_list_remove_style>
- - func[211] sig=2 <_lv_style_set_int>
- - func[212] sig=3 <_lv_memcpy_small.2>
- - func[213] sig=2 <_lv_style_set_color>
- - func[214] sig=2 <_lv_style_set_opa>
- - func[215] sig=2 <_lv_style_set_ptr>
- - func[216] sig=3 <_lv_style_get_int>
- - func[217] sig=3 <_lv_style_get_opa>
- - func[218] sig=3 <_lv_style_get_color>
- - func[219] sig=3 <_lv_style_get_ptr>
- - func[220] sig=1 <_lv_style_list_add_trans_style>
- - func[221] sig=3 <_lv_style_list_get_int>
- - func[222] sig=3 <_lv_style_list_get_color>
- - func[223] sig=3 <_lv_style_list_get_opa>
- - func[224] sig=3 <_lv_style_list_get_ptr>
- - func[225] sig=5 <lv_disp_drv_init>
- - func[226] sig=7 <lv_disp_buf_init>
- - func[227] sig=1 <lv_disp_drv_register>
- - func[228] sig=1 <lv_disp_is_true_double_buf>
- - func[229] sig=1 <lv_disp_is_double_buf>
- - func[230] sig=1 <lv_disp_get_hor_res>
- - func[231] sig=1 <lv_disp_get_ver_res>
- - func[232] sig=8 <lv_disp_get_default>
- - func[233] sig=1 <lv_disp_get_dpi>
- - func[234] sig=1 <lv_disp_get_size_category>
- - func[235] sig=5 <lv_disp_flush_ready>
- - func[236] sig=1 <lv_disp_get_next>
- - func[237] sig=1 <lv_disp_get_buf>
- - func[238] sig=1 <lv_indev_get_next>
- - func[239] sig=5 <lv_tick_inc>
- - func[240] sig=8 <lv_tick_get>
- - func[241] sig=1 <lv_tick_elaps>
- - func[242] sig=0 <lv_btn_create>
- - func[243] sig=3 <lv_btn_design>
- - func[244] sig=3 <lv_btn_signal>
- - func[245] sig=4 <lv_btn_set_layout>
- - func[246] sig=1 <lv_btn_get_checkable>
- - func[247] sig=4 <lv_btn_set_state>
- - func[248] sig=0 <lv_label_create>
- - func[249] sig=3 <lv_label_signal>
- - func[250] sig=3 <lv_label_design>
- - func[251] sig=4 <lv_label_set_long_mode>
- - func[252] sig=4 <lv_label_set_text>
- - func[253] sig=1 <lv_label_get_long_mode>
- - func[254] sig=1 <lv_label_get_recolor>
- - func[255] sig=4 <lv_label_set_recolor>
- - func[256] sig=1 <lv_label_get_align>
- - func[257] sig=4 <lv_label_set_align>
- - func[258] sig=1 <lv_label_get_text>
- - func[259] sig=4 <lv_label_set_text_static>
- - func[260] sig=3 <lv_label_set_dot_tmp>
- - func[261] sig=0 <lv_obj_get_style_transform_width.1>
- - func[262] sig=0 <lv_obj_get_style_transform_height.1>
- - func[263] sig=4 <lv_area_copy.2>
- - func[264] sig=4 <get_txt_coords>
- - func[265] sig=1 <lv_label_get_text_sel_start>
- - func[266] sig=1 <lv_label_get_text_sel_end>
- - func[267] sig=1 <lv_area_get_width.2>
- - func[268] sig=1 <lv_area_get_height.2>
- - func[269] sig=1 <lv_font_get_line_height>
- - func[270] sig=0 <lv_label_get_style>
- - func[271] sig=5 <lv_label_dot_tmp_free>
- - func[272] sig=5 <lv_label_revert_dots>
- - func[273] sig=5 <lv_label_refr_text>
- - func[274] sig=4 <lv_label_set_offset_y>
- - func[275] sig=4 <lv_label_set_offset_x>
- - func[276] sig=0 <lv_obj_get_style_text_font.1>
- - func[277] sig=0 <lv_obj_get_style_text_line_space.1>
- - func[278] sig=0 <lv_obj_get_style_text_letter_space.1>
- - func[279] sig=0 <lv_obj_get_style_pad_left.1>
- - func[280] sig=0 <lv_obj_get_style_pad_right.1>
- - func[281] sig=0 <lv_obj_get_style_pad_top>
- - func[282] sig=0 <lv_obj_get_style_pad_bottom>
- - func[283] sig=4 <lv_anim_set_var.1>
- - func[284] sig=4 <lv_anim_set_repeat_count>
- - func[285] sig=4 <lv_anim_set_playback_delay>
- - func[286] sig=4 <lv_anim_set_repeat_delay>
- - func[287] sig=2 <lv_anim_set_values.1>
- - func[288] sig=4 <lv_anim_set_exec_cb.1>
- - func[289] sig=4 <lv_anim_set_time.1>
- - func[290] sig=4 <lv_anim_set_playback_time>
- - func[291] sig=0 <lv_label_get_letter_on>
- - func[292] sig=1 <lv_label_get_dot_tmp>
- - func[293] sig=3 <_lv_memcpy_small.3>
- - func[294] sig=0 <lv_cont_create>
- - func[295] sig=3 <lv_cont_signal>
- - func[296] sig=0 <lv_cont_get_style>
- - func[297] sig=5 <lv_cont_refr_layout>
- - func[298] sig=5 <lv_cont_refr_autofit>
- - func[299] sig=1 <lv_area_get_width.3>
- - func[300] sig=1 <lv_area_get_height.3>
- - func[301] sig=4 <lv_cont_set_layout>
- - func[302] sig=1 <lv_cont_get_layout>
- - func[303] sig=5 <lv_cont_layout_center>
- - func[304] sig=5 <lv_cont_layout_col>
- - func[305] sig=5 <lv_cont_layout_row>
- - func[306] sig=5 <lv_cont_layout_pretty>
- - func[307] sig=5 <lv_cont_layout_grid>
- - func[308] sig=4 <lv_area_copy.3>
- - func[309] sig=0 <lv_obj_get_style_pad_left.2>
- - func[310] sig=0 <lv_obj_get_style_pad_right.2>
- - func[311] sig=0 <lv_obj_get_style_pad_top.1>
- - func[312] sig=0 <lv_obj_get_style_pad_bottom.1>
- - func[313] sig=0 <lv_obj_get_style_margin_left>
- - func[314] sig=0 <lv_obj_get_style_margin_right>
- - func[315] sig=0 <lv_obj_get_style_margin_top>
- - func[316] sig=0 <lv_obj_get_style_margin_bottom>
- - func[317] sig=0 <lv_obj_get_style_pad_inner>
- - func[318] sig=3 <_lv_memcpy_small.4>
- - func[319] sig=0 <lv_font_get_glyph_bitmap>
- - func[320] sig=11 <lv_font_get_glyph_dsc>
- - func[321] sig=3 <lv_font_get_glyph_width>
- - func[322] sig=0 <lv_font_get_bitmap_fmt_txt>
- - func[323] sig=0 <get_glyph_dsc_id>
- - func[324] sig=15 <decompress>
- - func[325] sig=0 <unicode_list_compare>
- - func[326] sig=4 <rle_init>
- - func[327] sig=4 <decompress_line>
- - func[328] sig=7 <bits_write>
- - func[329] sig=11 <lv_font_get_glyph_dsc_fmt_txt>
- - func[330] sig=3 <get_kern_value>
- - func[331] sig=0 <kern_pair_8_compare>
- - func[332] sig=0 <kern_pair_16_compare>
- - func[333] sig=6 <_lv_font_clean_up_fmt_txt>
- - func[334] sig=8 <rle_next>
- - func[335] sig=3 <get_bits>
- - func[336] sig=14 <lv_area_set>
- - func[337] sig=4 <lv_area_set_height>
- - func[338] sig=1 <lv_area_get_width.4>
- - func[339] sig=1 <lv_area_get_height.4>
- - func[340] sig=1 <lv_area_get_size>
- - func[341] sig=3 <_lv_area_intersect>
- - func[342] sig=2 <_lv_area_join>
- - func[343] sig=3 <_lv_area_is_point_on>
- - func[344] sig=0 <lv_point_within_circle>
- - func[345] sig=0 <_lv_area_is_on>
- - func[346] sig=3 <_lv_area_is_in>
- - func[347] sig=7 <_lv_area_align>
- - func[348] sig=6 <_lv_task_core_init>
- - func[349] sig=5 <lv_task_enable>
- - func[350] sig=8 <lv_task_handler>
- - func[351] sig=1 <lv_task_exec>
- - func[352] sig=1 <lv_task_time_remaining>
- - func[353] sig=5 <lv_task_del>
- - func[354] sig=8 <lv_task_create_basic>
- - func[355] sig=11 <lv_task_create>
- - func[356] sig=4 <lv_task_set_cb>
- - func[357] sig=4 <lv_task_set_period>
- - func[358] sig=4 <lv_task_set_prio>
- - func[359] sig=5 <lv_task_ready>
- - func[360] sig=0 <lv_anim_path_linear>
- - func[361] sig=6 <_lv_anim_core_init>
- - func[362] sig=5 <anim_task>
- - func[363] sig=6 <anim_mark_list_change>
- - func[364] sig=1 <anim_ready_handler>
- - func[365] sig=5 <lv_anim_init>
- - func[366] sig=3 <_lv_memcpy_small.5>
- - func[367] sig=5 <lv_anim_start>
- - func[368] sig=0 <lv_anim_del>
- - func[369] sig=0 <lv_anim_get>
- - func[370] sig=3 <lv_anim_speed_to_time>
- - func[371] sig=6 <_lv_mem_init>
- - func[372] sig=4 <_lv_memset_00>
- - func[373] sig=1 <lv_mem_alloc>
- - func[374] sig=1 <ent_get_next>
- - func[375] sig=0 <ent_alloc>
- - func[376] sig=4 <ent_trunc>
- - func[377] sig=5 <lv_mem_free>
- - func[378] sig=6 <lv_mem_defrag>
- - func[379] sig=0 <lv_mem_realloc>
- - func[380] sig=1 <_lv_mem_get_size>
- - func[381] sig=3 <_lv_memcpy>
- - func[382] sig=2 <_lv_memset>
- - func[383] sig=1 <_lv_mem_buf_get>
- - func[384] sig=5 <_lv_mem_buf_release>
- - func[385] sig=6 <_lv_mem_buf_free_all>
- - func[386] sig=4 <_lv_memset_ff>
- - func[387] sig=4 <_lv_ll_init>
- - func[388] sig=1 <_lv_ll_ins_head>
- - func[389] sig=2 <node_set_prev>
- - func[390] sig=2 <node_set_next>
- - func[391] sig=0 <_lv_ll_ins_prev>
- - func[392] sig=1 <_lv_ll_get_head>
- - func[393] sig=0 <_lv_ll_get_prev>
- - func[394] sig=1 <_lv_ll_ins_tail>
- - func[395] sig=4 <_lv_ll_remove>
- - func[396] sig=0 <_lv_ll_get_next>
- - func[397] sig=1 <_lv_ll_get_tail>
- - func[398] sig=2 <_lv_ll_move_before>
- - func[399] sig=1 <_lv_ll_is_empty>
- - func[400] sig=2 <lv_color_fill>
- - func[401] sig=2 <lv_color_lighten>
- - func[402] sig=7 <lv_color_mix.1>
- - func[403] sig=2 <lv_color_darken>
- - func[404] sig=7 <lv_color_hsv_to_rgb>
- - func[405] sig=7 <lv_color_make.1>
- - func[406] sig=1 <lv_txt_utf8_size>
- - func[407] sig=0 <lv_txt_utf8_next>
- - func[408] sig=0 <lv_txt_utf8_prev>
- - func[409] sig=0 <lv_txt_utf8_get_byte_id>
- - func[410] sig=0 <lv_txt_utf8_get_char_id>
- - func[411] sig=1 <lv_txt_utf8_get_length>
- - func[412] sig=12 <_lv_txt_get_size>
- - func[413] sig=1 <lv_font_get_line_height.1>
- - func[414] sig=9 <_lv_txt_get_next_line>
- - func[415] sig=9 <_lv_txt_get_width>
- - func[416] sig=23 <lv_txt_get_next_word>
- - func[417] sig=0 <_lv_txt_is_cmd>
- - func[418] sig=1 <is_break_char>
- - func[419] sig=1 <_lv_trigo_sin>
- - func[420] sig=2 <_lv_sqrt>
- - func[421] sig=15 <_lv_log_add>
- - func[422] sig=9 <_lv_utils_bsearch>
- - func[423] sig=7 <_out_buffer>
- - func[424] sig=9 <_vsnprintf>
- - func[425] sig=7 <_out_null>
- - func[426] sig=1 <_is_digit>
- - func[427] sig=1 <_atoi>
- - func[428] sig=30 <_ntoa_long_long>
- - func[429] sig=28 <_ntoa_long>
- - func[430] sig=0 <_strnlen_s>
- - func[431] sig=11 <lv_vsnprintf>
- - func[432] sig=29 <_ntoa_format>
- - func[433] sig=23 <_out_rev>
- - func[434] sig=1 <lv_debug_check_null>
- - func[435] sig=27 <lv_debug_log_error>
- - func[436] sig=5 <lv_theme_set_act>
- - func[437] sig=4 <lv_theme_apply>
- - func[438] sig=4 <clear_styles>
- - func[439] sig=2 <apply_theme>
- - func[440] sig=8 <lv_theme_get_font_normal>
- - func[441] sig=18 <lv_theme_material_init>
- - func[442] sig=2 <theme_apply>
- - func[443] sig=6 <basic_init>
- - func[444] sig=6 <cont_init>
- - func[445] sig=6 <btn_init>
- - func[446] sig=6 <label_init>
- - func[447] sig=6 <bar_init>
- - func[448] sig=6 <img_init>
- - func[449] sig=6 <line_init>
- - func[450] sig=6 <led_init>
- - func[451] sig=6 <slider_init>
- - func[452] sig=6 <switch_init>
- - func[453] sig=6 <linemeter_init>
- - func[454] sig=6 <gauge_init>
- - func[455] sig=6 <arc_init>
- - func[456] sig=6 <spinner_init>
- - func[457] sig=6 <chart_init>
- - func[458] sig=6 <calendar_init>
- - func[459] sig=6 <cpicker_init>
- - func[460] sig=6 <checkbox_init>
- - func[461] sig=6 <btnmatrix_init>
- - func[462] sig=6 <keyboard_init>
- - func[463] sig=6 <msgbox_init>
- - func[464] sig=6 <page_init>
- - func[465] sig=6 <textarea_init>
- - func[466] sig=6 <spinbox_init>
- - func[467] sig=6 <list_init>
- - func[468] sig=6 <ddlist_init>
- - func[469] sig=6 <roller_init>
- - func[470] sig=6 <tabview_init>
- - func[471] sig=6 <tileview_init>
- - func[472] sig=6 <table_init>
- - func[473] sig=6 <win_init>
- - func[474] sig=6 <tabview_win_shared_init>
- - func[475] sig=5 <style_init_reset>
- - func[476] sig=2 <lv_style_set_bg_opa>
- - func[477] sig=4 <lv_color_hex.1>
- - func[478] sig=2 <lv_style_set_bg_color>
- - func[479] sig=2 <lv_style_set_text_color>
- - func[480] sig=2 <lv_style_set_value_color>
- - func[481] sig=2 <lv_style_set_text_font>
- - func[482] sig=2 <lv_style_set_value_font>
- - func[483] sig=2 <lv_style_set_radius>
- - func[484] sig=2 <lv_style_set_border_color>
- - func[485] sig=2 <lv_style_set_border_width>
- - func[486] sig=2 <lv_style_set_border_post>
- - func[487] sig=2 <lv_style_set_image_recolor>
- - func[488] sig=2 <lv_style_set_line_color>
- - func[489] sig=2 <lv_style_set_line_width>
- - func[490] sig=2 <lv_style_set_pad_left>
- - func[491] sig=2 <lv_style_set_pad_right>
- - func[492] sig=2 <lv_style_set_pad_top>
- - func[493] sig=2 <lv_style_set_pad_bottom>
- - func[494] sig=2 <lv_style_set_pad_inner>
- - func[495] sig=2 <lv_style_set_transition_time>
- - func[496] sig=2 <lv_style_set_transition_prop_6>
- - func[497] sig=4 <lv_color_hex3>
- - func[498] sig=2 <lv_style_set_transition_prop_5>
- - func[499] sig=7 <lv_color_mix.2>
- - func[500] sig=2 <lv_style_set_border_opa>
- - func[501] sig=2 <lv_style_set_outline_width>
- - func[502] sig=2 <lv_style_set_outline_opa>
- - func[503] sig=2 <lv_style_set_outline_color>
- - func[504] sig=2 <lv_style_set_transition_prop_4>
- - func[505] sig=2 <lv_style_set_transition_delay>
- - func[506] sig=2 <lv_style_set_shadow_width>
- - func[507] sig=2 <lv_style_set_shadow_color>
- - func[508] sig=2 <lv_style_set_shadow_spread>
- - func[509] sig=2 <lv_style_set_margin_left>
- - func[510] sig=2 <lv_style_set_margin_right>
- - func[511] sig=2 <lv_style_set_margin_top>
- - func[512] sig=2 <lv_style_set_margin_bottom>
- - func[513] sig=2 <lv_style_set_scale_width>
- - func[514] sig=2 <lv_style_set_scale_grad_color>
- - func[515] sig=2 <lv_style_set_scale_end_color>
- - func[516] sig=2 <lv_style_set_scale_end_line_width>
- - func[517] sig=2 <lv_style_set_scale_end_border_width>
- - func[518] sig=2 <lv_style_set_size>
- - func[519] sig=2 <lv_style_set_line_rounded>
- - func[520] sig=2 <lv_style_set_line_dash_width>
- - func[521] sig=2 <lv_style_set_line_dash_gap>
- - func[522] sig=2 <lv_style_set_border_side>
- - func[523] sig=2 <lv_style_set_outline_pad>
- - func[524] sig=2 <lv_style_set_pattern_image>
- - func[525] sig=2 <lv_style_set_pattern_recolor>
- - func[526] sig=2 <lv_style_set_clip_corner>
- - func[527] sig=2 <lv_style_set_transform_width>
- - func[528] sig=2 <lv_style_set_text_line_space>
- - func[529] sig=7 <lv_color_make.2>
- - func[530] sig=0 <lv_draw_mask_add>
- - func[531] sig=11 <lv_draw_mask_apply>
- - func[532] sig=1 <lv_draw_mask_remove_id>
- - func[533] sig=1 <lv_draw_mask_remove_custom>
- - func[534] sig=8 <lv_draw_mask_get_cnt>
- - func[535] sig=15 <lv_draw_mask_line_points_init>
- - func[536] sig=9 <lv_draw_mask_line>
- - func[537] sig=9 <line_mask_flat>
- - func[538] sig=9 <line_mask_steep>
- - func[539] sig=7 <lv_draw_mask_radius_init>
- - func[540] sig=1 <lv_area_get_width.5>
- - func[541] sig=1 <lv_area_get_height.5>
- - func[542] sig=9 <lv_draw_mask_radius>
- - func[543] sig=4 <lv_area_copy.4>
- - func[544] sig=3 <_lv_memcpy_small.6>
- - func[545] sig=0 <mask_mix>
- - func[546] sig=2 <sqrt_approx>
- - func[547] sig=12 <_lv_blend_fill>
- - func[548] sig=1 <lv_area_get_width.6>
- - func[549] sig=12 <fill_set_px>
- - func[550] sig=12 <fill_normal>
- - func[551] sig=16 <fill_blended>
- - func[552] sig=1 <lv_area_get_height.6>
- - func[553] sig=7 <lv_color_mix.3>
- - func[554] sig=2 <lv_color_premult>
- - func[555] sig=7 <lv_color_mix_premult>
- - func[556] sig=7 <color_blend_true_color_additive>
- - func[557] sig=7 <color_blend_true_color_subtractive>
- - func[558] sig=12 <_lv_blend_map>
- - func[559] sig=16 <map_set_px>
- - func[560] sig=16 <map_normal>
- - func[561] sig=21 <map_blended>
- - func[562] sig=5 <lv_draw_rect_dsc_init>
- - func[563] sig=2 <lv_draw_rect>
- - func[564] sig=1 <lv_area_get_height.7>
- - func[565] sig=1 <lv_area_get_width.7>
- - func[566] sig=2 <draw_bg>
- - func[567] sig=2 <draw_pattern>
- - func[568] sig=2 <draw_border>
- - func[569] sig=2 <draw_value_str>
- - func[570] sig=2 <draw_outline>
- - func[571] sig=4 <lv_area_copy.5>
- - func[572] sig=7 <grad_get>
- - func[573] sig=12 <draw_full_border>
- - func[574] sig=3 <_lv_memcpy_small.7>
- - func[575] sig=7 <lv_color_mix.4>
- - func[576] sig=5 <lv_draw_label_dsc_init>
- - func[577] sig=14 <lv_draw_label>
- - func[578] sig=1 <lv_area_get_width.8>
- - func[579] sig=1 <lv_font_get_line_height.2>
- - func[580] sig=3 <_lv_memcpy_small.8>
- - func[581] sig=1 <hex_char_to_num>
- - func[582] sig=7 <lv_color_make.3>
- - func[583] sig=12 <lv_draw_letter>
- - func[584] sig=16 <draw_letter_subpx>
- - func[585] sig=16 <draw_letter_normal>
- - func[586] sig=5 <lv_draw_line_dsc_init>
- - func[587] sig=7 <lv_draw_line>
- - func[588] sig=7 <draw_line_hor>
- - func[589] sig=7 <draw_line_ver>
- - func[590] sig=7 <draw_line_skew>
- - func[591] sig=1 <lv_area_get_width.9>
- - func[592] sig=5 <lv_draw_img_dsc_init>
- - func[593] sig=7 <lv_draw_img>
- - func[594] sig=2 <show_error>
- - func[595] sig=11 <lv_img_draw_core>
- - func[596] sig=1 <lv_img_cf_is_chroma_keyed>
- - func[597] sig=1 <lv_img_cf_has_alpha>
- - func[598] sig=4 <lv_area_copy.6>
- - func[599] sig=1 <lv_area_get_width.10>
- - func[600] sig=1 <lv_area_get_height.8>
- - func[601] sig=15 <lv_draw_map>
- - func[602] sig=1 <lv_img_cf_get_px_size>
- - func[603] sig=1 <lv_img_src_get_type>
- - func[604] sig=3 <_lv_memcpy_small.9>
- - func[605] sig=2 <lv_color_premult.1>
- - func[606] sig=3 <_lv_img_buf_transform>
- - func[607] sig=7 <lv_color_mix_premult.1>
- - func[608] sig=6 <_lv_img_decoder_init>
- - func[609] sig=8 <lv_img_decoder_create>
- - func[610] sig=4 <lv_img_decoder_built_in_close>
- - func[611] sig=17 <lv_img_decoder_built_in_read_line>
- - func[612] sig=0 <lv_img_decoder_built_in_open>
- - func[613] sig=3 <lv_img_decoder_built_in_info>
- - func[614] sig=4 <lv_img_decoder_set_info_cb>
- - func[615] sig=4 <lv_img_decoder_set_open_cb>
- - func[616] sig=4 <lv_img_decoder_set_read_line_cb>
- - func[617] sig=4 <lv_img_decoder_set_close_cb>
- - func[618] sig=7 <lv_color_make.4>
- - func[619] sig=9 <lv_img_decoder_built_in_line_true_color>
- - func[620] sig=9 <lv_img_decoder_built_in_line_alpha>
- - func[621] sig=9 <lv_img_decoder_built_in_line_indexed>
- - func[622] sig=0 <lv_img_decoder_get_info>
- - func[623] sig=3 <lv_img_decoder_open>
- - func[624] sig=9 <lv_img_decoder_read_line>
- - func[625] sig=5 <lv_img_decoder_close>
- - func[626] sig=0 <_lv_img_cache_open>
- - func[627] sig=5 <lv_img_cache_set_size>
- - func[628] sig=5 <lv_img_cache_invalidate_src>
- - func[629] sig=14 <lv_img_buf_get_px_color>
- - func[630] sig=3 <_lv_memcpy_small.10>
- - func[631] sig=3 <lv_img_buf_get_px_alpha>
- - func[632] sig=5 <_lv_img_buf_transform_init>
- - func[633] sig=15 <_lv_img_buf_get_transformed_area>
- - func[634] sig=1 <_lv_img_buf_transform_anti_alias>
- - func[635] sig=7 <lv_color_mix.5>
- - func[636] sig=6 <lv_port_disp_init>
- - func[637] sig=2 <disp_flush>
- - func[638] sig=6 <disp_init>
- - func[639] sig=33 <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
- - func[640] sig=1 <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
- - func[641] sig=1 <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
- - func[642] sig=9 <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
- - func[643] sig=4 <event_handler(_lv_obj_t*, unsigned char)>
- - func[644] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
- - func[645] sig=0 <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
- - func[646] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
- - func[647] sig=24 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
- - func[648] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
- - func[649] sig=8 <lv_scr_act()>
- - func[650] sig=26 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
- - func[651] sig=2 <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
- - func[652] sig=1 <Pinetime::Applications::Screens::Clock::Refresh()>
- - func[653] sig=37 <Pinetime::Controllers::Battery::PercentRemaining() const>
- - func[654] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
- - func[655] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
- - func[656] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
- - func[657] sig=1 <Pinetime::Controllers::Battery::IsCharging() const>
- - func[658] sig=1 <Pinetime::Controllers::Battery::IsPowerPresent() const>
- - func[659] sig=1 <Pinetime::Controllers::Ble::IsConnected() const>
- - func[660] sig=0 <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
- - func[661] sig=1 <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
- - func[662] sig=1 <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
- - func[663] sig=10 <Pinetime::Controllers::DateTime::CurrentDateTime() const>
- - func[664] sig=0 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[665] sig=1 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
- - func[666] sig=1 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
- - func[667] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[668] sig=13 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[669] sig=4 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[670] sig=0 <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
- - func[671] sig=1 <date::year_month_day::year() const>
- - func[672] sig=1 <date::year::operator int() const>
- - func[673] sig=1 <date::year_month_day::month() const>
- - func[674] sig=1 <date::month::operator unsigned int() const>
- - func[675] sig=1 <date::year_month_day::day() const>
- - func[676] sig=1 <date::day::operator unsigned int() const>
- - func[677] sig=1 <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
- - func[678] sig=0 <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[679] sig=1 <date::weekday::iso_encoding() const>
- - func[680] sig=1 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
- - func[681] sig=1 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
- - func[682] sig=1 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
- - func[683] sig=1 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
- - func[684] sig=10 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[685] sig=10 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
- - func[686] sig=1 <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
- - func[687] sig=1 <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
- - func[688] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
- - func[689] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
- - func[690] sig=0 <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[691] sig=10 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
- - func[692] sig=1 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[693] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[694] sig=24 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[695] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
- - func[696] sig=13 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[697] sig=4 <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
- - func[698] sig=1 <date::year_month_day::to_days() const>
- - func[699] sig=1 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
- - func[700] sig=1 <date::weekday::weekday_from_days(int)>
- - func[701] sig=10 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[702] sig=26 <std::__2::chrono::duration_values<long long>::zero()>
- - func[703] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[704] sig=1 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[705] sig=0 <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[706] sig=3 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[707] sig=0 <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[708] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[709] sig=1 <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
- - func[710] sig=0 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[711] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[712] sig=10 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
- - func[713] sig=3 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[714] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
- - func[715] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[716] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[717] sig=35 <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[718] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[719] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[720] sig=0 <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[721] sig=13 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[722] sig=13 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[723] sig=0 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[724] sig=0 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[725] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[726] sig=0 <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[727] sig=10 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
- - func[728] sig=10 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
- - func[729] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[730] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[731] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[732] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[733] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[734] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[735] sig=13 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[736] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[737] sig=3 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[738] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[739] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[740] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[741] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[742] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
- - func[743] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[744] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[745] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[746] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[747] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[748] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[749] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[750] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[751] sig=0 <date::year::year(int)>
- - func[752] sig=0 <date::month::month(unsigned int)>
- - func[753] sig=0 <date::day::day(unsigned int)>
- - func[754] sig=11 <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
- - func[755] sig=0 <date::operator<=(date::month const&, date::month const&)>
- - func[756] sig=0 <date::operator<(date::month const&, date::month const&)>
- - func[757] sig=0 <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[758] sig=0 <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[759] sig=3 <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[760] sig=8 <create_clock>
- - func[761] sig=1 <Pinetime::Controllers::DateTime::DateTime()>
- - func[762] sig=1 <Pinetime::Controllers::Battery::Battery()>
- - func[763] sig=1 <Pinetime::Controllers::Ble::Ble()>
- - func[764] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[765] sig=8 <refresh_clock>
- - func[766] sig=17 <update_clock>
- - func[767] sig=21 <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
- - func[768] sig=3 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
- - func[769] sig=4 <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
- - func[770] sig=10 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
- - func[771] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[772] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
- - func[773] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[774] sig=0 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[775] sig=0 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[776] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[777] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
- - func[778] sig=10 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
- - func[779] sig=3 <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
- - func[780] sig=5 <Pinetime::Components::LittleVgl::InitTheme()>
- - func[781] sig=5 <Pinetime::Components::LittleVgl::InitBaseTheme()>
- - func[782] sig=5 <Pinetime::Components::LittleVgl::InitThemeContainer()>
- - func[783] sig=5 <Pinetime::Components::LittleVgl::InitThemeButton()>
- - func[784] sig=5 <Pinetime::Components::LittleVgl::InitThemeLabel()>
- - func[785] sig=5 <Pinetime::Components::LittleVgl::InitThemeLine()>
- - func[786] sig=5 <Pinetime::Components::LittleVgl::InitThemeLed()>
- - func[787] sig=5 <Pinetime::Components::LittleVgl::InitThemeImage()>
- - func[788] sig=5 <Pinetime::Components::LittleVgl::InitThemeBar()>
- - func[789] sig=5 <Pinetime::Components::LittleVgl::InitThemeSlider()>
- - func[790] sig=5 <Pinetime::Components::LittleVgl::InitThemeSwitch()>
- - func[791] sig=5 <Pinetime::Components::LittleVgl::InitThemeMeter()>
- - func[792] sig=5 <Pinetime::Components::LittleVgl::InitThemeGauge()>
- - func[793] sig=5 <Pinetime::Components::LittleVgl::InitThemeArc()>
- - func[794] sig=5 <Pinetime::Components::LittleVgl::InitThemePreload()>
- - func[795] sig=5 <Pinetime::Components::LittleVgl::InitThemeChart()>
- - func[796] sig=5 <Pinetime::Components::LittleVgl::InitThemeCalendar()>
- - func[797] sig=5 <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
- - func[798] sig=5 <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
- - func[799] sig=5 <Pinetime::Components::LittleVgl::InitThemeKnob()>
- - func[800] sig=5 <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
- - func[801] sig=5 <Pinetime::Components::LittleVgl::InitThemePage()>
- - func[802] sig=5 <Pinetime::Components::LittleVgl::InitThemeTextArea()>
- - func[803] sig=5 <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
- - func[804] sig=5 <Pinetime::Components::LittleVgl::InitThemeList()>
- - func[805] sig=5 <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
- - func[806] sig=5 <Pinetime::Components::LittleVgl::InitThemeRoller()>
- - func[807] sig=5 <Pinetime::Components::LittleVgl::InitThemeTabView()>
- - func[808] sig=5 <Pinetime::Components::LittleVgl::InitThemeTileView()>
- - func[809] sig=5 <Pinetime::Components::LittleVgl::InitThemeTable()>
- - func[810] sig=5 <Pinetime::Components::LittleVgl::InitThemeWindow()>
- - func[811] sig=2 <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
- - func[812] sig=2 <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[813] sig=2 <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[814] sig=2 <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[815] sig=2 <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
- - func[816] sig=2 <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
- - func[817] sig=2 <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
- - func[818] sig=2 <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
- - func[819] sig=2 <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
- - func[820] sig=2 <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
- - func[821] sig=2 <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
- - func[822] sig=2 <lv_style_set_radius(lv_style_t*, unsigned char, short)>
- - func[823] sig=2 <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[824] sig=2 <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
- - func[825] sig=2 <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[826] sig=2 <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
- - func[827] sig=4 <lv_color_hex3(unsigned int)>
- - func[828] sig=2 <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[829] sig=2 <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
- - func[830] sig=7 <lv_color_make(unsigned char, unsigned char, unsigned char)>
- - func[831] sig=15 <put_display_px>
- - func[832] sig=8 <get_display_buffer>
- - func[833] sig=8 <get_display_width>
- - func[834] sig=8 <get_display_height>
- - func[835] sig=8 <test_display>
- - func[836] sig=6 <init_display>
- - func[837] sig=6 <render_widgets>
- - func[838] sig=8 <lv_scr_act>
- - func[839] sig=6 <render_display>
- - func[840] sig=0 <main>
- - func[841] sig=0 <__stpcpy>
- - func[842] sig=0 <strcpy>
- - func[843] sig=0 <strcmp>
- - func[844] sig=8 <__errno_location>
- - func[845] sig=11 <vsnprintf>
- - func[846] sig=3 <sn_write>
- - func[847] sig=3 <vsprintf>
- - func[848] sig=3 <sprintf>
- - func[849] sig=1 <isdigit>
- - func[850] sig=3 <memchr>
- - func[851] sig=8 <pthread_self>
- - func[852] sig=3 <wcrtomb>
- - func[853] sig=8 <__pthread_self>
- - func[854] sig=0 <wctomb>
- - func[855] sig=39 <frexp>
- - func[856] sig=9 <__vfprintf_internal>
- - func[857] sig=18 <printf_core>
- - func[858] sig=2 <out>
- - func[859] sig=1 <getint>
- - func[860] sig=7 <pop_arg>
- - func[861] sig=32 <fmt_x>
- - func[862] sig=25 <fmt_o>
- - func[863] sig=25 <fmt_u>
- - func[864] sig=14 <pad>
- - func[865] sig=3 <vfprintf>
- - func[866] sig=19 <fmt_fp>
- - func[867] sig=4 <pop_arg_long_double>
- - func[868] sig=36 <__DOUBLE_BITS>
- - func[869] sig=22 <__ashlti3>
- - func[870] sig=22 <__lshrti3>
- - func[871] sig=38 <__trunctfdf2>
- - func[872] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[873] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[874] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[875] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[876] sig=10 <std::__2::chrono::system_clock::from_time_t(long)>
- - func[877] sig=10 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[878] sig=13 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[879] sig=1 <operator new(unsigned long)>
- - func[880] sig=8 <_get_tzname>
- - func[881] sig=8 <_get_daylight>
- - func[882] sig=8 <_get_timezone>
- - func[883] sig=5 <__lock>
- - func[884] sig=5 <__unlock>
- - func[885] sig=8 <__ofl_lock>
- - func[886] sig=6 <__ofl_unlock>
- - func[887] sig=1 <__wasi_syscall_ret>
- - func[888] sig=3 <__stdio_write>
- - func[889] sig=1 <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
- - func[890] sig=8 <std::get_new_handler()>
- - func[891] sig=1 <dlmalloc>
- - func[892] sig=5 <dlfree>
- - func[893] sig=1 <sbrk>
- - func[894] sig=3 <memcpy>
- - func[895] sig=3 <memset>
- - func[896] sig=1 <__towrite>
- - func[897] sig=0 <__overflow>
- - func[898] sig=3 <__fwritex>
- - func[899] sig=11 <fwrite>
- - func[900] sig=1 <__emscripten_stdout_close>
- - func[901] sig=20 <__emscripten_stdout_seek>
- - func[902] sig=0 <printf>
- - func[903] sig=0 <fputs>
- - func[904] sig=1 <puts>
- - func[905] sig=1 <__lockfile>
- - func[906] sig=5 <__unlockfile>
- - func[907] sig=1 <strlen>
- - func[908] sig=8 <stackSave>
- - func[909] sig=5 <stackRestore>
- - func[910] sig=1 <stackAlloc>
- - func[911] sig=1 <fflush>
- - func[912] sig=1 <__fflush_unlocked>
- - func[913] sig=5 <__set_stack_limit>
- - func[914] sig=11 <dynCall_iiii>
- - func[915] sig=2 <dynCall_vii>
- - func[916] sig=4 <dynCall_vi>
- - func[917] sig=3 <dynCall_iii>
- - func[918] sig=0 <dynCall_ii>
- - func[919] sig=14 <dynCall_viiii>
- - func[920] sig=7 <dynCall_viii>
- - func[921] sig=17 <dynCall_iiiiii>
- - func[922] sig=18 <dynCall_iiiiiii>
- - func[923] sig=9 <dynCall_iiiii>
- - func[924] sig=31 <dynCall_iidiiii>
- - func[925] sig=34 <dynCall_jiji>
- - func[926] sig=9 <legalstub$dynCall_jiji>
- - func[927] sig=1 <__growWasmMemory>
-Global[3]:
- - global[0] i32 mutable=1 - init i32=5730928
+ - table[0] type=funcref initial=48 <- env.__indirect_function_table
+Function[907]:
+ - func[7] sig=6 <__wasm_call_ctors>
+ - func[8] sig=6 <_lv_indev_init>
+ - func[9] sig=4 <lv_indev_reset>
+ - func[10] sig=8 <lv_indev_get_act>
+ - func[11] sig=1 <lv_indev_is_dragging>
+ - func[12] sig=1 <lv_disp_get_scr_act>
+ - func[13] sig=1 <lv_disp_get_scr_prev>
+ - func[14] sig=1 <lv_disp_get_layer_top>
+ - func[15] sig=1 <lv_disp_get_layer_sys>
+ - func[16] sig=6 <lv_init>
+ - func[17] sig=4 <lv_color_hex>
+ - func[18] sig=7 <lv_color_make>
+ - func[19] sig=0 <lv_obj_create>
+ - func[20] sig=3 <lv_obj_design>
+ - func[21] sig=3 <lv_obj_signal>
+ - func[22] sig=1 <lv_obj_get_base_dir>
+ - func[23] sig=4 <lv_area_copy>
+ - func[24] sig=1 <lv_obj_get_parent>
+ - func[25] sig=1 <lv_obj_get_x>
+ - func[26] sig=1 <lv_obj_get_y>
+ - func[27] sig=2 <lv_obj_set_pos>
+ - func[28] sig=5 <lv_obj_invalidate>
+ - func[29] sig=0 <lv_obj_handle_get_type_signal>
+ - func[30] sig=0 <lv_obj_is_protected>
+ - func[31] sig=0 <lv_obj_get_draw_rect_ext_pad_size>
+ - func[32] sig=5 <lv_obj_realign>
+ - func[33] sig=5 <lv_obj_refresh_ext_draw_pad>
+ - func[34] sig=4 <lv_obj_add_state>
+ - func[35] sig=4 <lv_obj_clear_state>
+ - func[36] sig=1 <lv_obj_get_focused_obj>
+ - func[37] sig=4 <lv_obj_clean_style_list>
+ - func[38] sig=0 <lv_obj_get_style_clip_corner>
+ - func[39] sig=0 <lv_obj_get_style_radius>
+ - func[40] sig=0 <lv_obj_get_style_transform_width>
+ - func[41] sig=0 <lv_obj_get_style_transform_height>
+ - func[42] sig=0 <lv_obj_get_style_bg_opa>
+ - func[43] sig=0 <lv_obj_get_style_bg_blend_mode>
+ - func[44] sig=0 <lv_obj_get_style_border_blend_mode>
+ - func[45] sig=0 <lv_obj_get_style_opa_scale>
+ - func[46] sig=0 <lv_obj_get_style_border_post>
+ - func[47] sig=2 <lv_obj_init_draw_rect_dsc>
+ - func[48] sig=3 <_lv_memcpy_small>
+ - func[49] sig=4 <lv_obj_get_coords>
+ - func[50] sig=2 <refresh_children_position>
+ - func[51] sig=4 <lv_obj_invalidate_area>
+ - func[52] sig=1 <lv_obj_del>
+ - func[53] sig=1 <lv_obj_get_disp>
+ - func[54] sig=5 <obj_del_core>
+ - func[55] sig=1 <lv_obj_get_screen>
+ - func[56] sig=3 <lv_event_send>
+ - func[57] sig=7 <trans_del>
+ - func[58] sig=5 <lv_event_mark_deleted>
+ - func[59] sig=0 <lv_obj_get_child>
+ - func[60] sig=1 <lv_obj_get_hidden>
+ - func[61] sig=1 <lv_obj_get_width>
+ - func[62] sig=1 <lv_area_get_width>
+ - func[63] sig=4 <lv_obj_set_x>
+ - func[64] sig=4 <lv_obj_set_y>
+ - func[65] sig=2 <lv_obj_set_size>
+ - func[66] sig=1 <lv_obj_get_height>
+ - func[67] sig=1 <lv_area_get_height>
+ - func[68] sig=14 <lv_obj_align_mid>
+ - func[69] sig=14 <lv_obj_align>
+ - func[70] sig=4 <lv_obj_set_height>
+ - func[71] sig=0 <lv_obj_get_style_pad_left>
+ - func[72] sig=0 <lv_obj_get_style_pad_right>
+ - func[73] sig=3 <_lv_obj_get_style_int>
+ - func[74] sig=11 <obj_align_core>
+ - func[75] sig=11 <obj_align_mid_core>
+ - func[76] sig=2 <lv_obj_add_style>
+ - func[77] sig=0 <lv_obj_get_style_list>
+ - func[78] sig=4 <lv_obj_refresh_style>
+ - func[79] sig=3 <lv_signal_send>
+ - func[80] sig=5 <refresh_children_style>
+ - func[81] sig=4 <lv_obj_reset_style_list>
+ - func[82] sig=5 <lv_obj_report_style_mod>
+ - func[83] sig=4 <report_style_mod_core>
+ - func[84] sig=0 <lv_style_list_get_style>
+ - func[85] sig=4 <lv_obj_set_click>
+ - func[86] sig=4 <lv_obj_set_state>
+ - func[87] sig=0 <lv_obj_get_style_transition_time>
+ - func[88] sig=0 <lv_obj_get_style_transition_delay>
+ - func[89] sig=0 <lv_obj_get_style_transition_path>
+ - func[90] sig=0 <lv_obj_get_style_transition_prop_1>
+ - func[91] sig=0 <lv_obj_get_style_transition_prop_2>
+ - func[92] sig=0 <lv_obj_get_style_transition_prop_3>
+ - func[93] sig=0 <lv_obj_get_style_transition_prop_4>
+ - func[94] sig=0 <lv_obj_get_style_transition_prop_5>
+ - func[95] sig=0 <lv_obj_get_style_transition_prop_6>
+ - func[96] sig=10 <trans_create>
+ - func[97] sig=4 <lv_anim_set_var>
+ - func[98] sig=4 <trans_anim_cb>
+ - func[99] sig=4 <lv_anim_set_exec_cb>
+ - func[100] sig=5 <trans_anim_start_cb>
+ - func[101] sig=4 <lv_anim_set_start_cb>
+ - func[102] sig=5 <trans_anim_ready_cb>
+ - func[103] sig=4 <lv_anim_set_ready_cb>
+ - func[104] sig=2 <lv_anim_set_values>
+ - func[105] sig=4 <lv_anim_set_time>
+ - func[106] sig=4 <lv_anim_set_delay>
+ - func[107] sig=4 <lv_anim_set_path>
+ - func[108] sig=1 <lv_obj_get_focus_parent>
+ - func[109] sig=4 <lv_obj_add_protect>
+ - func[110] sig=4 <lv_obj_clear_protect>
+ - func[111] sig=3 <_lv_obj_get_style_ptr>
+ - func[112] sig=7 <_lv_obj_get_style_color>
+ - func[113] sig=3 <_lv_obj_get_style_opa>
+ - func[114] sig=7 <lv_color_mix>
+ - func[115] sig=4 <lv_obj_set_event_cb>
+ - func[116] sig=13 <lv_event_send_func>
+ - func[117] sig=4 <lv_obj_set_signal_cb>
+ - func[118] sig=4 <lv_obj_set_design_cb>
+ - func[119] sig=0 <lv_obj_allocate_ext_attr>
+ - func[120] sig=0 <lv_obj_get_style_border_side>
+ - func[121] sig=0 <lv_obj_get_style_border_width>
+ - func[122] sig=1 <lv_obj_get_width_fit>
+ - func[123] sig=1 <lv_obj_get_auto_realign>
+ - func[124] sig=0 <lv_obj_get_state>
+ - func[125] sig=1 <lv_obj_get_signal_cb>
+ - func[126] sig=1 <lv_obj_get_design_cb>
+ - func[127] sig=1 <lv_obj_get_ext_attr>
+ - func[128] sig=2 <lv_obj_get_style_bg_color>
+ - func[129] sig=0 <lv_obj_get_style_bg_grad_dir>
+ - func[130] sig=2 <lv_obj_get_style_bg_grad_color>
+ - func[131] sig=0 <lv_obj_get_style_bg_main_stop>
+ - func[132] sig=0 <lv_obj_get_style_bg_grad_stop>
+ - func[133] sig=0 <lv_obj_get_style_border_opa>
+ - func[134] sig=2 <lv_obj_get_style_border_color>
+ - func[135] sig=0 <lv_obj_get_style_outline_width>
+ - func[136] sig=0 <lv_obj_get_style_outline_opa>
+ - func[137] sig=0 <lv_obj_get_style_outline_pad>
+ - func[138] sig=2 <lv_obj_get_style_outline_color>
+ - func[139] sig=0 <lv_obj_get_style_outline_blend_mode>
+ - func[140] sig=0 <lv_obj_get_style_pattern_image>
+ - func[141] sig=0 <lv_obj_get_style_pattern_opa>
+ - func[142] sig=0 <lv_obj_get_style_pattern_recolor_opa>
+ - func[143] sig=0 <lv_obj_get_style_pattern_repeat>
+ - func[144] sig=2 <lv_obj_get_style_pattern_recolor>
+ - func[145] sig=0 <lv_obj_get_style_text_font>
+ - func[146] sig=0 <lv_obj_get_style_pattern_blend_mode>
+ - func[147] sig=0 <lv_obj_get_style_value_str>
+ - func[148] sig=0 <lv_obj_get_style_value_opa>
+ - func[149] sig=0 <lv_obj_get_style_value_ofs_x>
+ - func[150] sig=0 <lv_obj_get_style_value_ofs_y>
+ - func[151] sig=2 <lv_obj_get_style_value_color>
+ - func[152] sig=0 <lv_obj_get_style_value_font>
+ - func[153] sig=0 <lv_obj_get_style_value_letter_space>
+ - func[154] sig=0 <lv_obj_get_style_value_line_space>
+ - func[155] sig=0 <lv_obj_get_style_value_align>
+ - func[156] sig=0 <lv_obj_get_style_value_blend_mode>
+ - func[157] sig=2 <lv_obj_init_draw_label_dsc>
+ - func[158] sig=0 <lv_obj_get_style_text_opa>
+ - func[159] sig=2 <lv_obj_get_style_text_color>
+ - func[160] sig=0 <lv_obj_get_style_text_letter_space>
+ - func[161] sig=0 <lv_obj_get_style_text_line_space>
+ - func[162] sig=0 <lv_obj_get_style_text_decor>
+ - func[163] sig=0 <lv_obj_get_style_text_blend_mode>
+ - func[164] sig=2 <lv_obj_get_style_text_sel_color>
+ - func[165] sig=0 <lv_obj_get_style_shadow_width>
+ - func[166] sig=0 <lv_obj_get_style_shadow_opa>
+ - func[167] sig=0 <lv_obj_get_style_shadow_spread>
+ - func[168] sig=0 <lv_obj_get_style_shadow_ofs_x>
+ - func[169] sig=0 <lv_obj_get_style_shadow_ofs_y>
+ - func[170] sig=6 <_lv_refr_init>
+ - func[171] sig=5 <_lv_disp_refr_task>
+ - func[172] sig=6 <lv_refr_join_area>
+ - func[173] sig=6 <lv_refr_areas>
+ - func[174] sig=6 <lv_refr_vdb_flush>
+ - func[175] sig=1 <lv_area_get_width.1>
+ - func[176] sig=4 <_lv_inv_area>
+ - func[177] sig=4 <lv_area_copy.1>
+ - func[178] sig=3 <_lv_memcpy_small.1>
+ - func[179] sig=8 <_lv_refr_get_disp_refreshing>
+ - func[180] sig=5 <lv_refr_area>
+ - func[181] sig=5 <lv_refr_area_part>
+ - func[182] sig=1 <lv_area_get_height.1>
+ - func[183] sig=0 <lv_refr_get_top_obj>
+ - func[184] sig=4 <lv_refr_obj_and_children>
+ - func[185] sig=4 <lv_refr_obj>
+ - func[186] sig=5 <lv_style_init>
+ - func[187] sig=4 <lv_style_copy>
+ - func[188] sig=1 <lv_debug_check_style>
+ - func[189] sig=1 <_lv_style_get_mem_size>
+ - func[190] sig=0 <get_style_prop_id>
+ - func[191] sig=0 <get_next_prop_index>
+ - func[192] sig=0 <lv_style_remove_prop>
+ - func[193] sig=0 <get_property_index>
+ - func[194] sig=0 <get_style_prop_attr>
+ - func[195] sig=1 <get_prop_size>
+ - func[196] sig=4 <style_resize>
+ - func[197] sig=0 <get_style_prop>
+ - func[198] sig=5 <lv_style_list_init>
+ - func[199] sig=4 <lv_style_list_copy>
+ - func[200] sig=1 <lv_debug_check_style_list>
+ - func[201] sig=5 <_lv_style_list_reset>
+ - func[202] sig=1 <get_alloc_local_style>
+ - func[203] sig=1 <lv_style_list_get_local_style>
+ - func[204] sig=5 <lv_style_reset>
+ - func[205] sig=1 <_lv_style_list_get_transition_style>
+ - func[206] sig=0 <lv_style_list_get_style.1>
+ - func[207] sig=4 <_lv_style_list_add_style>
+ - func[208] sig=4 <_lv_style_list_remove_style>
+ - func[209] sig=2 <_lv_style_set_int>
+ - func[210] sig=3 <_lv_memcpy_small.2>
+ - func[211] sig=2 <_lv_style_set_color>
+ - func[212] sig=2 <_lv_style_set_opa>
+ - func[213] sig=2 <_lv_style_set_ptr>
+ - func[214] sig=3 <_lv_style_get_int>
+ - func[215] sig=3 <_lv_style_get_opa>
+ - func[216] sig=3 <_lv_style_get_color>
+ - func[217] sig=3 <_lv_style_get_ptr>
+ - func[218] sig=1 <_lv_style_list_add_trans_style>
+ - func[219] sig=3 <_lv_style_list_get_int>
+ - func[220] sig=3 <_lv_style_list_get_color>
+ - func[221] sig=3 <_lv_style_list_get_opa>
+ - func[222] sig=3 <_lv_style_list_get_ptr>
+ - func[223] sig=5 <lv_disp_drv_init>
+ - func[224] sig=7 <lv_disp_buf_init>
+ - func[225] sig=1 <lv_disp_drv_register>
+ - func[226] sig=1 <lv_disp_is_true_double_buf>
+ - func[227] sig=1 <lv_disp_is_double_buf>
+ - func[228] sig=1 <lv_disp_get_hor_res>
+ - func[229] sig=1 <lv_disp_get_ver_res>
+ - func[230] sig=8 <lv_disp_get_default>
+ - func[231] sig=1 <lv_disp_get_dpi>
+ - func[232] sig=1 <lv_disp_get_size_category>
+ - func[233] sig=5 <lv_disp_flush_ready>
+ - func[234] sig=1 <lv_disp_get_next>
+ - func[235] sig=1 <lv_disp_get_buf>
+ - func[236] sig=1 <lv_indev_get_next>
+ - func[237] sig=5 <lv_tick_inc>
+ - func[238] sig=8 <lv_tick_get>
+ - func[239] sig=1 <lv_tick_elaps>
+ - func[240] sig=0 <lv_btn_create>
+ - func[241] sig=3 <lv_btn_design>
+ - func[242] sig=3 <lv_btn_signal>
+ - func[243] sig=4 <lv_btn_set_layout>
+ - func[244] sig=1 <lv_btn_get_checkable>
+ - func[245] sig=4 <lv_btn_set_state>
+ - func[246] sig=0 <lv_label_create>
+ - func[247] sig=3 <lv_label_signal>
+ - func[248] sig=3 <lv_label_design>
+ - func[249] sig=4 <lv_label_set_long_mode>
+ - func[250] sig=4 <lv_label_set_text>
+ - func[251] sig=1 <lv_label_get_long_mode>
+ - func[252] sig=1 <lv_label_get_recolor>
+ - func[253] sig=4 <lv_label_set_recolor>
+ - func[254] sig=1 <lv_label_get_align>
+ - func[255] sig=4 <lv_label_set_align>
+ - func[256] sig=1 <lv_label_get_text>
+ - func[257] sig=4 <lv_label_set_text_static>
+ - func[258] sig=3 <lv_label_set_dot_tmp>
+ - func[259] sig=0 <lv_obj_get_style_transform_width.1>
+ - func[260] sig=0 <lv_obj_get_style_transform_height.1>
+ - func[261] sig=4 <lv_area_copy.2>
+ - func[262] sig=4 <get_txt_coords>
+ - func[263] sig=1 <lv_label_get_text_sel_start>
+ - func[264] sig=1 <lv_label_get_text_sel_end>
+ - func[265] sig=1 <lv_area_get_width.2>
+ - func[266] sig=1 <lv_area_get_height.2>
+ - func[267] sig=1 <lv_font_get_line_height>
+ - func[268] sig=0 <lv_label_get_style>
+ - func[269] sig=5 <lv_label_dot_tmp_free>
+ - func[270] sig=5 <lv_label_revert_dots>
+ - func[271] sig=5 <lv_label_refr_text>
+ - func[272] sig=4 <lv_label_set_offset_y>
+ - func[273] sig=4 <lv_label_set_offset_x>
+ - func[274] sig=0 <lv_obj_get_style_text_font.1>
+ - func[275] sig=0 <lv_obj_get_style_text_line_space.1>
+ - func[276] sig=0 <lv_obj_get_style_text_letter_space.1>
+ - func[277] sig=0 <lv_obj_get_style_pad_left.1>
+ - func[278] sig=0 <lv_obj_get_style_pad_right.1>
+ - func[279] sig=0 <lv_obj_get_style_pad_top>
+ - func[280] sig=0 <lv_obj_get_style_pad_bottom>
+ - func[281] sig=4 <lv_anim_set_var.1>
+ - func[282] sig=4 <lv_anim_set_repeat_count>
+ - func[283] sig=4 <lv_anim_set_playback_delay>
+ - func[284] sig=4 <lv_anim_set_repeat_delay>
+ - func[285] sig=2 <lv_anim_set_values.1>
+ - func[286] sig=4 <lv_anim_set_exec_cb.1>
+ - func[287] sig=4 <lv_anim_set_time.1>
+ - func[288] sig=4 <lv_anim_set_playback_time>
+ - func[289] sig=0 <lv_label_get_letter_on>
+ - func[290] sig=1 <lv_label_get_dot_tmp>
+ - func[291] sig=3 <_lv_memcpy_small.3>
+ - func[292] sig=0 <lv_cont_create>
+ - func[293] sig=3 <lv_cont_signal>
+ - func[294] sig=0 <lv_cont_get_style>
+ - func[295] sig=5 <lv_cont_refr_layout>
+ - func[296] sig=5 <lv_cont_refr_autofit>
+ - func[297] sig=1 <lv_area_get_width.3>
+ - func[298] sig=1 <lv_area_get_height.3>
+ - func[299] sig=4 <lv_cont_set_layout>
+ - func[300] sig=1 <lv_cont_get_layout>
+ - func[301] sig=5 <lv_cont_layout_center>
+ - func[302] sig=5 <lv_cont_layout_col>
+ - func[303] sig=5 <lv_cont_layout_row>
+ - func[304] sig=5 <lv_cont_layout_pretty>
+ - func[305] sig=5 <lv_cont_layout_grid>
+ - func[306] sig=4 <lv_area_copy.3>
+ - func[307] sig=0 <lv_obj_get_style_pad_left.2>
+ - func[308] sig=0 <lv_obj_get_style_pad_right.2>
+ - func[309] sig=0 <lv_obj_get_style_pad_top.1>
+ - func[310] sig=0 <lv_obj_get_style_pad_bottom.1>
+ - func[311] sig=0 <lv_obj_get_style_margin_left>
+ - func[312] sig=0 <lv_obj_get_style_margin_right>
+ - func[313] sig=0 <lv_obj_get_style_margin_top>
+ - func[314] sig=0 <lv_obj_get_style_margin_bottom>
+ - func[315] sig=0 <lv_obj_get_style_pad_inner>
+ - func[316] sig=3 <_lv_memcpy_small.4>
+ - func[317] sig=0 <lv_font_get_glyph_bitmap>
+ - func[318] sig=13 <lv_font_get_glyph_dsc>
+ - func[319] sig=3 <lv_font_get_glyph_width>
+ - func[320] sig=0 <lv_font_get_bitmap_fmt_txt>
+ - func[321] sig=0 <get_glyph_dsc_id>
+ - func[322] sig=15 <decompress>
+ - func[323] sig=0 <unicode_list_compare>
+ - func[324] sig=4 <rle_init>
+ - func[325] sig=4 <decompress_line>
+ - func[326] sig=7 <bits_write>
+ - func[327] sig=13 <lv_font_get_glyph_dsc_fmt_txt>
+ - func[328] sig=3 <get_kern_value>
+ - func[329] sig=0 <kern_pair_8_compare>
+ - func[330] sig=0 <kern_pair_16_compare>
+ - func[331] sig=6 <_lv_font_clean_up_fmt_txt>
+ - func[332] sig=8 <rle_next>
+ - func[333] sig=3 <get_bits>
+ - func[334] sig=14 <lv_area_set>
+ - func[335] sig=4 <lv_area_set_height>
+ - func[336] sig=1 <lv_area_get_width.4>
+ - func[337] sig=1 <lv_area_get_height.4>
+ - func[338] sig=1 <lv_area_get_size>
+ - func[339] sig=3 <_lv_area_intersect>
+ - func[340] sig=2 <_lv_area_join>
+ - func[341] sig=3 <_lv_area_is_point_on>
+ - func[342] sig=0 <lv_point_within_circle>
+ - func[343] sig=0 <_lv_area_is_on>
+ - func[344] sig=3 <_lv_area_is_in>
+ - func[345] sig=7 <_lv_area_align>
+ - func[346] sig=6 <_lv_task_core_init>
+ - func[347] sig=5 <lv_task_enable>
+ - func[348] sig=8 <lv_task_handler>
+ - func[349] sig=1 <lv_task_exec>
+ - func[350] sig=1 <lv_task_time_remaining>
+ - func[351] sig=5 <lv_task_del>
+ - func[352] sig=8 <lv_task_create_basic>
+ - func[353] sig=13 <lv_task_create>
+ - func[354] sig=4 <lv_task_set_cb>
+ - func[355] sig=4 <lv_task_set_period>
+ - func[356] sig=4 <lv_task_set_prio>
+ - func[357] sig=5 <lv_task_ready>
+ - func[358] sig=0 <lv_anim_path_linear>
+ - func[359] sig=6 <_lv_anim_core_init>
+ - func[360] sig=5 <anim_task>
+ - func[361] sig=6 <anim_mark_list_change>
+ - func[362] sig=1 <anim_ready_handler>
+ - func[363] sig=5 <lv_anim_init>
+ - func[364] sig=3 <_lv_memcpy_small.5>
+ - func[365] sig=5 <lv_anim_start>
+ - func[366] sig=0 <lv_anim_del>
+ - func[367] sig=0 <lv_anim_get>
+ - func[368] sig=3 <lv_anim_speed_to_time>
+ - func[369] sig=6 <_lv_mem_init>
+ - func[370] sig=4 <_lv_memset_00>
+ - func[371] sig=1 <lv_mem_alloc>
+ - func[372] sig=1 <ent_get_next>
+ - func[373] sig=0 <ent_alloc>
+ - func[374] sig=4 <ent_trunc>
+ - func[375] sig=5 <lv_mem_free>
+ - func[376] sig=6 <lv_mem_defrag>
+ - func[377] sig=0 <lv_mem_realloc>
+ - func[378] sig=1 <_lv_mem_get_size>
+ - func[379] sig=3 <_lv_memcpy>
+ - func[380] sig=2 <_lv_memset>
+ - func[381] sig=1 <_lv_mem_buf_get>
+ - func[382] sig=5 <_lv_mem_buf_release>
+ - func[383] sig=6 <_lv_mem_buf_free_all>
+ - func[384] sig=4 <_lv_memset_ff>
+ - func[385] sig=4 <_lv_ll_init>
+ - func[386] sig=1 <_lv_ll_ins_head>
+ - func[387] sig=2 <node_set_prev>
+ - func[388] sig=2 <node_set_next>
+ - func[389] sig=0 <_lv_ll_ins_prev>
+ - func[390] sig=1 <_lv_ll_get_head>
+ - func[391] sig=0 <_lv_ll_get_prev>
+ - func[392] sig=1 <_lv_ll_ins_tail>
+ - func[393] sig=4 <_lv_ll_remove>
+ - func[394] sig=0 <_lv_ll_get_next>
+ - func[395] sig=1 <_lv_ll_get_tail>
+ - func[396] sig=2 <_lv_ll_move_before>
+ - func[397] sig=1 <_lv_ll_is_empty>
+ - func[398] sig=2 <lv_color_fill>
+ - func[399] sig=2 <lv_color_lighten>
+ - func[400] sig=7 <lv_color_mix.1>
+ - func[401] sig=2 <lv_color_darken>
+ - func[402] sig=7 <lv_color_hsv_to_rgb>
+ - func[403] sig=7 <lv_color_make.1>
+ - func[404] sig=1 <lv_txt_utf8_size>
+ - func[405] sig=0 <lv_txt_utf8_next>
+ - func[406] sig=0 <lv_txt_utf8_prev>
+ - func[407] sig=0 <lv_txt_utf8_get_byte_id>
+ - func[408] sig=0 <lv_txt_utf8_get_char_id>
+ - func[409] sig=1 <lv_txt_utf8_get_length>
+ - func[410] sig=11 <_lv_txt_get_size>
+ - func[411] sig=1 <lv_font_get_line_height.1>
+ - func[412] sig=10 <_lv_txt_get_next_line>
+ - func[413] sig=10 <_lv_txt_get_width>
+ - func[414] sig=22 <lv_txt_get_next_word>
+ - func[415] sig=0 <_lv_txt_is_cmd>
+ - func[416] sig=1 <is_break_char>
+ - func[417] sig=1 <_lv_trigo_sin>
+ - func[418] sig=2 <_lv_sqrt>
+ - func[419] sig=15 <_lv_log_add>
+ - func[420] sig=10 <_lv_utils_bsearch>
+ - func[421] sig=7 <_out_buffer>
+ - func[422] sig=10 <_vsnprintf>
+ - func[423] sig=7 <_out_null>
+ - func[424] sig=1 <_is_digit>
+ - func[425] sig=1 <_atoi>
+ - func[426] sig=30 <_ntoa_long_long>
+ - func[427] sig=28 <_ntoa_long>
+ - func[428] sig=0 <_strnlen_s>
+ - func[429] sig=13 <lv_vsnprintf>
+ - func[430] sig=29 <_ntoa_format>
+ - func[431] sig=22 <_out_rev>
+ - func[432] sig=1 <lv_debug_check_null>
+ - func[433] sig=27 <lv_debug_log_error>
+ - func[434] sig=5 <lv_theme_set_act>
+ - func[435] sig=4 <lv_theme_apply>
+ - func[436] sig=4 <clear_styles>
+ - func[437] sig=2 <apply_theme>
+ - func[438] sig=8 <lv_theme_get_font_normal>
+ - func[439] sig=21 <lv_theme_material_init>
+ - func[440] sig=2 <theme_apply>
+ - func[441] sig=6 <basic_init>
+ - func[442] sig=6 <cont_init>
+ - func[443] sig=6 <btn_init>
+ - func[444] sig=6 <label_init>
+ - func[445] sig=6 <bar_init>
+ - func[446] sig=6 <img_init>
+ - func[447] sig=6 <line_init>
+ - func[448] sig=6 <led_init>
+ - func[449] sig=6 <slider_init>
+ - func[450] sig=6 <switch_init>
+ - func[451] sig=6 <linemeter_init>
+ - func[452] sig=6 <gauge_init>
+ - func[453] sig=6 <arc_init>
+ - func[454] sig=6 <spinner_init>
+ - func[455] sig=6 <chart_init>
+ - func[456] sig=6 <calendar_init>
+ - func[457] sig=6 <cpicker_init>
+ - func[458] sig=6 <checkbox_init>
+ - func[459] sig=6 <btnmatrix_init>
+ - func[460] sig=6 <keyboard_init>
+ - func[461] sig=6 <msgbox_init>
+ - func[462] sig=6 <page_init>
+ - func[463] sig=6 <textarea_init>
+ - func[464] sig=6 <spinbox_init>
+ - func[465] sig=6 <list_init>
+ - func[466] sig=6 <ddlist_init>
+ - func[467] sig=6 <roller_init>
+ - func[468] sig=6 <tabview_init>
+ - func[469] sig=6 <tileview_init>
+ - func[470] sig=6 <table_init>
+ - func[471] sig=6 <win_init>
+ - func[472] sig=6 <tabview_win_shared_init>
+ - func[473] sig=5 <style_init_reset>
+ - func[474] sig=2 <lv_style_set_bg_opa>
+ - func[475] sig=4 <lv_color_hex.1>
+ - func[476] sig=2 <lv_style_set_bg_color>
+ - func[477] sig=2 <lv_style_set_text_color>
+ - func[478] sig=2 <lv_style_set_value_color>
+ - func[479] sig=2 <lv_style_set_text_font>
+ - func[480] sig=2 <lv_style_set_value_font>
+ - func[481] sig=2 <lv_style_set_radius>
+ - func[482] sig=2 <lv_style_set_border_color>
+ - func[483] sig=2 <lv_style_set_border_width>
+ - func[484] sig=2 <lv_style_set_border_post>
+ - func[485] sig=2 <lv_style_set_image_recolor>
+ - func[486] sig=2 <lv_style_set_line_color>
+ - func[487] sig=2 <lv_style_set_line_width>
+ - func[488] sig=2 <lv_style_set_pad_left>
+ - func[489] sig=2 <lv_style_set_pad_right>
+ - func[490] sig=2 <lv_style_set_pad_top>
+ - func[491] sig=2 <lv_style_set_pad_bottom>
+ - func[492] sig=2 <lv_style_set_pad_inner>
+ - func[493] sig=2 <lv_style_set_transition_time>
+ - func[494] sig=2 <lv_style_set_transition_prop_6>
+ - func[495] sig=4 <lv_color_hex3>
+ - func[496] sig=2 <lv_style_set_transition_prop_5>
+ - func[497] sig=7 <lv_color_mix.2>
+ - func[498] sig=2 <lv_style_set_border_opa>
+ - func[499] sig=2 <lv_style_set_outline_width>
+ - func[500] sig=2 <lv_style_set_outline_opa>
+ - func[501] sig=2 <lv_style_set_outline_color>
+ - func[502] sig=2 <lv_style_set_transition_prop_4>
+ - func[503] sig=2 <lv_style_set_transition_delay>
+ - func[504] sig=2 <lv_style_set_shadow_width>
+ - func[505] sig=2 <lv_style_set_shadow_color>
+ - func[506] sig=2 <lv_style_set_shadow_spread>
+ - func[507] sig=2 <lv_style_set_margin_left>
+ - func[508] sig=2 <lv_style_set_margin_right>
+ - func[509] sig=2 <lv_style_set_margin_top>
+ - func[510] sig=2 <lv_style_set_margin_bottom>
+ - func[511] sig=2 <lv_style_set_scale_width>
+ - func[512] sig=2 <lv_style_set_scale_grad_color>
+ - func[513] sig=2 <lv_style_set_scale_end_color>
+ - func[514] sig=2 <lv_style_set_scale_end_line_width>
+ - func[515] sig=2 <lv_style_set_scale_end_border_width>
+ - func[516] sig=2 <lv_style_set_size>
+ - func[517] sig=2 <lv_style_set_line_rounded>
+ - func[518] sig=2 <lv_style_set_line_dash_width>
+ - func[519] sig=2 <lv_style_set_line_dash_gap>
+ - func[520] sig=2 <lv_style_set_border_side>
+ - func[521] sig=2 <lv_style_set_outline_pad>
+ - func[522] sig=2 <lv_style_set_pattern_image>
+ - func[523] sig=2 <lv_style_set_pattern_recolor>
+ - func[524] sig=2 <lv_style_set_clip_corner>
+ - func[525] sig=2 <lv_style_set_transform_width>
+ - func[526] sig=2 <lv_style_set_text_line_space>
+ - func[527] sig=7 <lv_color_make.2>
+ - func[528] sig=0 <lv_draw_mask_add>
+ - func[529] sig=13 <lv_draw_mask_apply>
+ - func[530] sig=1 <lv_draw_mask_remove_id>
+ - func[531] sig=1 <lv_draw_mask_remove_custom>
+ - func[532] sig=8 <lv_draw_mask_get_cnt>
+ - func[533] sig=15 <lv_draw_mask_line_points_init>
+ - func[534] sig=10 <lv_draw_mask_line>
+ - func[535] sig=10 <line_mask_flat>
+ - func[536] sig=10 <line_mask_steep>
+ - func[537] sig=7 <lv_draw_mask_radius_init>
+ - func[538] sig=1 <lv_area_get_width.5>
+ - func[539] sig=1 <lv_area_get_height.5>
+ - func[540] sig=10 <lv_draw_mask_radius>
+ - func[541] sig=4 <lv_area_copy.4>
+ - func[542] sig=3 <_lv_memcpy_small.6>
+ - func[543] sig=0 <mask_mix>
+ - func[544] sig=2 <sqrt_approx>
+ - func[545] sig=11 <_lv_blend_fill>
+ - func[546] sig=1 <lv_area_get_width.6>
+ - func[547] sig=11 <fill_set_px>
+ - func[548] sig=11 <fill_normal>
+ - func[549] sig=16 <fill_blended>
+ - func[550] sig=1 <lv_area_get_height.6>
+ - func[551] sig=7 <lv_color_mix.3>
+ - func[552] sig=2 <lv_color_premult>
+ - func[553] sig=7 <lv_color_mix_premult>
+ - func[554] sig=7 <color_blend_true_color_additive>
+ - func[555] sig=7 <color_blend_true_color_subtractive>
+ - func[556] sig=11 <_lv_blend_map>
+ - func[557] sig=16 <map_set_px>
+ - func[558] sig=16 <map_normal>
+ - func[559] sig=19 <map_blended>
+ - func[560] sig=5 <lv_draw_rect_dsc_init>
+ - func[561] sig=2 <lv_draw_rect>
+ - func[562] sig=1 <lv_area_get_height.7>
+ - func[563] sig=1 <lv_area_get_width.7>
+ - func[564] sig=2 <draw_bg>
+ - func[565] sig=2 <draw_pattern>
+ - func[566] sig=2 <draw_border>
+ - func[567] sig=2 <draw_value_str>
+ - func[568] sig=2 <draw_outline>
+ - func[569] sig=4 <lv_area_copy.5>
+ - func[570] sig=7 <grad_get>
+ - func[571] sig=11 <draw_full_border>
+ - func[572] sig=3 <_lv_memcpy_small.7>
+ - func[573] sig=7 <lv_color_mix.4>
+ - func[574] sig=5 <lv_draw_label_dsc_init>
+ - func[575] sig=14 <lv_draw_label>
+ - func[576] sig=1 <lv_area_get_width.8>
+ - func[577] sig=1 <lv_font_get_line_height.2>
+ - func[578] sig=3 <_lv_memcpy_small.8>
+ - func[579] sig=1 <hex_char_to_num>
+ - func[580] sig=7 <lv_color_make.3>
+ - func[581] sig=11 <lv_draw_letter>
+ - func[582] sig=16 <draw_letter_subpx>
+ - func[583] sig=16 <draw_letter_normal>
+ - func[584] sig=5 <lv_draw_line_dsc_init>
+ - func[585] sig=7 <lv_draw_line>
+ - func[586] sig=7 <draw_line_hor>
+ - func[587] sig=7 <draw_line_ver>
+ - func[588] sig=7 <draw_line_skew>
+ - func[589] sig=1 <lv_area_get_width.9>
+ - func[590] sig=5 <lv_draw_img_dsc_init>
+ - func[591] sig=7 <lv_draw_img>
+ - func[592] sig=2 <show_error>
+ - func[593] sig=13 <lv_img_draw_core>
+ - func[594] sig=1 <lv_img_cf_is_chroma_keyed>
+ - func[595] sig=1 <lv_img_cf_has_alpha>
+ - func[596] sig=4 <lv_area_copy.6>
+ - func[597] sig=1 <lv_area_get_width.10>
+ - func[598] sig=1 <lv_area_get_height.8>
+ - func[599] sig=15 <lv_draw_map>
+ - func[600] sig=1 <lv_img_cf_get_px_size>
+ - func[601] sig=1 <lv_img_src_get_type>
+ - func[602] sig=3 <_lv_memcpy_small.9>
+ - func[603] sig=2 <lv_color_premult.1>
+ - func[604] sig=3 <_lv_img_buf_transform>
+ - func[605] sig=7 <lv_color_mix_premult.1>
+ - func[606] sig=6 <_lv_img_decoder_init>
+ - func[607] sig=8 <lv_img_decoder_create>
+ - func[608] sig=4 <lv_img_decoder_built_in_close>
+ - func[609] sig=17 <lv_img_decoder_built_in_read_line>
+ - func[610] sig=0 <lv_img_decoder_built_in_open>
+ - func[611] sig=3 <lv_img_decoder_built_in_info>
+ - func[612] sig=4 <lv_img_decoder_set_info_cb>
+ - func[613] sig=4 <lv_img_decoder_set_open_cb>
+ - func[614] sig=4 <lv_img_decoder_set_read_line_cb>
+ - func[615] sig=4 <lv_img_decoder_set_close_cb>
+ - func[616] sig=7 <lv_color_make.4>
+ - func[617] sig=10 <lv_img_decoder_built_in_line_true_color>
+ - func[618] sig=10 <lv_img_decoder_built_in_line_alpha>
+ - func[619] sig=10 <lv_img_decoder_built_in_line_indexed>
+ - func[620] sig=0 <lv_img_decoder_get_info>
+ - func[621] sig=3 <lv_img_decoder_open>
+ - func[622] sig=10 <lv_img_decoder_read_line>
+ - func[623] sig=5 <lv_img_decoder_close>
+ - func[624] sig=0 <_lv_img_cache_open>
+ - func[625] sig=5 <lv_img_cache_set_size>
+ - func[626] sig=5 <lv_img_cache_invalidate_src>
+ - func[627] sig=14 <lv_img_buf_get_px_color>
+ - func[628] sig=3 <_lv_memcpy_small.10>
+ - func[629] sig=3 <lv_img_buf_get_px_alpha>
+ - func[630] sig=5 <_lv_img_buf_transform_init>
+ - func[631] sig=15 <_lv_img_buf_get_transformed_area>
+ - func[632] sig=1 <_lv_img_buf_transform_anti_alias>
+ - func[633] sig=7 <lv_color_mix.5>
+ - func[634] sig=6 <lv_port_disp_init>
+ - func[635] sig=2 <disp_flush>
+ - func[636] sig=6 <disp_init>
+ - func[637] sig=32 <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
+ - func[638] sig=1 <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
+ - func[639] sig=1 <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
+ - func[640] sig=10 <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
+ - func[641] sig=4 <event_handler(_lv_obj_t*, unsigned char)>
+ - func[642] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
+ - func[643] sig=0 <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
+ - func[644] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
+ - func[645] sig=23 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
+ - func[646] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
+ - func[647] sig=8 <lv_scr_act()>
+ - func[648] sig=26 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
+ - func[649] sig=2 <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
+ - func[650] sig=1 <Pinetime::Applications::Screens::Clock::Refresh()>
+ - func[651] sig=36 <Pinetime::Controllers::Battery::PercentRemaining() const>
+ - func[652] sig=0 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
+ - func[653] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
+ - func[654] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
+ - func[655] sig=1 <Pinetime::Controllers::Battery::IsCharging() const>
+ - func[656] sig=1 <Pinetime::Controllers::Battery::IsPowerPresent() const>
+ - func[657] sig=1 <Pinetime::Controllers::Ble::IsConnected() const>
+ - func[658] sig=0 <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
+ - func[659] sig=1 <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
+ - func[660] sig=1 <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
+ - func[661] sig=9 <Pinetime::Controllers::DateTime::CurrentDateTime() const>
+ - func[662] sig=0 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[663] sig=1 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
+ - func[664] sig=1 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
+ - func[665] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[666] sig=12 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[667] sig=4 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[668] sig=0 <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
+ - func[669] sig=1 <date::year_month_day::year() const>
+ - func[670] sig=1 <date::year::operator int() const>
+ - func[671] sig=1 <date::year_month_day::month() const>
+ - func[672] sig=1 <date::month::operator unsigned int() const>
+ - func[673] sig=1 <date::year_month_day::day() const>
+ - func[674] sig=1 <date::day::operator unsigned int() const>
+ - func[675] sig=1 <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
+ - func[676] sig=0 <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[677] sig=1 <date::weekday::iso_encoding() const>
+ - func[678] sig=1 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
+ - func[679] sig=1 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
+ - func[680] sig=1 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
+ - func[681] sig=1 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
+ - func[682] sig=1 <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
+ - func[683] sig=1 <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
+ - func[684] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
+ - func[685] sig=1 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
+ - func[686] sig=0 <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[687] sig=9 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
+ - func[688] sig=1 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[689] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[690] sig=23 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[691] sig=1 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
+ - func[692] sig=12 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[693] sig=4 <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
+ - func[694] sig=1 <date::year_month_day::to_days() const>
+ - func[695] sig=1 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
+ - func[696] sig=1 <date::weekday::weekday_from_days(int)>
+ - func[697] sig=26 <std::__2::chrono::duration_values<long long>::zero()>
+ - func[698] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[699] sig=1 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[700] sig=0 <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[701] sig=3 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[702] sig=0 <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[703] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[704] sig=1 <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
+ - func[705] sig=0 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[706] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[707] sig=9 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
+ - func[708] sig=3 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[709] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
+ - func[710] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[711] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[712] sig=34 <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[713] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[714] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[715] sig=0 <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[716] sig=12 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[717] sig=12 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[718] sig=0 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[719] sig=0 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[720] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[721] sig=0 <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[722] sig=9 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
+ - func[723] sig=9 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
+ - func[724] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[725] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[726] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[727] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[728] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[729] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[730] sig=12 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[731] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[732] sig=3 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[733] sig=3 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[734] sig=1 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[735] sig=0 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[736] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[737] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
+ - func[738] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[739] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[740] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[741] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[742] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[743] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[744] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[745] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[746] sig=9 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
+ - func[747] sig=0 <date::year::year(int)>
+ - func[748] sig=0 <date::month::month(unsigned int)>
+ - func[749] sig=0 <date::day::day(unsigned int)>
+ - func[750] sig=13 <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
+ - func[751] sig=0 <date::operator<=(date::month const&, date::month const&)>
+ - func[752] sig=0 <date::operator<(date::month const&, date::month const&)>
+ - func[753] sig=0 <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[754] sig=0 <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[755] sig=3 <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[756] sig=8 <create_clock>
+ - func[757] sig=1 <Pinetime::Controllers::DateTime::DateTime()>
+ - func[758] sig=1 <Pinetime::Controllers::Battery::Battery()>
+ - func[759] sig=1 <Pinetime::Controllers::Ble::Ble()>
+ - func[760] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[761] sig=8 <refresh_clock>
+ - func[762] sig=17 <update_clock>
+ - func[763] sig=19 <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
+ - func[764] sig=3 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
+ - func[765] sig=4 <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
+ - func[766] sig=9 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
+ - func[767] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[768] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
+ - func[769] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[770] sig=0 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[771] sig=9 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[772] sig=0 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[773] sig=9 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[774] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[775] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
+ - func[776] sig=9 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
+ - func[777] sig=3 <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
+ - func[778] sig=5 <Pinetime::Components::LittleVgl::InitTheme()>
+ - func[779] sig=5 <Pinetime::Components::LittleVgl::InitBaseTheme()>
+ - func[780] sig=5 <Pinetime::Components::LittleVgl::InitThemeContainer()>
+ - func[781] sig=5 <Pinetime::Components::LittleVgl::InitThemeButton()>
+ - func[782] sig=5 <Pinetime::Components::LittleVgl::InitThemeLabel()>
+ - func[783] sig=5 <Pinetime::Components::LittleVgl::InitThemeLine()>
+ - func[784] sig=5 <Pinetime::Components::LittleVgl::InitThemeLed()>
+ - func[785] sig=5 <Pinetime::Components::LittleVgl::InitThemeImage()>
+ - func[786] sig=5 <Pinetime::Components::LittleVgl::InitThemeBar()>
+ - func[787] sig=5 <Pinetime::Components::LittleVgl::InitThemeSlider()>
+ - func[788] sig=5 <Pinetime::Components::LittleVgl::InitThemeSwitch()>
+ - func[789] sig=5 <Pinetime::Components::LittleVgl::InitThemeMeter()>
+ - func[790] sig=5 <Pinetime::Components::LittleVgl::InitThemeGauge()>
+ - func[791] sig=5 <Pinetime::Components::LittleVgl::InitThemeArc()>
+ - func[792] sig=5 <Pinetime::Components::LittleVgl::InitThemePreload()>
+ - func[793] sig=5 <Pinetime::Components::LittleVgl::InitThemeChart()>
+ - func[794] sig=5 <Pinetime::Components::LittleVgl::InitThemeCalendar()>
+ - func[795] sig=5 <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
+ - func[796] sig=5 <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
+ - func[797] sig=5 <Pinetime::Components::LittleVgl::InitThemeKnob()>
+ - func[798] sig=5 <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
+ - func[799] sig=5 <Pinetime::Components::LittleVgl::InitThemePage()>
+ - func[800] sig=5 <Pinetime::Components::LittleVgl::InitThemeTextArea()>
+ - func[801] sig=5 <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
+ - func[802] sig=5 <Pinetime::Components::LittleVgl::InitThemeList()>
+ - func[803] sig=5 <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
+ - func[804] sig=5 <Pinetime::Components::LittleVgl::InitThemeRoller()>
+ - func[805] sig=5 <Pinetime::Components::LittleVgl::InitThemeTabView()>
+ - func[806] sig=5 <Pinetime::Components::LittleVgl::InitThemeTileView()>
+ - func[807] sig=5 <Pinetime::Components::LittleVgl::InitThemeTable()>
+ - func[808] sig=5 <Pinetime::Components::LittleVgl::InitThemeWindow()>
+ - func[809] sig=2 <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
+ - func[810] sig=2 <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[811] sig=2 <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[812] sig=2 <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[813] sig=2 <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[814] sig=2 <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
+ - func[815] sig=2 <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
+ - func[816] sig=2 <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
+ - func[817] sig=2 <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
+ - func[818] sig=2 <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
+ - func[819] sig=2 <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
+ - func[820] sig=2 <lv_style_set_radius(lv_style_t*, unsigned char, short)>
+ - func[821] sig=2 <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[822] sig=2 <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
+ - func[823] sig=2 <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[824] sig=2 <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
+ - func[825] sig=4 <lv_color_hex3(unsigned int)>
+ - func[826] sig=2 <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[827] sig=2 <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
+ - func[828] sig=7 <lv_color_make(unsigned char, unsigned char, unsigned char)>
+ - func[829] sig=15 <put_display_px>
+ - func[830] sig=8 <get_display_buffer>
+ - func[831] sig=8 <get_display_width>
+ - func[832] sig=8 <get_display_height>
+ - func[833] sig=8 <test_display>
+ - func[834] sig=6 <init_display>
+ - func[835] sig=6 <render_widgets>
+ - func[836] sig=8 <lv_scr_act>
+ - func[837] sig=6 <render_display>
+ - func[838] sig=0 <main>
+ - func[839] sig=0 <__stpcpy>
+ - func[840] sig=0 <strcpy>
+ - func[841] sig=0 <strcmp>
+ - func[842] sig=8 <__errno_location>
+ - func[843] sig=13 <vsnprintf>
+ - func[844] sig=3 <sn_write>
+ - func[845] sig=3 <vsprintf>
+ - func[846] sig=3 <sprintf>
+ - func[847] sig=1 <isdigit>
+ - func[848] sig=3 <memchr>
+ - func[849] sig=8 <pthread_self>
+ - func[850] sig=3 <wcrtomb>
+ - func[851] sig=8 <__pthread_self>
+ - func[852] sig=0 <wctomb>
+ - func[853] sig=38 <frexp>
+ - func[854] sig=10 <__vfprintf_internal>
+ - func[855] sig=21 <printf_core>
+ - func[856] sig=2 <out>
+ - func[857] sig=1 <getint>
+ - func[858] sig=7 <pop_arg>
+ - func[859] sig=31 <fmt_x>
+ - func[860] sig=25 <fmt_o>
+ - func[861] sig=25 <fmt_u>
+ - func[862] sig=14 <pad>
+ - func[863] sig=3 <vfprintf>
+ - func[864] sig=24 <fmt_fp>
+ - func[865] sig=4 <pop_arg_long_double>
+ - func[866] sig=35 <__DOUBLE_BITS>
+ - func[867] sig=20 <__ashlti3>
+ - func[868] sig=20 <__lshrti3>
+ - func[869] sig=37 <__trunctfdf2>
+ - func[870] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[871] sig=0 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[872] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[873] sig=3 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[874] sig=9 <std::__2::chrono::system_clock::from_time_t(long)>
+ - func[875] sig=9 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[876] sig=12 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[877] sig=1 <operator new(unsigned long)>
+ - func[878] sig=8 <_get_tzname>
+ - func[879] sig=8 <_get_daylight>
+ - func[880] sig=8 <_get_timezone>
+ - func[881] sig=5 <__lock>
+ - func[882] sig=5 <__unlock>
+ - func[883] sig=8 <__ofl_lock>
+ - func[884] sig=6 <__ofl_unlock>
+ - func[885] sig=1 <__wasi_syscall_ret>
+ - func[886] sig=3 <__stdio_write>
+ - func[887] sig=1 <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
+ - func[888] sig=8 <std::get_new_handler()>
+ - func[889] sig=1 <dlmalloc>
+ - func[890] sig=5 <dlfree>
+ - func[891] sig=1 <sbrk>
+ - func[892] sig=3 <memcpy>
+ - func[893] sig=3 <memset>
+ - func[894] sig=1 <__towrite>
+ - func[895] sig=0 <__overflow>
+ - func[896] sig=3 <__fwritex>
+ - func[897] sig=13 <fwrite>
+ - func[898] sig=1 <__emscripten_stdout_close>
+ - func[899] sig=18 <__emscripten_stdout_seek>
+ - func[900] sig=0 <printf>
+ - func[901] sig=0 <fputs>
+ - func[902] sig=1 <puts>
+ - func[903] sig=1 <__lockfile>
+ - func[904] sig=5 <__unlockfile>
+ - func[905] sig=1 <strlen>
+ - func[906] sig=8 <stackSave>
+ - func[907] sig=5 <stackRestore>
+ - func[908] sig=1 <stackAlloc>
+ - func[909] sig=1 <fflush>
+ - func[910] sig=1 <__fflush_unlocked>
+ - func[911] sig=33 <dynCall_jiji>
+ - func[912] sig=10 <legalstub$dynCall_jiji>
+ - func[913] sig=1 <__growWasmMemory>
+Global[2]:
+ - global[0] i32 mutable=1 - init i32=5730768
- global[1] i32 mutable=0 <__data_end> - init i32=487880
- - global[2] i32 mutable=1 - init i32=0
-Export[37]:
- - func[9] <__wasm_call_ctors> -> "__wasm_call_ctors"
- - func[760] <create_clock> -> "create_clock"
- - func[765] <refresh_clock> -> "refresh_clock"
- - func[766] <update_clock> -> "update_clock"
- - func[832] <get_display_buffer> -> "get_display_buffer"
- - func[833] <get_display_width> -> "get_display_width"
- - func[834] <get_display_height> -> "get_display_height"
- - func[835] <test_display> -> "test_display"
- - func[836] <init_display> -> "init_display"
- - func[837] <render_widgets> -> "render_widgets"
- - func[839] <render_display> -> "render_display"
- - func[840] <main> -> "main"
- - func[844] <__errno_location> -> "__errno_location"
- - func[911] <fflush> -> "fflush"
- - func[880] <_get_tzname> -> "_get_tzname"
- - func[881] <_get_daylight> -> "_get_daylight"
- - func[882] <_get_timezone> -> "_get_timezone"
- - func[908] <stackSave> -> "stackSave"
- - func[909] <stackRestore> -> "stackRestore"
- - func[910] <stackAlloc> -> "stackAlloc"
- - func[891] <dlmalloc> -> "malloc"
- - func[892] <dlfree> -> "free"
+Export[25]:
+ - func[7] <__wasm_call_ctors> -> "__wasm_call_ctors"
+ - func[756] <create_clock> -> "create_clock"
+ - func[761] <refresh_clock> -> "refresh_clock"
+ - func[762] <update_clock> -> "update_clock"
+ - func[830] <get_display_buffer> -> "get_display_buffer"
+ - func[831] <get_display_width> -> "get_display_width"
+ - func[832] <get_display_height> -> "get_display_height"
+ - func[833] <test_display> -> "test_display"
+ - func[834] <init_display> -> "init_display"
+ - func[835] <render_widgets> -> "render_widgets"
+ - func[837] <render_display> -> "render_display"
+ - func[838] <main> -> "main"
+ - func[842] <__errno_location> -> "__errno_location"
+ - func[909] <fflush> -> "fflush"
+ - func[878] <_get_tzname> -> "_get_tzname"
+ - func[879] <_get_daylight> -> "_get_daylight"
+ - func[880] <_get_timezone> -> "_get_timezone"
+ - func[906] <stackSave> -> "stackSave"
+ - func[907] <stackRestore> -> "stackRestore"
+ - func[908] <stackAlloc> -> "stackAlloc"
+ - func[889] <dlmalloc> -> "malloc"
+ - func[890] <dlfree> -> "free"
- global[1] -> "__data_end"
- - func[913] <__set_stack_limit> -> "__set_stack_limit"
- - func[914] <dynCall_iiii> -> "dynCall_iiii"
- - func[915] <dynCall_vii> -> "dynCall_vii"
- - func[916] <dynCall_vi> -> "dynCall_vi"
- - func[917] <dynCall_iii> -> "dynCall_iii"
- - func[918] <dynCall_ii> -> "dynCall_ii"
- - func[919] <dynCall_viiii> -> "dynCall_viiii"
- - func[920] <dynCall_viii> -> "dynCall_viii"
- - func[921] <dynCall_iiiiii> -> "dynCall_iiiiii"
- - func[922] <dynCall_iiiiiii> -> "dynCall_iiiiiii"
- - func[923] <dynCall_iiiii> -> "dynCall_iiiii"
- - func[924] <dynCall_iidiiii> -> "dynCall_iidiiii"
- - func[926] <legalstub$dynCall_jiji> -> "dynCall_jiji"
- - func[927] <__growWasmMemory> -> "__growWasmMemory"
+ - func[912] <legalstub$dynCall_jiji> -> "dynCall_jiji"
+ - func[913] <__growWasmMemory> -> "__growWasmMemory"
Elem[1]:
- segment[0] flags=0 table=0 count=47 - init i32=1
- - elem[1] = func[22] <lv_obj_design>
- - elem[2] = func[23] <lv_obj_signal>
- - elem[3] = func[100] <trans_anim_cb>
- - elem[4] = func[102] <trans_anim_start_cb>
- - elem[5] = func[104] <trans_anim_ready_cb>
- - elem[6] = func[173] <_lv_disp_refr_task>
- - elem[7] = func[243] <lv_btn_design>
- - elem[8] = func[244] <lv_btn_signal>
- - elem[9] = func[249] <lv_label_signal>
- - elem[10] = func[250] <lv_label_design>
- - elem[11] = func[274] <lv_label_set_offset_y>
- - elem[12] = func[275] <lv_label_set_offset_x>
- - elem[13] = func[66] <lv_obj_set_y>
- - elem[14] = func[65] <lv_obj_set_x>
- - elem[15] = func[295] <lv_cont_signal>
- - elem[16] = func[325] <unicode_list_compare>
- - elem[17] = func[331] <kern_pair_8_compare>
- - elem[18] = func[332] <kern_pair_16_compare>
- - elem[19] = func[362] <anim_task>
- - elem[20] = func[360] <lv_anim_path_linear>
- - elem[21] = func[406] <lv_txt_utf8_size>
- - elem[22] = func[407] <lv_txt_utf8_next>
- - elem[23] = func[408] <lv_txt_utf8_prev>
- - elem[24] = func[409] <lv_txt_utf8_get_byte_id>
- - elem[25] = func[410] <lv_txt_utf8_get_char_id>
- - elem[26] = func[411] <lv_txt_utf8_get_length>
- - elem[27] = func[425] <_out_null>
- - elem[28] = func[423] <_out_buffer>
- - elem[29] = func[442] <theme_apply>
- - elem[30] = func[536] <lv_draw_mask_line>
- - elem[31] = func[542] <lv_draw_mask_radius>
- - elem[32] = func[556] <color_blend_true_color_additive>
- - elem[33] = func[557] <color_blend_true_color_subtractive>
- - elem[34] = func[610] <lv_img_decoder_built_in_close>
- - elem[35] = func[611] <lv_img_decoder_built_in_read_line>
- - elem[36] = func[612] <lv_img_decoder_built_in_open>
- - elem[37] = func[613] <lv_img_decoder_built_in_info>
- - elem[38] = func[637] <disp_flush>
- - elem[39] = func[643] <event_handler(_lv_obj_t*, unsigned char)>
- - elem[40] = func[329] <lv_font_get_glyph_dsc_fmt_txt>
- - elem[41] = func[322] <lv_font_get_bitmap_fmt_txt>
- - elem[42] = func[846] <sn_write>
- - elem[43] = func[866] <fmt_fp>
- - elem[44] = func[867] <pop_arg_long_double>
- - elem[45] = func[900] <__emscripten_stdout_close>
- - elem[46] = func[888] <__stdio_write>
- - elem[47] = func[901] <__emscripten_stdout_seek>
-Code[920]:
- - func[8] size=6 <emscripten_get_sbrk_ptr>
- - func[9] size=2 <__wasm_call_ctors>
- - func[10] size=15 <_lv_indev_init>
- - func[11] size=864 <lv_indev_reset>
- - func[12] size=21 <lv_indev_get_act>
- - func[13] size=484 <lv_indev_is_dragging>
- - func[14] size=326 <lv_disp_get_scr_act>
- - func[15] size=327 <lv_disp_get_scr_prev>
- - func[16] size=327 <lv_disp_get_layer_top>
- - func[17] size=327 <lv_disp_get_layer_sys>
- - func[18] size=895 <lv_init>
- - func[19] size=251 <lv_color_hex>
- - func[20] size=335 <lv_color_make>
- - func[21] size=6640 <lv_obj_create>
- - func[22] size=3604 <lv_obj_design>
- - func[23] size=2383 <lv_obj_signal>
- - func[24] size=243 <lv_obj_get_base_dir>
- - func[25] size=128 <lv_area_copy>
- - func[26] size=239 <lv_obj_get_parent>
- - func[27] size=467 <lv_obj_get_x>
- - func[28] size=467 <lv_obj_get_y>
- - func[29] size=1518 <lv_obj_set_pos>
- - func[30] size=638 <lv_obj_invalidate>
- - func[31] size=381 <lv_obj_handle_get_type_signal>
- - func[32] size=355 <lv_obj_is_protected>
- - func[33] size=6545 <lv_obj_get_draw_rect_ext_pad_size>
- - func[34] size=666 <lv_obj_realign>
- - func[35] size=308 <lv_obj_refresh_ext_draw_pad>
- - func[36] size=444 <lv_obj_add_state>
- - func[37] size=459 <lv_obj_clear_state>
- - func[38] size=358 <lv_obj_get_focused_obj>
- - func[39] size=353 <lv_obj_clean_style_list>
- - func[40] size=230 <lv_obj_get_style_clip_corner>
- - func[41] size=190 <lv_obj_get_style_radius>
- - func[42] size=190 <lv_obj_get_style_transform_width>
- - func[43] size=190 <lv_obj_get_style_transform_height>
- - func[44] size=182 <lv_obj_get_style_bg_opa>
- - func[45] size=182 <lv_obj_get_style_bg_blend_mode>
- - func[46] size=182 <lv_obj_get_style_border_blend_mode>
- - func[47] size=184 <lv_obj_get_style_opa_scale>
- - func[48] size=230 <lv_obj_get_style_border_post>
- - func[49] size=5520 <lv_obj_init_draw_rect_dsc>
- - func[50] size=239 <_lv_memcpy_small>
- - func[51] size=265 <lv_obj_get_coords>
- - func[52] size=706 <refresh_children_position>
- - func[53] size=1472 <lv_obj_invalidate_area>
- - func[54] size=752 <lv_obj_del>
- - func[55] size=776 <lv_obj_get_disp>
- - func[56] size=1145 <obj_del_core>
- - func[57] size=344 <lv_obj_get_screen>
- - func[58] size=435 <lv_event_send>
- - func[59] size=945 <trans_del>
- - func[60] size=238 <lv_event_mark_deleted>
- - func[61] size=399 <lv_obj_get_child>
- - func[62] size=344 <lv_obj_get_hidden>
- - func[63] size=277 <lv_obj_get_width>
- - func[64] size=165 <lv_area_get_width>
- - func[65] size=317 <lv_obj_set_x>
- - func[66] size=317 <lv_obj_set_y>
- - func[67] size=1656 <lv_obj_set_size>
- - func[68] size=277 <lv_obj_get_height>
- - func[69] size=165 <lv_area_get_height>
- - func[70] size=732 <lv_obj_align_mid>
- - func[71] size=732 <lv_obj_align>
- - func[72] size=317 <lv_obj_set_height>
- - func[73] size=190 <lv_obj_get_style_pad_left>
- - func[74] size=190 <lv_obj_get_style_pad_right>
- - func[75] size=1039 <_lv_obj_get_style_int>
- - func[76] size=963 <obj_align_core>
- - func[77] size=5420 <obj_align_mid_core>
- - func[78] size=490 <lv_obj_add_style>
- - func[79] size=380 <lv_obj_get_style_list>
- - func[80] size=1158 <lv_obj_refresh_style>
- - func[81] size=386 <lv_signal_send>
- - func[82] size=327 <refresh_children_style>
- - func[83] size=174 <lv_obj_reset_style_list>
- - func[84] size=382 <lv_obj_report_style_mod>
- - func[85] size=857 <report_style_mod_core>
- - func[86] size=461 <lv_style_list_get_style>
- - func[87] size=305 <lv_obj_set_click>
- - func[88] size=2202 <lv_obj_set_state>
- - func[89] size=191 <lv_obj_get_style_transition_time>
- - func[90] size=191 <lv_obj_get_style_transition_delay>
- - func[91] size=167 <lv_obj_get_style_transition_path>
- - func[92] size=191 <lv_obj_get_style_transition_prop_1>
- - func[93] size=191 <lv_obj_get_style_transition_prop_2>
- - func[94] size=191 <lv_obj_get_style_transition_prop_3>
- - func[95] size=191 <lv_obj_get_style_transition_prop_4>
- - func[96] size=191 <lv_obj_get_style_transition_prop_5>
- - func[97] size=191 <lv_obj_get_style_transition_prop_6>
- - func[98] size=5744 <trans_create>
- - func[99] size=63 <lv_anim_set_var>
- - func[100] size=2598 <trans_anim_cb>
- - func[101] size=63 <lv_anim_set_exec_cb>
- - func[102] size=1022 <trans_anim_start_cb>
- - func[103] size=63 <lv_anim_set_start_cb>
- - func[104] size=838 <trans_anim_ready_cb>
- - func[105] size=63 <lv_anim_set_ready_cb>
- - func[106] size=143 <lv_anim_set_values>
- - func[107] size=63 <lv_anim_set_time>
- - func[108] size=78 <lv_anim_set_delay>
- - func[109] size=143 <lv_anim_set_path>
- - func[110] size=156 <lv_obj_get_focus_parent>
- - func[111] size=301 <lv_obj_add_protect>
- - func[112] size=364 <lv_obj_clear_protect>
- - func[113] size=930 <_lv_obj_get_style_ptr>
- - func[114] size=1116 <_lv_obj_get_style_color>
- - func[115] size=920 <_lv_obj_get_style_opa>
- - func[116] size=891 <lv_color_mix>
- - func[117] size=251 <lv_obj_set_event_cb>
- - func[118] size=1349 <lv_event_send_func>
- - func[119] size=251 <lv_obj_set_signal_cb>
- - func[120] size=251 <lv_obj_set_design_cb>
- - func[121] size=426 <lv_obj_allocate_ext_attr>
- - func[122] size=182 <lv_obj_get_style_border_side>
- - func[123] size=190 <lv_obj_get_style_border_width>
- - func[124] size=460 <lv_obj_get_width_fit>
- - func[125] size=345 <lv_obj_get_auto_realign>
- - func[126] size=450 <lv_obj_get_state>
- - func[127] size=239 <lv_obj_get_signal_cb>
- - func[128] size=239 <lv_obj_get_design_cb>
- - func[129] size=239 <lv_obj_get_ext_attr>
- - func[130] size=162 <lv_obj_get_style_bg_color>
- - func[131] size=182 <lv_obj_get_style_bg_grad_dir>
- - func[132] size=162 <lv_obj_get_style_bg_grad_color>
- - func[133] size=190 <lv_obj_get_style_bg_main_stop>
- - func[134] size=190 <lv_obj_get_style_bg_grad_stop>
- - func[135] size=182 <lv_obj_get_style_border_opa>
- - func[136] size=162 <lv_obj_get_style_border_color>
- - func[137] size=191 <lv_obj_get_style_outline_width>
- - func[138] size=183 <lv_obj_get_style_outline_opa>
- - func[139] size=191 <lv_obj_get_style_outline_pad>
- - func[140] size=163 <lv_obj_get_style_outline_color>
- - func[141] size=183 <lv_obj_get_style_outline_blend_mode>
- - func[142] size=167 <lv_obj_get_style_pattern_image>
- - func[143] size=183 <lv_obj_get_style_pattern_opa>
- - func[144] size=183 <lv_obj_get_style_pattern_recolor_opa>
- - func[145] size=231 <lv_obj_get_style_pattern_repeat>
- - func[146] size=163 <lv_obj_get_style_pattern_recolor>
- - func[147] size=168 <lv_obj_get_style_text_font>
- - func[148] size=183 <lv_obj_get_style_pattern_blend_mode>
- - func[149] size=167 <lv_obj_get_style_value_str>
- - func[150] size=183 <lv_obj_get_style_value_opa>
- - func[151] size=191 <lv_obj_get_style_value_ofs_x>
- - func[152] size=191 <lv_obj_get_style_value_ofs_y>
- - func[153] size=163 <lv_obj_get_style_value_color>
- - func[154] size=167 <lv_obj_get_style_value_font>
- - func[155] size=191 <lv_obj_get_style_value_letter_space>
- - func[156] size=191 <lv_obj_get_style_value_line_space>
- - func[157] size=183 <lv_obj_get_style_value_align>
- - func[158] size=183 <lv_obj_get_style_value_blend_mode>
- - func[159] size=1217 <lv_obj_init_draw_label_dsc>
- - func[160] size=184 <lv_obj_get_style_text_opa>
- - func[161] size=164 <lv_obj_get_style_text_color>
- - func[162] size=192 <lv_obj_get_style_text_letter_space>
- - func[163] size=192 <lv_obj_get_style_text_line_space>
- - func[164] size=184 <lv_obj_get_style_text_decor>
- - func[165] size=184 <lv_obj_get_style_text_blend_mode>
- - func[166] size=164 <lv_obj_get_style_text_sel_color>
- - func[167] size=191 <lv_obj_get_style_shadow_width>
- - func[168] size=183 <lv_obj_get_style_shadow_opa>
- - func[169] size=191 <lv_obj_get_style_shadow_spread>
- - func[170] size=191 <lv_obj_get_style_shadow_ofs_x>
- - func[171] size=191 <lv_obj_get_style_shadow_ofs_y>
- - func[172] size=3 <_lv_refr_init>
- - func[173] size=2932 <_lv_disp_refr_task>
- - func[174] size=1336 <lv_refr_join_area>
- - func[175] size=1229 <lv_refr_areas>
- - func[176] size=982 <lv_refr_vdb_flush>
- - func[177] size=165 <lv_area_get_width.1>
- - func[178] size=1652 <_lv_inv_area>
- - func[179] size=129 <lv_area_copy.1>
- - func[180] size=239 <_lv_memcpy_small.1>
- - func[181] size=21 <_lv_refr_get_disp_refreshing>
- - func[182] size=3038 <lv_refr_area>
- - func[183] size=2139 <lv_refr_area_part>
- - func[184] size=165 <lv_area_get_height.1>
- - func[185] size=990 <lv_refr_get_top_obj>
- - func[186] size=748 <lv_refr_obj_and_children>
- - func[187] size=1915 <lv_refr_obj>
- - func[188] size=136 <lv_style_init>
- - func[189] size=639 <lv_style_copy>
- - func[190] size=391 <lv_debug_check_style>
- - func[191] size=539 <_lv_style_get_mem_size>
- - func[192] size=175 <get_style_prop_id>
- - func[193] size=149 <get_next_prop_index>
- - func[194] size=1154 <lv_style_remove_prop>
- - func[195] size=1244 <get_property_index>
- - func[196] size=190 <get_style_prop_attr>
- - func[197] size=466 <get_prop_size>
- - func[198] size=149 <style_resize>
- - func[199] size=231 <get_style_prop>
- - func[200] size=136 <lv_style_list_init>
- - func[201] size=1970 <lv_style_list_copy>
- - func[202] size=391 <lv_debug_check_style_list>
- - func[203] size=989 <_lv_style_list_reset>
- - func[204] size=830 <get_alloc_local_style>
- - func[205] size=532 <lv_style_list_get_local_style>
- - func[206] size=264 <lv_style_reset>
- - func[207] size=393 <_lv_style_list_get_transition_style>
- - func[208] size=461 <lv_style_list_get_style.1>
- - func[209] size=1652 <_lv_style_list_add_style>
- - func[210] size=1881 <_lv_style_list_remove_style>
- - func[211] size=1659 <_lv_style_set_int>
- - func[212] size=239 <_lv_memcpy_small.2>
- - func[213] size=1598 <_lv_style_set_color>
- - func[214] size=1667 <_lv_style_set_opa>
- - func[215] size=1667 <_lv_style_set_ptr>
- - func[216] size=851 <_lv_style_get_int>
- - func[217] size=851 <_lv_style_get_opa>
- - func[218] size=720 <_lv_style_get_color>
- - func[219] size=720 <_lv_style_get_ptr>
- - func[220] size=972 <_lv_style_list_add_trans_style>
- - func[221] size=1636 <_lv_style_list_get_int>
- - func[222] size=1753 <_lv_style_list_get_color>
- - func[223] size=1645 <_lv_style_list_get_opa>
- - func[224] size=1629 <_lv_style_list_get_ptr>
- - func[225] size=520 <lv_disp_drv_init>
- - func[226] size=240 <lv_disp_buf_init>
- - func[227] size=1772 <lv_disp_drv_register>
- - func[228] size=393 <lv_disp_is_true_double_buf>
- - func[229] size=269 <lv_disp_is_double_buf>
- - func[230] size=452 <lv_disp_get_hor_res>
- - func[231] size=452 <lv_disp_get_ver_res>
- - func[232] size=21 <lv_disp_get_default>
- - func[233] size=347 <lv_disp_get_dpi>
- - func[234] size=636 <lv_disp_get_size_category>
- - func[235] size=87 <lv_disp_flush_ready>
- - func[236] size=222 <lv_disp_get_next>
- - func[237] size=51 <lv_disp_get_buf>
- - func[238] size=222 <lv_indev_get_next>
- - func[239] size=99 <lv_tick_inc>
- - func[240] size=178 <lv_tick_get>
- - func[241] size=294 <lv_tick_elaps>
- - func[242] size=1505 <lv_btn_create>
- - func[243] size=557 <lv_btn_design>
- - func[244] size=1059 <lv_btn_signal>
- - func[245] size=136 <lv_btn_set_layout>
- - func[246] size=354 <lv_btn_get_checkable>
- - func[247] size=696 <lv_btn_set_state>
- - func[248] size=2869 <lv_label_create>
- - func[249] size=2099 <lv_label_signal>
- - func[250] size=4497 <lv_label_design>
- - func[251] size=979 <lv_label_set_long_mode>
- - func[252] size=1536 <lv_label_set_text>
- - func[253] size=295 <lv_label_get_long_mode>
- - func[254] size=369 <lv_label_get_recolor>
- - func[255] size=497 <lv_label_set_recolor>
- - func[256] size=414 <lv_label_get_align>
- - func[257] size=490 <lv_label_set_align>
- - func[258] size=264 <lv_label_get_text>
- - func[259] size=570 <lv_label_set_text_static>
- - func[260] size=693 <lv_label_set_dot_tmp>
- - func[261] size=190 <lv_obj_get_style_transform_width.1>
- - func[262] size=190 <lv_obj_get_style_transform_height.1>
- - func[263] size=129 <lv_area_copy.2>
- - func[264] size=661 <get_txt_coords>
- - func[265] size=229 <lv_label_get_text_sel_start>
- - func[266] size=229 <lv_label_get_text_sel_end>
- - func[267] size=165 <lv_area_get_width.2>
- - func[268] size=165 <lv_area_get_height.2>
- - func[269] size=75 <lv_font_get_line_height>
- - func[270] size=114 <lv_label_get_style>
- - func[271] size=336 <lv_label_dot_tmp_free>
- - func[272] size=834 <lv_label_revert_dots>
- - func[273] size=9766 <lv_label_refr_text>
- - func[274] size=158 <lv_label_set_offset_y>
- - func[275] size=158 <lv_label_set_offset_x>
- - func[276] size=168 <lv_obj_get_style_text_font.1>
- - func[277] size=192 <lv_obj_get_style_text_line_space.1>
- - func[278] size=192 <lv_obj_get_style_text_letter_space.1>
- - func[279] size=190 <lv_obj_get_style_pad_left.1>
- - func[280] size=190 <lv_obj_get_style_pad_right.1>
- - func[281] size=190 <lv_obj_get_style_pad_top>
- - func[282] size=190 <lv_obj_get_style_pad_bottom>
- - func[283] size=63 <lv_anim_set_var.1>
- - func[284] size=63 <lv_anim_set_repeat_count>
- - func[285] size=80 <lv_anim_set_playback_delay>
- - func[286] size=80 <lv_anim_set_repeat_delay>
- - func[287] size=143 <lv_anim_set_values.1>
- - func[288] size=63 <lv_anim_set_exec_cb.1>
- - func[289] size=63 <lv_anim_set_time.1>
- - func[290] size=80 <lv_anim_set_playback_time>
- - func[291] size=4572 <lv_label_get_letter_on>
- - func[292] size=303 <lv_label_get_dot_tmp>
- - func[293] size=239 <_lv_memcpy_small.3>
- - func[294] size=1925 <lv_cont_create>
- - func[295] size=1472 <lv_cont_signal>
- - func[296] size=114 <lv_cont_get_style>
- - func[297] size=1193 <lv_cont_refr_layout>
- - func[298] size=7625 <lv_cont_refr_autofit>
- - func[299] size=165 <lv_area_get_width.3>
- - func[300] size=165 <lv_area_get_height.3>
- - func[301] size=514 <lv_cont_set_layout>
- - func[302] size=295 <lv_cont_get_layout>
- - func[303] size=1490 <lv_cont_layout_center>
- - func[304] size=1423 <lv_cont_layout_col>
- - func[305] size=1939 <lv_cont_layout_row>
- - func[306] size=5925 <lv_cont_layout_pretty>
- - func[307] size=1234 <lv_cont_layout_grid>
- - func[308] size=129 <lv_area_copy.3>
- - func[309] size=190 <lv_obj_get_style_pad_left.2>
- - func[310] size=190 <lv_obj_get_style_pad_right.2>
- - func[311] size=190 <lv_obj_get_style_pad_top.1>
- - func[312] size=190 <lv_obj_get_style_pad_bottom.1>
- - func[313] size=190 <lv_obj_get_style_margin_left>
- - func[314] size=190 <lv_obj_get_style_margin_right>
- - func[315] size=190 <lv_obj_get_style_margin_top>
- - func[316] size=190 <lv_obj_get_style_margin_bottom>
- - func[317] size=190 <lv_obj_get_style_pad_inner>
- - func[318] size=239 <_lv_memcpy_small.4>
- - func[319] size=146 <lv_font_get_glyph_bitmap>
- - func[320] size=197 <lv_font_get_glyph_dsc>
- - func[321] size=281 <lv_font_get_glyph_width>
- - func[322] size=1722 <lv_font_get_bitmap_fmt_txt>
- - func[323] size=3333 <get_glyph_dsc_id>
- - func[324] size=2225 <decompress>
- - func[325] size=119 <unicode_list_compare>
- - func[326] size=154 <rle_init>
- - func[327] size=321 <decompress_line>
- - func[328] size=796 <bits_write>
- - func[329] size=1217 <lv_font_get_glyph_dsc_fmt_txt>
- - func[330] size=1677 <get_kern_value>
- - func[331] size=366 <kern_pair_8_compare>
- - func[332] size=372 <kern_pair_16_compare>
- - func[333] size=110 <_lv_font_clean_up_fmt_txt>
- - func[334] size=1982 <rle_next>
- - func[335] size=901 <get_bits>
- - func[336] size=159 <lv_area_set>
- - func[337] size=153 <lv_area_set_height>
- - func[338] size=165 <lv_area_get_width.4>
- - func[339] size=165 <lv_area_get_height.4>
- - func[340] size=274 <lv_area_get_size>
- - func[341] size=1401 <_lv_area_intersect>
- - func[342] size=1041 <_lv_area_join>
- - func[343] size=3528 <_lv_area_is_point_on>
- - func[344] size=914 <lv_point_within_circle>
- - func[345] size=628 <_lv_area_is_on>
- - func[346] size=1533 <_lv_area_is_in>
- - func[347] size=4379 <_lv_area_align>
- - func[348] size=71 <_lv_task_core_init>
- - func[349] size=76 <lv_task_enable>
- - func[350] size=2697 <lv_task_handler>
- - func[351] size=512 <lv_task_exec>
- - func[352] size=265 <lv_task_time_remaining>
- - func[353] size=238 <lv_task_del>
- - func[354] size=1380 <lv_task_create_basic>
- - func[355] size=474 <lv_task_create>
- - func[356] size=63 <lv_task_set_cb>
- - func[357] size=63 <lv_task_set_period>
- - func[358] size=745 <lv_task_set_prio>
- - func[359] size=153 <lv_task_ready>
- - func[360] size=383 <lv_anim_path_linear>
- - func[361] size=141 <_lv_anim_core_init>
- - func[362] size=1676 <anim_task>
- - func[363] size=188 <anim_mark_list_change>
- - func[364] size=1212 <anim_ready_handler>
- - func[365] size=282 <lv_anim_init>
- - func[366] size=239 <_lv_memcpy_small.5>
- - func[367] size=980 <lv_anim_start>
- - func[368] size=526 <lv_anim_del>
- - func[369] size=404 <lv_anim_get>
- - func[370] size=581 <lv_anim_speed_to_time>
- - func[371] size=195 <_lv_mem_init>
- - func[372] size=1120 <_lv_memset_00>
- - func[373] size=853 <lv_mem_alloc>
- - func[374] size=341 <ent_get_next>
- - func[375] size=353 <ent_alloc>
- - func[376] size=657 <ent_trunc>
- - func[377] size=776 <lv_mem_free>
- - func[378] size=715 <lv_mem_defrag>
- - func[379] size=943 <lv_mem_realloc>
- - func[380] size=272 <_lv_mem_get_size>
- - func[381] size=5863 <_lv_memcpy>
- - func[382] size=1392 <_lv_memset>
- - func[383] size=2995 <_lv_mem_buf_get>
- - func[384] size=818 <_lv_mem_buf_release>
- - func[385] size=778 <_lv_mem_buf_free_all>
- - func[386] size=1122 <_lv_memset_ff>
- - func[387] size=147 <_lv_ll_init>
- - func[388] size=510 <_lv_ll_ins_head>
- - func[389] size=246 <node_set_prev>
- - func[390] size=261 <node_set_next>
- - func[391] size=735 <_lv_ll_ins_prev>
- - func[392] size=133 <_lv_ll_get_head>
- - func[393] size=210 <_lv_ll_get_prev>
- - func[394] size=510 <_lv_ll_ins_tail>
- - func[395] size=755 <_lv_ll_remove>
- - func[396] size=225 <_lv_ll_get_next>
- - func[397] size=133 <_lv_ll_get_tail>
- - func[398] size=692 <_lv_ll_move_before>
- - func[399] size=340 <_lv_ll_is_empty>
- - func[400] size=944 <lv_color_fill>
- - func[401] size=313 <lv_color_lighten>
- - func[402] size=891 <lv_color_mix.1>
- - func[403] size=317 <lv_color_darken>
- - func[404] size=1265 <lv_color_hsv_to_rgb>
- - func[405] size=335 <lv_color_make.1>
- - func[406] size=526 <lv_txt_utf8_size>
- - func[407] size=3579 <lv_txt_utf8_next>
- - func[408] size=611 <lv_txt_utf8_prev>
- - func[409] size=439 <lv_txt_utf8_get_byte_id>
- - func[410] size=282 <lv_txt_utf8_get_char_id>
- - func[411] size=281 <lv_txt_utf8_get_length>
- - func[412] size=2181 <_lv_txt_get_size>
- - func[413] size=75 <lv_font_get_line_height.1>
- - func[414] size=2341 <_lv_txt_get_next_line>
- - func[415] size=1151 <_lv_txt_get_width>
- - func[416] size=3241 <lv_txt_get_next_word>
- - func[417] size=653 <_lv_txt_is_cmd>
- - func[418] size=309 <is_break_char>
- - func[419] size=1307 <_lv_trigo_sin>
- - func[420] size=361 <_lv_sqrt>
- - func[421] size=969 <_lv_log_add>
- - func[422] size=628 <_lv_utils_bsearch>
- - func[423] size=157 <_out_buffer>
- - func[424] size=10200 <_vsnprintf>
- - func[425] size=52 <_out_null>
- - func[426] size=213 <_is_digit>
- - func[427] size=330 <_atoi>
- - func[428] size=1057 <_ntoa_long_long>
- - func[429] size=917 <_ntoa_long>
- - func[430] size=272 <_strnlen_s>
- - func[431] size=170 <lv_vsnprintf>
- - func[432] size=2530 <_ntoa_format>
- - func[433] size=837 <_out_rev>
- - func[434] size=177 <lv_debug_check_null>
- - func[435] size=1069 <lv_debug_log_error>
- - func[436] size=55 <lv_theme_set_act>
- - func[437] size=164 <lv_theme_apply>
- - func[438] size=3981 <clear_styles>
- - func[439] size=465 <apply_theme>
- - func[440] size=31 <lv_theme_get_font_normal>
- - func[441] size=559 <lv_theme_material_init>
- - func[442] size=10379 <theme_apply>
- - func[443] size=28762 <basic_init>
- - func[444] size=3 <cont_init>
- - func[445] size=3 <btn_init>
- - func[446] size=3 <label_init>
- - func[447] size=2879 <bar_init>
- - func[448] size=3 <img_init>
- - func[449] size=3 <line_init>
- - func[450] size=1597 <led_init>
- - func[451] size=4274 <slider_init>
- - func[452] size=2027 <switch_init>
- - func[453] size=3358 <linemeter_init>
- - func[454] size=7818 <gauge_init>
- - func[455] size=1343 <arc_init>
- - func[456] size=3 <spinner_init>
- - func[457] size=3547 <chart_init>
- - func[458] size=11655 <calendar_init>
- - func[459] size=3755 <cpicker_init>
- - func[460] size=4890 <checkbox_init>
- - func[461] size=3 <btnmatrix_init>
- - func[462] size=3230 <keyboard_init>
- - func[463] size=812 <msgbox_init>
- - func[464] size=1933 <page_init>
- - func[465] size=1484 <textarea_init>
- - func[466] size=1107 <spinbox_init>
- - func[467] size=12249 <list_init>
- - func[468] size=1427 <ddlist_init>
- - func[469] size=782 <roller_init>
- - func[470] size=3 <tabview_init>
- - func[471] size=3 <tileview_init>
- - func[472] size=3722 <table_init>
- - func[473] size=3 <win_init>
- - func[474] size=9703 <tabview_win_shared_init>
- - func[475] size=161 <style_init_reset>
- - func[476] size=217 <lv_style_set_bg_opa>
- - func[477] size=252 <lv_color_hex.1>
- - func[478] size=230 <lv_style_set_bg_color>
- - func[479] size=232 <lv_style_set_text_color>
- - func[480] size=231 <lv_style_set_value_color>
- - func[481] size=203 <lv_style_set_text_font>
- - func[482] size=202 <lv_style_set_value_font>
- - func[483] size=225 <lv_style_set_radius>
- - func[484] size=230 <lv_style_set_border_color>
- - func[485] size=225 <lv_style_set_border_width>
- - func[486] size=246 <lv_style_set_border_post>
- - func[487] size=232 <lv_style_set_image_recolor>
- - func[488] size=231 <lv_style_set_line_color>
- - func[489] size=226 <lv_style_set_line_width>
- - func[490] size=225 <lv_style_set_pad_left>
- - func[491] size=225 <lv_style_set_pad_right>
- - func[492] size=225 <lv_style_set_pad_top>
- - func[493] size=225 <lv_style_set_pad_bottom>
- - func[494] size=225 <lv_style_set_pad_inner>
- - func[495] size=226 <lv_style_set_transition_time>
- - func[496] size=226 <lv_style_set_transition_prop_6>
- - func[497] size=381 <lv_color_hex3>
- - func[498] size=226 <lv_style_set_transition_prop_5>
- - func[499] size=891 <lv_color_mix.2>
- - func[500] size=217 <lv_style_set_border_opa>
- - func[501] size=226 <lv_style_set_outline_width>
- - func[502] size=218 <lv_style_set_outline_opa>
- - func[503] size=231 <lv_style_set_outline_color>
- - func[504] size=226 <lv_style_set_transition_prop_4>
- - func[505] size=226 <lv_style_set_transition_delay>
- - func[506] size=226 <lv_style_set_shadow_width>
- - func[507] size=231 <lv_style_set_shadow_color>
- - func[508] size=226 <lv_style_set_shadow_spread>
- - func[509] size=225 <lv_style_set_margin_left>
- - func[510] size=225 <lv_style_set_margin_right>
- - func[511] size=225 <lv_style_set_margin_top>
- - func[512] size=225 <lv_style_set_margin_bottom>
- - func[513] size=226 <lv_style_set_scale_width>
- - func[514] size=231 <lv_style_set_scale_grad_color>
- - func[515] size=231 <lv_style_set_scale_end_color>
- - func[516] size=226 <lv_style_set_scale_end_line_width>
- - func[517] size=226 <lv_style_set_scale_end_border_width>
- - func[518] size=225 <lv_style_set_size>
- - func[519] size=247 <lv_style_set_line_rounded>
- - func[520] size=226 <lv_style_set_line_dash_width>
- - func[521] size=226 <lv_style_set_line_dash_gap>
- - func[522] size=241 <lv_style_set_border_side>
- - func[523] size=226 <lv_style_set_outline_pad>
- - func[524] size=202 <lv_style_set_pattern_image>
- - func[525] size=231 <lv_style_set_pattern_recolor>
- - func[526] size=246 <lv_style_set_clip_corner>
- - func[527] size=225 <lv_style_set_transform_width>
- - func[528] size=227 <lv_style_set_text_line_space>
- - func[529] size=335 <lv_color_make.2>
- - func[530] size=694 <lv_draw_mask_add>
- - func[531] size=670 <lv_draw_mask_apply>
- - func[532] size=353 <lv_draw_mask_remove_id>
- - func[533] size=491 <lv_draw_mask_remove_custom>
- - func[534] size=331 <lv_draw_mask_get_cnt>
- - func[535] size=3445 <lv_draw_mask_line_points_init>
- - func[536] size=3538 <lv_draw_mask_line>
- - func[537] size=5245 <line_mask_flat>
- - func[538] size=7691 <line_mask_steep>
- - func[539] size=783 <lv_draw_mask_radius_init>
- - func[540] size=165 <lv_area_get_width.5>
- - func[541] size=165 <lv_area_get_height.5>
- - func[542] size=13413 <lv_draw_mask_radius>
- - func[543] size=129 <lv_area_copy.4>
- - func[544] size=239 <_lv_memcpy_small.6>
- - func[545] size=350 <mask_mix>
- - func[546] size=422 <sqrt_approx>
- - func[547] size=1958 <_lv_blend_fill>
- - func[548] size=165 <lv_area_get_width.6>
- - func[549] size=2031 <fill_set_px>
- - func[550] size=9542 <fill_normal>
- - func[551] size=3597 <fill_blended>
- - func[552] size=165 <lv_area_get_height.6>
- - func[553] size=891 <lv_color_mix.3>
- - func[554] size=287 <lv_color_premult>
- - func[555] size=750 <lv_color_mix_premult>
- - func[556] size=1289 <color_blend_true_color_additive>
- - func[557] size=1289 <color_blend_true_color_subtractive>
- - func[558] size=1916 <_lv_blend_map>
- - func[559] size=2936 <map_set_px>
- - func[560] size=9728 <map_normal>
- - func[561] size=3317 <map_blended>
- - func[562] size=1129 <lv_draw_rect_dsc_init>
- - func[563] size=470 <lv_draw_rect>
- - func[564] size=165 <lv_area_get_height.7>
- - func[565] size=165 <lv_area_get_width.7>
- - func[566] size=10649 <draw_bg>
- - func[567] size=4914 <draw_pattern>
- - func[568] size=6962 <draw_border>
- - func[569] size=1483 <draw_value_str>
- - func[570] size=1475 <draw_outline>
- - func[571] size=129 <lv_area_copy.5>
- - func[572] size=1024 <grad_get>
- - func[573] size=9193 <draw_full_border>
- - func[574] size=239 <_lv_memcpy_small.7>
- - func[575] size=891 <lv_color_mix.4>
- - func[576] size=528 <lv_draw_label_dsc_init>
- - func[577] size=11639 <lv_draw_label>
- - func[578] size=165 <lv_area_get_width.8>
- - func[579] size=75 <lv_font_get_line_height.2>
- - func[580] size=239 <_lv_memcpy_small.8>
- - func[581] size=608 <hex_char_to_num>
- - func[582] size=335 <lv_color_make.3>
- - func[583] size=2469 <lv_draw_letter>
- - func[584] size=7493 <draw_letter_subpx>
- - func[585] size=5803 <draw_letter_normal>
- - func[586] size=332 <lv_draw_line_dsc_init>
- - func[587] size=4052 <lv_draw_line>
- - func[588] size=4832 <draw_line_hor>
- - func[589] size=4264 <draw_line_ver>
- - func[590] size=9430 <draw_line_skew>
- - func[591] size=165 <lv_area_get_width.9>
- - func[592] size=352 <lv_draw_img_dsc_init>
- - func[593] size=524 <lv_draw_img>
- - func[594] size=446 <show_error>
- - func[595] size=3643 <lv_img_draw_core>
- - func[596] size=169 <lv_img_cf_is_chroma_keyed>
- - func[597] size=188 <lv_img_cf_has_alpha>
- - func[598] size=129 <lv_area_copy.6>
- - func[599] size=165 <lv_area_get_width.10>
- - func[600] size=165 <lv_area_get_height.8>
- - func[601] size=10753 <lv_draw_map>
- - func[602] size=257 <lv_img_cf_get_px_size>
- - func[603] size=670 <lv_img_src_get_type>
- - func[604] size=239 <_lv_memcpy_small.9>
- - func[605] size=287 <lv_color_premult.1>
- - func[606] size=4202 <_lv_img_buf_transform>
- - func[607] size=750 <lv_color_mix_premult.1>
- - func[608] size=454 <_lv_img_decoder_init>
- - func[609] size=362 <lv_img_decoder_create>
- - func[610] size=397 <lv_img_decoder_built_in_close>
- - func[611] size=1792 <lv_img_decoder_built_in_read_line>
- - func[612] size=3922 <lv_img_decoder_built_in_open>
- - func[613] size=1081 <lv_img_decoder_built_in_info>
- - func[614] size=63 <lv_img_decoder_set_info_cb>
- - func[615] size=63 <lv_img_decoder_set_open_cb>
- - func[616] size=63 <lv_img_decoder_set_read_line_cb>
- - func[617] size=63 <lv_img_decoder_set_close_cb>
- - func[618] size=335 <lv_color_make.4>
- - func[619] size=195 <lv_img_decoder_built_in_line_true_color>
- - func[620] size=4166 <lv_img_decoder_built_in_line_alpha>
- - func[621] size=3717 <lv_img_decoder_built_in_line_indexed>
- - func[622] size=652 <lv_img_decoder_get_info>
- - func[623] size=1074 <lv_img_decoder_open>
- - func[624] size=423 <lv_img_decoder_read_line>
- - func[625] size=425 <lv_img_decoder_close>
- - func[626] size=3035 <_lv_img_cache_open>
- - func[627] size=829 <lv_img_cache_set_size>
- - func[628] size=772 <lv_img_cache_invalidate_src>
- - func[629] size=3589 <lv_img_buf_get_px_color>
- - func[630] size=239 <_lv_memcpy_small.10>
- - func[631] size=2961 <lv_img_buf_get_px_alpha>
- - func[632] size=2137 <_lv_img_buf_transform_init>
- - func[633] size=8099 <_lv_img_buf_get_transformed_area>
- - func[634] size=8107 <_lv_img_buf_transform_anti_alias>
- - func[635] size=891 <lv_color_mix.5>
- - func[636] size=212 <lv_port_disp_init>
- - func[637] size=1025 <disp_flush>
- - func[638] size=3 <disp_init>
- - func[639] size=323 <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
- - func[640] size=113 <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
- - func[641] size=113 <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
- - func[642] size=2475 <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
- - func[643] size=171 <event_handler(_lv_obj_t*, unsigned char)>
- - func[644] size=78 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
- - func[645] size=99 <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
- - func[646] size=113 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
- - func[647] size=162 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
- - func[648] size=78 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
- - func[649] size=20 <lv_scr_act()>
- - func[650] size=149 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
- - func[651] size=204 <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
- - func[652] size=5095 <Pinetime::Applications::Screens::Clock::Refresh()>
- - func[653] size=51 <Pinetime::Controllers::Battery::PercentRemaining() const>
- - func[654] size=190 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
- - func[655] size=66 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
- - func[656] size=55 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
- - func[657] size=66 <Pinetime::Controllers::Battery::IsCharging() const>
- - func[658] size=66 <Pinetime::Controllers::Battery::IsPowerPresent() const>
- - func[659] size=66 <Pinetime::Controllers::Ble::IsConnected() const>
- - func[660] size=203 <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
- - func[661] size=66 <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
- - func[662] size=55 <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
- - func[663] size=103 <Pinetime::Controllers::DateTime::CurrentDateTime() const>
- - func[664] size=187 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[665] size=66 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
- - func[666] size=55 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
- - func[667] size=211 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[668] size=201 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[669] size=136 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[670] size=196 <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
- - func[671] size=88 <date::year_month_day::year() const>
- - func[672] size=75 <date::year::operator int() const>
- - func[673] size=103 <date::year_month_day::month() const>
- - func[674] size=67 <date::month::operator unsigned int() const>
- - func[675] size=103 <date::year_month_day::day() const>
- - func[676] size=67 <date::day::operator unsigned int() const>
- - func[677] size=159 <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
- - func[678] size=162 <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[679] size=126 <date::weekday::iso_encoding() const>
- - func[680] size=88 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
- - func[681] size=51 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
- - func[682] size=103 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
- - func[683] size=51 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
- - func[684] size=139 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[685] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
- - func[686] size=105 <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
- - func[687] size=105 <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
- - func[688] size=66 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
- - func[689] size=55 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
- - func[690] size=156 <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[691] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
- - func[692] size=361 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[693] size=74 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[694] size=621 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[695] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
- - func[696] size=284 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[697] size=1100 <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
- - func[698] size=888 <date::year_month_day::to_days() const>
- - func[699] size=51 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
- - func[700] size=208 <date::weekday::weekday_from_days(int)>
- - func[701] size=88 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[702] size=11 <std::__2::chrono::duration_values<long long>::zero()>
- - func[703] size=81 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[704] size=228 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[705] size=141 <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[706] size=81 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[707] size=275 <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[708] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[709] size=42 <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
- - func[710] size=149 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[711] size=217 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[712] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
- - func[713] size=235 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[714] size=175 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
- - func[715] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[716] size=223 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[717] size=268 <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[718] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[719] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[720] size=269 <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[721] size=284 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[722] size=284 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[723] size=287 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[724] size=149 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[725] size=217 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[726] size=156 <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[727] size=88 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
- - func[728] size=197 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
- - func[729] size=160 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[730] size=81 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[731] size=216 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[732] size=175 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[733] size=175 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[734] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[735] size=284 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[736] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[737] size=176 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[738] size=81 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[739] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[740] size=224 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[741] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[742] size=222 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
- - func[743] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[744] size=223 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[745] size=208 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[746] size=175 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[747] size=189 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[748] size=81 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[749] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[750] size=208 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[751] size=65 <date::year::year(int)>
- - func[752] size=65 <date::month::month(unsigned int)>
- - func[753] size=65 <date::day::day(unsigned int)>
- - func[754] size=168 <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
- - func[755] size=156 <date::operator<=(date::month const&, date::month const&)>
- - func[756] size=169 <date::operator<(date::month const&, date::month const&)>
- - func[757] size=215 <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[758] size=149 <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[759] size=176 <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[760] size=717 <create_clock>
- - func[761] size=247 <Pinetime::Controllers::DateTime::DateTime()>
- - func[762] size=89 <Pinetime::Controllers::Battery::Battery()>
- - func[763] size=89 <Pinetime::Controllers::Ble::Ble()>
- - func[764] size=94 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[765] size=155 <refresh_clock>
- - func[766] size=463 <update_clock>
- - func[767] size=578 <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
- - func[768] size=175 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
- - func[769] size=1336 <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
- - func[770] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
- - func[771] size=175 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[772] size=94 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
- - func[773] size=123 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[774] size=149 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[775] size=149 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[776] size=132 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[777] size=205 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
- - func[778] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
- - func[779] size=268 <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
- - func[780] size=247 <Pinetime::Components::LittleVgl::InitTheme()>
- - func[781] size=3979 <Pinetime::Components::LittleVgl::InitBaseTheme()>
- - func[782] size=31 <Pinetime::Components::LittleVgl::InitThemeContainer()>
- - func[783] size=4730 <Pinetime::Components::LittleVgl::InitThemeButton()>
- - func[784] size=971 <Pinetime::Components::LittleVgl::InitThemeLabel()>
- - func[785] size=31 <Pinetime::Components::LittleVgl::InitThemeLine()>
- - func[786] size=157 <Pinetime::Components::LittleVgl::InitThemeLed()>
- - func[787] size=31 <Pinetime::Components::LittleVgl::InitThemeImage()>
- - func[788] size=217 <Pinetime::Components::LittleVgl::InitThemeBar()>
- - func[789] size=139 <Pinetime::Components::LittleVgl::InitThemeSlider()>
- - func[790] size=31 <Pinetime::Components::LittleVgl::InitThemeSwitch()>
- - func[791] size=133 <Pinetime::Components::LittleVgl::InitThemeMeter()>
- - func[792] size=133 <Pinetime::Components::LittleVgl::InitThemeGauge()>
- - func[793] size=157 <Pinetime::Components::LittleVgl::InitThemeArc()>
- - func[794] size=31 <Pinetime::Components::LittleVgl::InitThemePreload()>
- - func[795] size=31 <Pinetime::Components::LittleVgl::InitThemeChart()>
- - func[796] size=457 <Pinetime::Components::LittleVgl::InitThemeCalendar()>
- - func[797] size=397 <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
- - func[798] size=223 <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
- - func[799] size=31 <Pinetime::Components::LittleVgl::InitThemeKnob()>
- - func[800] size=157 <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
- - func[801] size=157 <Pinetime::Components::LittleVgl::InitThemePage()>
- - func[802] size=31 <Pinetime::Components::LittleVgl::InitThemeTextArea()>
- - func[803] size=31 <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
- - func[804] size=358 <Pinetime::Components::LittleVgl::InitThemeList()>
- - func[805] size=139 <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
- - func[806] size=99 <Pinetime::Components::LittleVgl::InitThemeRoller()>
- - func[807] size=31 <Pinetime::Components::LittleVgl::InitThemeTabView()>
- - func[808] size=31 <Pinetime::Components::LittleVgl::InitThemeTileView()>
- - func[809] size=157 <Pinetime::Components::LittleVgl::InitThemeTable()>
- - func[810] size=31 <Pinetime::Components::LittleVgl::InitThemeWindow()>
- - func[811] size=203 <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
- - func[812] size=267 <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[813] size=267 <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[814] size=269 <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[815] size=269 <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
- - func[816] size=225 <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
- - func[817] size=225 <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
- - func[818] size=225 <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
- - func[819] size=225 <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
- - func[820] size=225 <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
- - func[821] size=225 <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
- - func[822] size=225 <lv_style_set_radius(lv_style_t*, unsigned char, short)>
- - func[823] size=267 <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[824] size=217 <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
- - func[825] size=268 <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[826] size=226 <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
- - func[827] size=381 <lv_color_hex3(unsigned int)>
- - func[828] size=268 <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[829] size=226 <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
- - func[830] size=335 <lv_color_make(unsigned char, unsigned char, unsigned char)>
- - func[831] size=899 <put_display_px>
- - func[832] size=50 <get_display_buffer>
- - func[833] size=12 <get_display_width>
- - func[834] size=12 <get_display_height>
- - func[835] size=812 <test_display>
- - func[836] size=22 <init_display>
- - func[837] size=326 <render_widgets>
- - func[838] size=20 <lv_scr_act>
- - func[839] size=33 <render_display>
- - func[840] size=124 <main>
- - func[841] size=205 <__stpcpy>
- - func[842] size=12 <strcpy>
- - func[843] size=91 <strcmp>
- - func[844] size=6 <__errno_location>
- - func[845] size=224 <vsnprintf>
- - func[846] size=52 <sn_write>
- - func[847] size=17 <vsprintf>
- - func[848] size=74 <sprintf>
- - func[849] size=10 <isdigit>
- - func[850] size=233 <memchr>
- - func[851] size=6 <pthread_self>
- - func[852] size=292 <wcrtomb>
- - func[853] size=5 <__pthread_self>
- - func[854] size=21 <wctomb>
- - func[855] size=143 <frexp>
- - func[856] size=436 <__vfprintf_internal>
- - func[857] size=2416 <printf_core>
- - func[858] size=25 <out>
- - func[859] size=79 <getint>
- - func[860] size=315 <pop_arg>
- - func[861] size=54 <fmt_x>
- - func[862] size=46 <fmt_o>
- - func[863] size=140 <fmt_u>
- - func[864] size=149 <pad>
- - func[865] size=15 <vfprintf>
- - func[866] size=3194 <fmt_fp>
- - func[867] size=43 <pop_arg_long_double>
- - func[868] size=5 <__DOUBLE_BITS>
- - func[869] size=83 <__ashlti3>
- - func[870] size=83 <__lshrti3>
- - func[871] size=528 <__trunctfdf2>
- - func[872] size=14 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[873] size=14 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[874] size=79 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[875] size=14 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[876] size=100 <std::__2::chrono::system_clock::from_time_t(long)>
- - func[877] size=70 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[878] size=90 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[879] size=51 <operator new(unsigned long)>
- - func[880] size=6 <_get_tzname>
- - func[881] size=6 <_get_daylight>
- - func[882] size=6 <_get_timezone>
- - func[883] size=2 <__lock>
- - func[884] size=2 <__unlock>
- - func[885] size=13 <__ofl_lock>
- - func[886] size=9 <__ofl_unlock>
- - func[887] size=22 <__wasi_syscall_ret>
- - func[888] size=397 <__stdio_write>
- - func[889] size=7 <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
- - func[890] size=9 <std::get_new_handler()>
- - func[891] size=6340 <dlmalloc>
- - func[892] size=1825 <dlfree>
- - func[893] size=90 <sbrk>
- - func[894] size=534 <memcpy>
- - func[895] size=375 <memset>
- - func[896] size=92 <__towrite>
- - func[897] size=183 <__overflow>
- - func[898] size=203 <__fwritex>
- - func[899] size=93 <fwrite>
- - func[900] size=4 <__emscripten_stdout_close>
- - func[901] size=4 <__emscripten_stdout_seek>
- - func[902] size=78 <printf>
- - func[903] size=30 <fputs>
- - func[904] size=138 <puts>
- - func[905] size=4 <__lockfile>
- - func[906] size=2 <__unlockfile>
- - func[907] size=160 <strlen>
- - func[908] size=4 <stackSave>
- - func[909] size=20 <stackRestore>
- - func[910] size=37 <stackAlloc>
- - func[911] size=184 <fflush>
- - func[912] size=109 <__fflush_unlocked>
- - func[913] size=6 <__set_stack_limit>
- - func[914] size=13 <dynCall_iiii>
- - func[915] size=11 <dynCall_vii>
- - func[916] size=9 <dynCall_vi>
- - func[917] size=11 <dynCall_iii>
- - func[918] size=9 <dynCall_ii>
- - func[919] size=15 <dynCall_viiii>
- - func[920] size=13 <dynCall_viii>
- - func[921] size=17 <dynCall_iiiiii>
- - func[922] size=19 <dynCall_iiiiiii>
- - func[923] size=15 <dynCall_iiiii>
- - func[924] size=19 <dynCall_iidiiii>
- - func[925] size=13 <dynCall_jiji>
- - func[926] size=36 <legalstub$dynCall_jiji>
- - func[927] size=6 <__growWasmMemory>
+ - elem[1] = func[20] <lv_obj_design>
+ - elem[2] = func[21] <lv_obj_signal>
+ - elem[3] = func[98] <trans_anim_cb>
+ - elem[4] = func[100] <trans_anim_start_cb>
+ - elem[5] = func[102] <trans_anim_ready_cb>
+ - elem[6] = func[171] <_lv_disp_refr_task>
+ - elem[7] = func[241] <lv_btn_design>
+ - elem[8] = func[242] <lv_btn_signal>
+ - elem[9] = func[247] <lv_label_signal>
+ - elem[10] = func[248] <lv_label_design>
+ - elem[11] = func[272] <lv_label_set_offset_y>
+ - elem[12] = func[273] <lv_label_set_offset_x>
+ - elem[13] = func[64] <lv_obj_set_y>
+ - elem[14] = func[63] <lv_obj_set_x>
+ - elem[15] = func[293] <lv_cont_signal>
+ - elem[16] = func[323] <unicode_list_compare>
+ - elem[17] = func[329] <kern_pair_8_compare>
+ - elem[18] = func[330] <kern_pair_16_compare>
+ - elem[19] = func[360] <anim_task>
+ - elem[20] = func[358] <lv_anim_path_linear>
+ - elem[21] = func[404] <lv_txt_utf8_size>
+ - elem[22] = func[405] <lv_txt_utf8_next>
+ - elem[23] = func[406] <lv_txt_utf8_prev>
+ - elem[24] = func[407] <lv_txt_utf8_get_byte_id>
+ - elem[25] = func[408] <lv_txt_utf8_get_char_id>
+ - elem[26] = func[409] <lv_txt_utf8_get_length>
+ - elem[27] = func[423] <_out_null>
+ - elem[28] = func[421] <_out_buffer>
+ - elem[29] = func[440] <theme_apply>
+ - elem[30] = func[534] <lv_draw_mask_line>
+ - elem[31] = func[540] <lv_draw_mask_radius>
+ - elem[32] = func[554] <color_blend_true_color_additive>
+ - elem[33] = func[555] <color_blend_true_color_subtractive>
+ - elem[34] = func[608] <lv_img_decoder_built_in_close>
+ - elem[35] = func[609] <lv_img_decoder_built_in_read_line>
+ - elem[36] = func[610] <lv_img_decoder_built_in_open>
+ - elem[37] = func[611] <lv_img_decoder_built_in_info>
+ - elem[38] = func[635] <disp_flush>
+ - elem[39] = func[641] <event_handler(_lv_obj_t*, unsigned char)>
+ - elem[40] = func[327] <lv_font_get_glyph_dsc_fmt_txt>
+ - elem[41] = func[320] <lv_font_get_bitmap_fmt_txt>
+ - elem[42] = func[844] <sn_write>
+ - elem[43] = func[864] <fmt_fp>
+ - elem[44] = func[865] <pop_arg_long_double>
+ - elem[45] = func[898] <__emscripten_stdout_close>
+ - elem[46] = func[886] <__stdio_write>
+ - elem[47] = func[899] <__emscripten_stdout_seek>
+Code[907]:
+ - func[7] size=2 <__wasm_call_ctors>
+ - func[8] size=15 <_lv_indev_init>
+ - func[9] size=829 <lv_indev_reset>
+ - func[10] size=21 <lv_indev_get_act>
+ - func[11] size=484 <lv_indev_is_dragging>
+ - func[12] size=292 <lv_disp_get_scr_act>
+ - func[13] size=293 <lv_disp_get_scr_prev>
+ - func[14] size=293 <lv_disp_get_layer_top>
+ - func[15] size=293 <lv_disp_get_layer_sys>
+ - func[16] size=861 <lv_init>
+ - func[17] size=217 <lv_color_hex>
+ - func[18] size=335 <lv_color_make>
+ - func[19] size=6599 <lv_obj_create>
+ - func[20] size=3566 <lv_obj_design>
+ - func[21] size=2345 <lv_obj_signal>
+ - func[22] size=208 <lv_obj_get_base_dir>
+ - func[23] size=94 <lv_area_copy>
+ - func[24] size=204 <lv_obj_get_parent>
+ - func[25] size=432 <lv_obj_get_x>
+ - func[26] size=432 <lv_obj_get_y>
+ - func[27] size=1479 <lv_obj_set_pos>
+ - func[28] size=603 <lv_obj_invalidate>
+ - func[29] size=380 <lv_obj_handle_get_type_signal>
+ - func[30] size=320 <lv_obj_is_protected>
+ - func[31] size=6507 <lv_obj_get_draw_rect_ext_pad_size>
+ - func[32] size=631 <lv_obj_realign>
+ - func[33] size=273 <lv_obj_refresh_ext_draw_pad>
+ - func[34] size=409 <lv_obj_add_state>
+ - func[35] size=424 <lv_obj_clear_state>
+ - func[36] size=324 <lv_obj_get_focused_obj>
+ - func[37] size=319 <lv_obj_clean_style_list>
+ - func[38] size=196 <lv_obj_get_style_clip_corner>
+ - func[39] size=156 <lv_obj_get_style_radius>
+ - func[40] size=156 <lv_obj_get_style_transform_width>
+ - func[41] size=156 <lv_obj_get_style_transform_height>
+ - func[42] size=148 <lv_obj_get_style_bg_opa>
+ - func[43] size=148 <lv_obj_get_style_bg_blend_mode>
+ - func[44] size=148 <lv_obj_get_style_border_blend_mode>
+ - func[45] size=150 <lv_obj_get_style_opa_scale>
+ - func[46] size=196 <lv_obj_get_style_border_post>
+ - func[47] size=5482 <lv_obj_init_draw_rect_dsc>
+ - func[48] size=238 <_lv_memcpy_small>
+ - func[49] size=230 <lv_obj_get_coords>
+ - func[50] size=671 <refresh_children_position>
+ - func[51] size=1432 <lv_obj_invalidate_area>
+ - func[52] size=717 <lv_obj_del>
+ - func[53] size=739 <lv_obj_get_disp>
+ - func[54] size=1109 <obj_del_core>
+ - func[55] size=309 <lv_obj_get_screen>
+ - func[56] size=400 <lv_event_send>
+ - func[57] size=910 <trans_del>
+ - func[58] size=237 <lv_event_mark_deleted>
+ - func[59] size=364 <lv_obj_get_child>
+ - func[60] size=309 <lv_obj_get_hidden>
+ - func[61] size=242 <lv_obj_get_width>
+ - func[62] size=165 <lv_area_get_width>
+ - func[63] size=282 <lv_obj_set_x>
+ - func[64] size=282 <lv_obj_set_y>
+ - func[65] size=1616 <lv_obj_set_size>
+ - func[66] size=242 <lv_obj_get_height>
+ - func[67] size=165 <lv_area_get_height>
+ - func[68] size=696 <lv_obj_align_mid>
+ - func[69] size=696 <lv_obj_align>
+ - func[70] size=282 <lv_obj_set_height>
+ - func[71] size=156 <lv_obj_get_style_pad_left>
+ - func[72] size=156 <lv_obj_get_style_pad_right>
+ - func[73] size=1004 <_lv_obj_get_style_int>
+ - func[74] size=929 <obj_align_core>
+ - func[75] size=5382 <obj_align_mid_core>
+ - func[76] size=456 <lv_obj_add_style>
+ - func[77] size=346 <lv_obj_get_style_list>
+ - func[78] size=1123 <lv_obj_refresh_style>
+ - func[79] size=352 <lv_signal_send>
+ - func[80] size=292 <refresh_children_style>
+ - func[81] size=140 <lv_obj_reset_style_list>
+ - func[82] size=346 <lv_obj_report_style_mod>
+ - func[83] size=820 <report_style_mod_core>
+ - func[84] size=461 <lv_style_list_get_style>
+ - func[85] size=270 <lv_obj_set_click>
+ - func[86] size=2161 <lv_obj_set_state>
+ - func[87] size=157 <lv_obj_get_style_transition_time>
+ - func[88] size=157 <lv_obj_get_style_transition_delay>
+ - func[89] size=133 <lv_obj_get_style_transition_path>
+ - func[90] size=157 <lv_obj_get_style_transition_prop_1>
+ - func[91] size=157 <lv_obj_get_style_transition_prop_2>
+ - func[92] size=157 <lv_obj_get_style_transition_prop_3>
+ - func[93] size=157 <lv_obj_get_style_transition_prop_4>
+ - func[94] size=157 <lv_obj_get_style_transition_prop_5>
+ - func[95] size=157 <lv_obj_get_style_transition_prop_6>
+ - func[96] size=5702 <trans_create>
+ - func[97] size=63 <lv_anim_set_var>
+ - func[98] size=2560 <trans_anim_cb>
+ - func[99] size=63 <lv_anim_set_exec_cb>
+ - func[100] size=988 <trans_anim_start_cb>
+ - func[101] size=63 <lv_anim_set_start_cb>
+ - func[102] size=803 <trans_anim_ready_cb>
+ - func[103] size=63 <lv_anim_set_ready_cb>
+ - func[104] size=143 <lv_anim_set_values>
+ - func[105] size=63 <lv_anim_set_time>
+ - func[106] size=78 <lv_anim_set_delay>
+ - func[107] size=109 <lv_anim_set_path>
+ - func[108] size=156 <lv_obj_get_focus_parent>
+ - func[109] size=266 <lv_obj_add_protect>
+ - func[110] size=329 <lv_obj_clear_protect>
+ - func[111] size=895 <_lv_obj_get_style_ptr>
+ - func[112] size=1081 <_lv_obj_get_style_color>
+ - func[113] size=885 <_lv_obj_get_style_opa>
+ - func[114] size=891 <lv_color_mix>
+ - func[115] size=216 <lv_obj_set_event_cb>
+ - func[116] size=1310 <lv_event_send_func>
+ - func[117] size=216 <lv_obj_set_signal_cb>
+ - func[118] size=216 <lv_obj_set_design_cb>
+ - func[119] size=391 <lv_obj_allocate_ext_attr>
+ - func[120] size=148 <lv_obj_get_style_border_side>
+ - func[121] size=156 <lv_obj_get_style_border_width>
+ - func[122] size=425 <lv_obj_get_width_fit>
+ - func[123] size=310 <lv_obj_get_auto_realign>
+ - func[124] size=415 <lv_obj_get_state>
+ - func[125] size=204 <lv_obj_get_signal_cb>
+ - func[126] size=204 <lv_obj_get_design_cb>
+ - func[127] size=204 <lv_obj_get_ext_attr>
+ - func[128] size=128 <lv_obj_get_style_bg_color>
+ - func[129] size=148 <lv_obj_get_style_bg_grad_dir>
+ - func[130] size=128 <lv_obj_get_style_bg_grad_color>
+ - func[131] size=156 <lv_obj_get_style_bg_main_stop>
+ - func[132] size=156 <lv_obj_get_style_bg_grad_stop>
+ - func[133] size=148 <lv_obj_get_style_border_opa>
+ - func[134] size=128 <lv_obj_get_style_border_color>
+ - func[135] size=157 <lv_obj_get_style_outline_width>
+ - func[136] size=149 <lv_obj_get_style_outline_opa>
+ - func[137] size=157 <lv_obj_get_style_outline_pad>
+ - func[138] size=129 <lv_obj_get_style_outline_color>
+ - func[139] size=149 <lv_obj_get_style_outline_blend_mode>
+ - func[140] size=133 <lv_obj_get_style_pattern_image>
+ - func[141] size=149 <lv_obj_get_style_pattern_opa>
+ - func[142] size=149 <lv_obj_get_style_pattern_recolor_opa>
+ - func[143] size=197 <lv_obj_get_style_pattern_repeat>
+ - func[144] size=129 <lv_obj_get_style_pattern_recolor>
+ - func[145] size=134 <lv_obj_get_style_text_font>
+ - func[146] size=149 <lv_obj_get_style_pattern_blend_mode>
+ - func[147] size=133 <lv_obj_get_style_value_str>
+ - func[148] size=149 <lv_obj_get_style_value_opa>
+ - func[149] size=157 <lv_obj_get_style_value_ofs_x>
+ - func[150] size=157 <lv_obj_get_style_value_ofs_y>
+ - func[151] size=129 <lv_obj_get_style_value_color>
+ - func[152] size=133 <lv_obj_get_style_value_font>
+ - func[153] size=157 <lv_obj_get_style_value_letter_space>
+ - func[154] size=157 <lv_obj_get_style_value_line_space>
+ - func[155] size=149 <lv_obj_get_style_value_align>
+ - func[156] size=149 <lv_obj_get_style_value_blend_mode>
+ - func[157] size=1181 <lv_obj_init_draw_label_dsc>
+ - func[158] size=150 <lv_obj_get_style_text_opa>
+ - func[159] size=130 <lv_obj_get_style_text_color>
+ - func[160] size=158 <lv_obj_get_style_text_letter_space>
+ - func[161] size=158 <lv_obj_get_style_text_line_space>
+ - func[162] size=150 <lv_obj_get_style_text_decor>
+ - func[163] size=150 <lv_obj_get_style_text_blend_mode>
+ - func[164] size=130 <lv_obj_get_style_text_sel_color>
+ - func[165] size=157 <lv_obj_get_style_shadow_width>
+ - func[166] size=149 <lv_obj_get_style_shadow_opa>
+ - func[167] size=157 <lv_obj_get_style_shadow_spread>
+ - func[168] size=157 <lv_obj_get_style_shadow_ofs_x>
+ - func[169] size=157 <lv_obj_get_style_shadow_ofs_y>
+ - func[170] size=3 <_lv_refr_init>
+ - func[171] size=2891 <_lv_disp_refr_task>
+ - func[172] size=1296 <lv_refr_join_area>
+ - func[173] size=1190 <lv_refr_areas>
+ - func[174] size=947 <lv_refr_vdb_flush>
+ - func[175] size=165 <lv_area_get_width.1>
+ - func[176] size=1613 <_lv_inv_area>
+ - func[177] size=95 <lv_area_copy.1>
+ - func[178] size=238 <_lv_memcpy_small.1>
+ - func[179] size=21 <_lv_refr_get_disp_refreshing>
+ - func[180] size=2999 <lv_refr_area>
+ - func[181] size=2100 <lv_refr_area_part>
+ - func[182] size=165 <lv_area_get_height.1>
+ - func[183] size=955 <lv_refr_get_top_obj>
+ - func[184] size=712 <lv_refr_obj_and_children>
+ - func[185] size=1876 <lv_refr_obj>
+ - func[186] size=102 <lv_style_init>
+ - func[187] size=603 <lv_style_copy>
+ - func[188] size=357 <lv_debug_check_style>
+ - func[189] size=503 <_lv_style_get_mem_size>
+ - func[190] size=141 <get_style_prop_id>
+ - func[191] size=115 <get_next_prop_index>
+ - func[192] size=1118 <lv_style_remove_prop>
+ - func[193] size=1206 <get_property_index>
+ - func[194] size=156 <get_style_prop_attr>
+ - func[195] size=466 <get_prop_size>
+ - func[196] size=115 <style_resize>
+ - func[197] size=231 <get_style_prop>
+ - func[198] size=102 <lv_style_list_init>
+ - func[199] size=1930 <lv_style_list_copy>
+ - func[200] size=357 <lv_debug_check_style_list>
+ - func[201] size=954 <_lv_style_list_reset>
+ - func[202] size=794 <get_alloc_local_style>
+ - func[203] size=497 <lv_style_list_get_local_style>
+ - func[204] size=229 <lv_style_reset>
+ - func[205] size=358 <_lv_style_list_get_transition_style>
+ - func[206] size=461 <lv_style_list_get_style.1>
+ - func[207] size=1610 <_lv_style_list_add_style>
+ - func[208] size=1838 <_lv_style_list_remove_style>
+ - func[209] size=1619 <_lv_style_set_int>
+ - func[210] size=238 <_lv_memcpy_small.2>
+ - func[211] size=1558 <_lv_style_set_color>
+ - func[212] size=1627 <_lv_style_set_opa>
+ - func[213] size=1627 <_lv_style_set_ptr>
+ - func[214] size=816 <_lv_style_get_int>
+ - func[215] size=816 <_lv_style_get_opa>
+ - func[216] size=686 <_lv_style_get_color>
+ - func[217] size=686 <_lv_style_get_ptr>
+ - func[218] size=936 <_lv_style_list_add_trans_style>
+ - func[219] size=1596 <_lv_style_list_get_int>
+ - func[220] size=1713 <_lv_style_list_get_color>
+ - func[221] size=1605 <_lv_style_list_get_opa>
+ - func[222] size=1589 <_lv_style_list_get_ptr>
+ - func[223] size=486 <lv_disp_drv_init>
+ - func[224] size=206 <lv_disp_buf_init>
+ - func[225] size=1732 <lv_disp_drv_register>
+ - func[226] size=359 <lv_disp_is_true_double_buf>
+ - func[227] size=269 <lv_disp_is_double_buf>
+ - func[228] size=418 <lv_disp_get_hor_res>
+ - func[229] size=418 <lv_disp_get_ver_res>
+ - func[230] size=21 <lv_disp_get_default>
+ - func[231] size=313 <lv_disp_get_dpi>
+ - func[232] size=602 <lv_disp_get_size_category>
+ - func[233] size=87 <lv_disp_flush_ready>
+ - func[234] size=188 <lv_disp_get_next>
+ - func[235] size=51 <lv_disp_get_buf>
+ - func[236] size=188 <lv_indev_get_next>
+ - func[237] size=99 <lv_tick_inc>
+ - func[238] size=178 <lv_tick_get>
+ - func[239] size=260 <lv_tick_elaps>
+ - func[240] size=1463 <lv_btn_create>
+ - func[241] size=523 <lv_btn_design>
+ - func[242] size=1025 <lv_btn_signal>
+ - func[243] size=102 <lv_btn_set_layout>
+ - func[244] size=318 <lv_btn_get_checkable>
+ - func[245] size=661 <lv_btn_set_state>
+ - func[246] size=2826 <lv_label_create>
+ - func[247] size=2059 <lv_label_signal>
+ - func[248] size=4458 <lv_label_design>
+ - func[249] size=943 <lv_label_set_long_mode>
+ - func[250] size=1493 <lv_label_set_text>
+ - func[251] size=259 <lv_label_get_long_mode>
+ - func[252] size=333 <lv_label_get_recolor>
+ - func[253] size=461 <lv_label_set_recolor>
+ - func[254] size=378 <lv_label_get_align>
+ - func[255] size=454 <lv_label_set_align>
+ - func[256] size=228 <lv_label_get_text>
+ - func[257] size=534 <lv_label_set_text_static>
+ - func[258] size=658 <lv_label_set_dot_tmp>
+ - func[259] size=156 <lv_obj_get_style_transform_width.1>
+ - func[260] size=156 <lv_obj_get_style_transform_height.1>
+ - func[261] size=95 <lv_area_copy.2>
+ - func[262] size=627 <get_txt_coords>
+ - func[263] size=194 <lv_label_get_text_sel_start>
+ - func[264] size=194 <lv_label_get_text_sel_end>
+ - func[265] size=165 <lv_area_get_width.2>
+ - func[266] size=165 <lv_area_get_height.2>
+ - func[267] size=75 <lv_font_get_line_height>
+ - func[268] size=114 <lv_label_get_style>
+ - func[269] size=301 <lv_label_dot_tmp_free>
+ - func[270] size=798 <lv_label_revert_dots>
+ - func[271] size=9724 <lv_label_refr_text>
+ - func[272] size=123 <lv_label_set_offset_y>
+ - func[273] size=123 <lv_label_set_offset_x>
+ - func[274] size=134 <lv_obj_get_style_text_font.1>
+ - func[275] size=158 <lv_obj_get_style_text_line_space.1>
+ - func[276] size=158 <lv_obj_get_style_text_letter_space.1>
+ - func[277] size=156 <lv_obj_get_style_pad_left.1>
+ - func[278] size=156 <lv_obj_get_style_pad_right.1>
+ - func[279] size=156 <lv_obj_get_style_pad_top>
+ - func[280] size=156 <lv_obj_get_style_pad_bottom>
+ - func[281] size=63 <lv_anim_set_var.1>
+ - func[282] size=63 <lv_anim_set_repeat_count>
+ - func[283] size=80 <lv_anim_set_playback_delay>
+ - func[284] size=80 <lv_anim_set_repeat_delay>
+ - func[285] size=143 <lv_anim_set_values.1>
+ - func[286] size=63 <lv_anim_set_exec_cb.1>
+ - func[287] size=63 <lv_anim_set_time.1>
+ - func[288] size=80 <lv_anim_set_playback_time>
+ - func[289] size=4529 <lv_label_get_letter_on>
+ - func[290] size=268 <lv_label_get_dot_tmp>
+ - func[291] size=238 <_lv_memcpy_small.3>
+ - func[292] size=1882 <lv_cont_create>
+ - func[293] size=1434 <lv_cont_signal>
+ - func[294] size=114 <lv_cont_get_style>
+ - func[295] size=1155 <lv_cont_refr_layout>
+ - func[296] size=7584 <lv_cont_refr_autofit>
+ - func[297] size=165 <lv_area_get_width.3>
+ - func[298] size=165 <lv_area_get_height.3>
+ - func[299] size=478 <lv_cont_set_layout>
+ - func[300] size=259 <lv_cont_get_layout>
+ - func[301] size=1450 <lv_cont_layout_center>
+ - func[302] size=1384 <lv_cont_layout_col>
+ - func[303] size=1900 <lv_cont_layout_row>
+ - func[304] size=5885 <lv_cont_layout_pretty>
+ - func[305] size=1196 <lv_cont_layout_grid>
+ - func[306] size=95 <lv_area_copy.3>
+ - func[307] size=156 <lv_obj_get_style_pad_left.2>
+ - func[308] size=156 <lv_obj_get_style_pad_right.2>
+ - func[309] size=156 <lv_obj_get_style_pad_top.1>
+ - func[310] size=156 <lv_obj_get_style_pad_bottom.1>
+ - func[311] size=156 <lv_obj_get_style_margin_left>
+ - func[312] size=156 <lv_obj_get_style_margin_right>
+ - func[313] size=156 <lv_obj_get_style_margin_top>
+ - func[314] size=156 <lv_obj_get_style_margin_bottom>
+ - func[315] size=156 <lv_obj_get_style_pad_inner>
+ - func[316] size=238 <_lv_memcpy_small.4>
+ - func[317] size=112 <lv_font_get_glyph_bitmap>
+ - func[318] size=163 <lv_font_get_glyph_dsc>
+ - func[319] size=247 <lv_font_get_glyph_width>
+ - func[320] size=1683 <lv_font_get_bitmap_fmt_txt>
+ - func[321] size=3294 <get_glyph_dsc_id>
+ - func[322] size=2183 <decompress>
+ - func[323] size=119 <unicode_list_compare>
+ - func[324] size=154 <rle_init>
+ - func[325] size=286 <decompress_line>
+ - func[326] size=796 <bits_write>
+ - func[327] size=1183 <lv_font_get_glyph_dsc_fmt_txt>
+ - func[328] size=1639 <get_kern_value>
+ - func[329] size=366 <kern_pair_8_compare>
+ - func[330] size=372 <kern_pair_16_compare>
+ - func[331] size=110 <_lv_font_clean_up_fmt_txt>
+ - func[332] size=1944 <rle_next>
+ - func[333] size=901 <get_bits>
+ - func[334] size=159 <lv_area_set>
+ - func[335] size=153 <lv_area_set_height>
+ - func[336] size=165 <lv_area_get_width.4>
+ - func[337] size=165 <lv_area_get_height.4>
+ - func[338] size=274 <lv_area_get_size>
+ - func[339] size=1401 <_lv_area_intersect>
+ - func[340] size=1041 <_lv_area_join>
+ - func[341] size=3490 <_lv_area_is_point_on>
+ - func[342] size=914 <lv_point_within_circle>
+ - func[343] size=628 <_lv_area_is_on>
+ - func[344] size=1495 <_lv_area_is_in>
+ - func[345] size=4341 <_lv_area_align>
+ - func[346] size=71 <_lv_task_core_init>
+ - func[347] size=76 <lv_task_enable>
+ - func[348] size=2657 <lv_task_handler>
+ - func[349] size=478 <lv_task_exec>
+ - func[350] size=231 <lv_task_time_remaining>
+ - func[351] size=204 <lv_task_del>
+ - func[352] size=1339 <lv_task_create_basic>
+ - func[353] size=439 <lv_task_create>
+ - func[354] size=63 <lv_task_set_cb>
+ - func[355] size=63 <lv_task_set_period>
+ - func[356] size=710 <lv_task_set_prio>
+ - func[357] size=119 <lv_task_ready>
+ - func[358] size=383 <lv_anim_path_linear>
+ - func[359] size=141 <_lv_anim_core_init>
+ - func[360] size=1636 <anim_task>
+ - func[361] size=188 <anim_mark_list_change>
+ - func[362] size=1178 <anim_ready_handler>
+ - func[363] size=248 <lv_anim_init>
+ - func[364] size=238 <_lv_memcpy_small.5>
+ - func[365] size=945 <lv_anim_start>
+ - func[366] size=491 <lv_anim_del>
+ - func[367] size=369 <lv_anim_get>
+ - func[368] size=581 <lv_anim_speed_to_time>
+ - func[369] size=195 <_lv_mem_init>
+ - func[370] size=1117 <_lv_memset_00>
+ - func[371] size=819 <lv_mem_alloc>
+ - func[372] size=341 <ent_get_next>
+ - func[373] size=319 <ent_alloc>
+ - func[374] size=657 <ent_trunc>
+ - func[375] size=741 <lv_mem_free>
+ - func[376] size=679 <lv_mem_defrag>
+ - func[377] size=909 <lv_mem_realloc>
+ - func[378] size=272 <_lv_mem_get_size>
+ - func[379] size=5858 <_lv_memcpy>
+ - func[380] size=1389 <_lv_memset>
+ - func[381] size=2952 <_lv_mem_buf_get>
+ - func[382] size=782 <_lv_mem_buf_release>
+ - func[383] size=742 <_lv_mem_buf_free_all>
+ - func[384] size=1119 <_lv_memset_ff>
+ - func[385] size=147 <_lv_ll_init>
+ - func[386] size=476 <_lv_ll_ins_head>
+ - func[387] size=246 <node_set_prev>
+ - func[388] size=261 <node_set_next>
+ - func[389] size=701 <_lv_ll_ins_prev>
+ - func[390] size=133 <_lv_ll_get_head>
+ - func[391] size=210 <_lv_ll_get_prev>
+ - func[392] size=476 <_lv_ll_ins_tail>
+ - func[393] size=721 <_lv_ll_remove>
+ - func[394] size=225 <_lv_ll_get_next>
+ - func[395] size=133 <_lv_ll_get_tail>
+ - func[396] size=658 <_lv_ll_move_before>
+ - func[397] size=340 <_lv_ll_is_empty>
+ - func[398] size=942 <lv_color_fill>
+ - func[399] size=279 <lv_color_lighten>
+ - func[400] size=891 <lv_color_mix.1>
+ - func[401] size=283 <lv_color_darken>
+ - func[402] size=1231 <lv_color_hsv_to_rgb>
+ - func[403] size=335 <lv_color_make.1>
+ - func[404] size=526 <lv_txt_utf8_size>
+ - func[405] size=3579 <lv_txt_utf8_next>
+ - func[406] size=577 <lv_txt_utf8_prev>
+ - func[407] size=404 <lv_txt_utf8_get_byte_id>
+ - func[408] size=247 <lv_txt_utf8_get_char_id>
+ - func[409] size=246 <lv_txt_utf8_get_length>
+ - func[410] size=2142 <_lv_txt_get_size>
+ - func[411] size=75 <lv_font_get_line_height.1>
+ - func[412] size=2303 <_lv_txt_get_next_line>
+ - func[413] size=1116 <_lv_txt_get_width>
+ - func[414] size=3201 <lv_txt_get_next_word>
+ - func[415] size=653 <_lv_txt_is_cmd>
+ - func[416] size=308 <is_break_char>
+ - func[417] size=1307 <_lv_trigo_sin>
+ - func[418] size=361 <_lv_sqrt>
+ - func[419] size=934 <_lv_log_add>
+ - func[420] size=593 <_lv_utils_bsearch>
+ - func[421] size=157 <_out_buffer>
+ - func[422] size=10157 <_vsnprintf>
+ - func[423] size=52 <_out_null>
+ - func[424] size=213 <_is_digit>
+ - func[425] size=295 <_atoi>
+ - func[426] size=1023 <_ntoa_long_long>
+ - func[427] size=883 <_ntoa_long>
+ - func[428] size=272 <_strnlen_s>
+ - func[429] size=136 <lv_vsnprintf>
+ - func[430] size=2492 <_ntoa_format>
+ - func[431] size=800 <_out_rev>
+ - func[432] size=177 <lv_debug_check_null>
+ - func[433] size=1034 <lv_debug_log_error>
+ - func[434] size=55 <lv_theme_set_act>
+ - func[435] size=130 <lv_theme_apply>
+ - func[436] size=3943 <clear_styles>
+ - func[437] size=431 <apply_theme>
+ - func[438] size=31 <lv_theme_get_font_normal>
+ - func[439] size=525 <lv_theme_material_init>
+ - func[440] size=10341 <theme_apply>
+ - func[441] size=28724 <basic_init>
+ - func[442] size=3 <cont_init>
+ - func[443] size=3 <btn_init>
+ - func[444] size=3 <label_init>
+ - func[445] size=2841 <bar_init>
+ - func[446] size=3 <img_init>
+ - func[447] size=3 <line_init>
+ - func[448] size=1559 <led_init>
+ - func[449] size=4236 <slider_init>
+ - func[450] size=1989 <switch_init>
+ - func[451] size=3320 <linemeter_init>
+ - func[452] size=7780 <gauge_init>
+ - func[453] size=1305 <arc_init>
+ - func[454] size=3 <spinner_init>
+ - func[455] size=3509 <chart_init>
+ - func[456] size=11617 <calendar_init>
+ - func[457] size=3717 <cpicker_init>
+ - func[458] size=4852 <checkbox_init>
+ - func[459] size=3 <btnmatrix_init>
+ - func[460] size=3192 <keyboard_init>
+ - func[461] size=778 <msgbox_init>
+ - func[462] size=1895 <page_init>
+ - func[463] size=1446 <textarea_init>
+ - func[464] size=1073 <spinbox_init>
+ - func[465] size=12211 <list_init>
+ - func[466] size=1389 <ddlist_init>
+ - func[467] size=748 <roller_init>
+ - func[468] size=3 <tabview_init>
+ - func[469] size=3 <tileview_init>
+ - func[470] size=3684 <table_init>
+ - func[471] size=3 <win_init>
+ - func[472] size=9665 <tabview_win_shared_init>
+ - func[473] size=127 <style_init_reset>
+ - func[474] size=183 <lv_style_set_bg_opa>
+ - func[475] size=218 <lv_color_hex.1>
+ - func[476] size=196 <lv_style_set_bg_color>
+ - func[477] size=198 <lv_style_set_text_color>
+ - func[478] size=197 <lv_style_set_value_color>
+ - func[479] size=169 <lv_style_set_text_font>
+ - func[480] size=168 <lv_style_set_value_font>
+ - func[481] size=191 <lv_style_set_radius>
+ - func[482] size=196 <lv_style_set_border_color>
+ - func[483] size=191 <lv_style_set_border_width>
+ - func[484] size=212 <lv_style_set_border_post>
+ - func[485] size=198 <lv_style_set_image_recolor>
+ - func[486] size=197 <lv_style_set_line_color>
+ - func[487] size=192 <lv_style_set_line_width>
+ - func[488] size=191 <lv_style_set_pad_left>
+ - func[489] size=191 <lv_style_set_pad_right>
+ - func[490] size=191 <lv_style_set_pad_top>
+ - func[491] size=191 <lv_style_set_pad_bottom>
+ - func[492] size=191 <lv_style_set_pad_inner>
+ - func[493] size=192 <lv_style_set_transition_time>
+ - func[494] size=192 <lv_style_set_transition_prop_6>
+ - func[495] size=347 <lv_color_hex3>
+ - func[496] size=192 <lv_style_set_transition_prop_5>
+ - func[497] size=891 <lv_color_mix.2>
+ - func[498] size=183 <lv_style_set_border_opa>
+ - func[499] size=192 <lv_style_set_outline_width>
+ - func[500] size=184 <lv_style_set_outline_opa>
+ - func[501] size=197 <lv_style_set_outline_color>
+ - func[502] size=192 <lv_style_set_transition_prop_4>
+ - func[503] size=192 <lv_style_set_transition_delay>
+ - func[504] size=192 <lv_style_set_shadow_width>
+ - func[505] size=197 <lv_style_set_shadow_color>
+ - func[506] size=192 <lv_style_set_shadow_spread>
+ - func[507] size=191 <lv_style_set_margin_left>
+ - func[508] size=191 <lv_style_set_margin_right>
+ - func[509] size=191 <lv_style_set_margin_top>
+ - func[510] size=191 <lv_style_set_margin_bottom>
+ - func[511] size=192 <lv_style_set_scale_width>
+ - func[512] size=197 <lv_style_set_scale_grad_color>
+ - func[513] size=197 <lv_style_set_scale_end_color>
+ - func[514] size=192 <lv_style_set_scale_end_line_width>
+ - func[515] size=192 <lv_style_set_scale_end_border_width>
+ - func[516] size=191 <lv_style_set_size>
+ - func[517] size=213 <lv_style_set_line_rounded>
+ - func[518] size=192 <lv_style_set_line_dash_width>
+ - func[519] size=192 <lv_style_set_line_dash_gap>
+ - func[520] size=207 <lv_style_set_border_side>
+ - func[521] size=192 <lv_style_set_outline_pad>
+ - func[522] size=168 <lv_style_set_pattern_image>
+ - func[523] size=197 <lv_style_set_pattern_recolor>
+ - func[524] size=212 <lv_style_set_clip_corner>
+ - func[525] size=191 <lv_style_set_transform_width>
+ - func[526] size=193 <lv_style_set_text_line_space>
+ - func[527] size=335 <lv_color_make.2>
+ - func[528] size=659 <lv_draw_mask_add>
+ - func[529] size=635 <lv_draw_mask_apply>
+ - func[530] size=353 <lv_draw_mask_remove_id>
+ - func[531] size=490 <lv_draw_mask_remove_custom>
+ - func[532] size=330 <lv_draw_mask_get_cnt>
+ - func[533] size=3407 <lv_draw_mask_line_points_init>
+ - func[534] size=3500 <lv_draw_mask_line>
+ - func[535] size=5206 <line_mask_flat>
+ - func[536] size=7653 <line_mask_steep>
+ - func[537] size=749 <lv_draw_mask_radius_init>
+ - func[538] size=165 <lv_area_get_width.5>
+ - func[539] size=165 <lv_area_get_height.5>
+ - func[540] size=13374 <lv_draw_mask_radius>
+ - func[541] size=95 <lv_area_copy.4>
+ - func[542] size=238 <_lv_memcpy_small.6>
+ - func[543] size=350 <mask_mix>
+ - func[544] size=422 <sqrt_approx>
+ - func[545] size=1919 <_lv_blend_fill>
+ - func[546] size=165 <lv_area_get_width.6>
+ - func[547] size=1989 <fill_set_px>
+ - func[548] size=9496 <fill_normal>
+ - func[549] size=3555 <fill_blended>
+ - func[550] size=165 <lv_area_get_height.6>
+ - func[551] size=891 <lv_color_mix.3>
+ - func[552] size=287 <lv_color_premult>
+ - func[553] size=750 <lv_color_mix_premult>
+ - func[554] size=1251 <color_blend_true_color_additive>
+ - func[555] size=1251 <color_blend_true_color_subtractive>
+ - func[556] size=1877 <_lv_blend_map>
+ - func[557] size=2894 <map_set_px>
+ - func[558] size=9682 <map_normal>
+ - func[559] size=3275 <map_blended>
+ - func[560] size=1095 <lv_draw_rect_dsc_init>
+ - func[561] size=436 <lv_draw_rect>
+ - func[562] size=165 <lv_area_get_height.7>
+ - func[563] size=165 <lv_area_get_width.7>
+ - func[564] size=10609 <draw_bg>
+ - func[565] size=4874 <draw_pattern>
+ - func[566] size=6923 <draw_border>
+ - func[567] size=1445 <draw_value_str>
+ - func[568] size=1437 <draw_outline>
+ - func[569] size=95 <lv_area_copy.5>
+ - func[570] size=990 <grad_get>
+ - func[571] size=9152 <draw_full_border>
+ - func[572] size=238 <_lv_memcpy_small.7>
+ - func[573] size=891 <lv_color_mix.4>
+ - func[574] size=494 <lv_draw_label_dsc_init>
+ - func[575] size=11598 <lv_draw_label>
+ - func[576] size=165 <lv_area_get_width.8>
+ - func[577] size=75 <lv_font_get_line_height.2>
+ - func[578] size=238 <_lv_memcpy_small.8>
+ - func[579] size=608 <hex_char_to_num>
+ - func[580] size=335 <lv_color_make.3>
+ - func[581] size=2431 <lv_draw_letter>
+ - func[582] size=7473 <draw_letter_subpx>
+ - func[583] size=5762 <draw_letter_normal>
+ - func[584] size=298 <lv_draw_line_dsc_init>
+ - func[585] size=4014 <lv_draw_line>
+ - func[586] size=4792 <draw_line_hor>
+ - func[587] size=4225 <draw_line_ver>
+ - func[588] size=9391 <draw_line_skew>
+ - func[589] size=165 <lv_area_get_width.9>
+ - func[590] size=318 <lv_draw_img_dsc_init>
+ - func[591] size=490 <lv_draw_img>
+ - func[592] size=412 <show_error>
+ - func[593] size=3604 <lv_img_draw_core>
+ - func[594] size=169 <lv_img_cf_is_chroma_keyed>
+ - func[595] size=188 <lv_img_cf_has_alpha>
+ - func[596] size=95 <lv_area_copy.6>
+ - func[597] size=165 <lv_area_get_width.10>
+ - func[598] size=165 <lv_area_get_height.8>
+ - func[599] size=10711 <lv_draw_map>
+ - func[600] size=257 <lv_img_cf_get_px_size>
+ - func[601] size=636 <lv_img_src_get_type>
+ - func[602] size=238 <_lv_memcpy_small.9>
+ - func[603] size=287 <lv_color_premult.1>
+ - func[604] size=4164 <_lv_img_buf_transform>
+ - func[605] size=750 <lv_color_mix_premult.1>
+ - func[606] size=419 <_lv_img_decoder_init>
+ - func[607] size=327 <lv_img_decoder_create>
+ - func[608] size=363 <lv_img_decoder_built_in_close>
+ - func[609] size=1754 <lv_img_decoder_built_in_read_line>
+ - func[610] size=3880 <lv_img_decoder_built_in_open>
+ - func[611] size=1047 <lv_img_decoder_built_in_info>
+ - func[612] size=63 <lv_img_decoder_set_info_cb>
+ - func[613] size=63 <lv_img_decoder_set_open_cb>
+ - func[614] size=63 <lv_img_decoder_set_read_line_cb>
+ - func[615] size=63 <lv_img_decoder_set_close_cb>
+ - func[616] size=335 <lv_color_make.4>
+ - func[617] size=161 <lv_img_decoder_built_in_line_true_color>
+ - func[618] size=4126 <lv_img_decoder_built_in_line_alpha>
+ - func[619] size=3678 <lv_img_decoder_built_in_line_indexed>
+ - func[620] size=617 <lv_img_decoder_get_info>
+ - func[621] size=1039 <lv_img_decoder_open>
+ - func[622] size=389 <lv_img_decoder_read_line>
+ - func[623] size=391 <lv_img_decoder_close>
+ - func[624] size=2994 <_lv_img_cache_open>
+ - func[625] size=793 <lv_img_cache_set_size>
+ - func[626] size=737 <lv_img_cache_invalidate_src>
+ - func[627] size=3551 <lv_img_buf_get_px_color>
+ - func[628] size=238 <_lv_memcpy_small.10>
+ - func[629] size=2961 <lv_img_buf_get_px_alpha>
+ - func[630] size=2099 <_lv_img_buf_transform_init>
+ - func[631] size=8061 <_lv_img_buf_get_transformed_area>
+ - func[632] size=8069 <_lv_img_buf_transform_anti_alias>
+ - func[633] size=891 <lv_color_mix.5>
+ - func[634] size=178 <lv_port_disp_init>
+ - func[635] size=989 <disp_flush>
+ - func[636] size=3 <disp_init>
+ - func[637] size=323 <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
+ - func[638] size=113 <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
+ - func[639] size=113 <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
+ - func[640] size=2437 <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
+ - func[641] size=137 <event_handler(_lv_obj_t*, unsigned char)>
+ - func[642] size=78 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
+ - func[643] size=99 <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
+ - func[644] size=79 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
+ - func[645] size=128 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
+ - func[646] size=78 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
+ - func[647] size=20 <lv_scr_act()>
+ - func[648] size=115 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
+ - func[649] size=204 <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
+ - func[650] size=4990 <Pinetime::Applications::Screens::Clock::Refresh()>
+ - func[651] size=51 <Pinetime::Controllers::Battery::PercentRemaining() const>
+ - func[652] size=190 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
+ - func[653] size=66 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
+ - func[654] size=55 <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
+ - func[655] size=66 <Pinetime::Controllers::Battery::IsCharging() const>
+ - func[656] size=66 <Pinetime::Controllers::Battery::IsPowerPresent() const>
+ - func[657] size=66 <Pinetime::Controllers::Ble::IsConnected() const>
+ - func[658] size=203 <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
+ - func[659] size=66 <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
+ - func[660] size=55 <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
+ - func[661] size=103 <Pinetime::Controllers::DateTime::CurrentDateTime() const>
+ - func[662] size=153 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[663] size=66 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
+ - func[664] size=55 <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
+ - func[665] size=177 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[666] size=167 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[667] size=102 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[668] size=162 <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
+ - func[669] size=88 <date::year_month_day::year() const>
+ - func[670] size=75 <date::year::operator int() const>
+ - func[671] size=103 <date::year_month_day::month() const>
+ - func[672] size=67 <date::month::operator unsigned int() const>
+ - func[673] size=103 <date::year_month_day::day() const>
+ - func[674] size=67 <date::day::operator unsigned int() const>
+ - func[675] size=125 <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
+ - func[676] size=128 <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[677] size=126 <date::weekday::iso_encoding() const>
+ - func[678] size=88 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
+ - func[679] size=51 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
+ - func[680] size=103 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
+ - func[681] size=51 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
+ - func[682] size=105 <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
+ - func[683] size=105 <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
+ - func[684] size=66 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
+ - func[685] size=55 <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
+ - func[686] size=122 <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[687] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
+ - func[688] size=327 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[689] size=74 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[690] size=587 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[691] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
+ - func[692] size=250 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[693] size=1066 <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
+ - func[694] size=854 <date::year_month_day::to_days() const>
+ - func[695] size=51 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
+ - func[696] size=208 <date::weekday::weekday_from_days(int)>
+ - func[697] size=11 <std::__2::chrono::duration_values<long long>::zero()>
+ - func[698] size=81 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[699] size=194 <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[700] size=107 <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[701] size=81 <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[702] size=241 <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[703] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[704] size=42 <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
+ - func[705] size=115 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[706] size=183 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[707] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
+ - func[708] size=201 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[709] size=141 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
+ - func[710] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[711] size=189 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[712] size=234 <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[713] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[714] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[715] size=235 <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[716] size=250 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[717] size=250 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[718] size=253 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[719] size=115 <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[720] size=183 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[721] size=122 <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[722] size=88 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
+ - func[723] size=163 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
+ - func[724] size=126 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[725] size=81 <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[726] size=182 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[727] size=141 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[728] size=141 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[729] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[730] size=250 <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[731] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[732] size=142 <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[733] size=81 <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[734] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[735] size=190 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[736] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[737] size=188 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
+ - func[738] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[739] size=189 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[740] size=174 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[741] size=141 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[742] size=155 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[743] size=81 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[744] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[745] size=174 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[746] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
+ - func[747] size=65 <date::year::year(int)>
+ - func[748] size=65 <date::month::month(unsigned int)>
+ - func[749] size=65 <date::day::day(unsigned int)>
+ - func[750] size=168 <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
+ - func[751] size=122 <date::operator<=(date::month const&, date::month const&)>
+ - func[752] size=135 <date::operator<(date::month const&, date::month const&)>
+ - func[753] size=181 <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[754] size=115 <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[755] size=142 <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[756] size=717 <create_clock>
+ - func[757] size=213 <Pinetime::Controllers::DateTime::DateTime()>
+ - func[758] size=89 <Pinetime::Controllers::Battery::Battery()>
+ - func[759] size=89 <Pinetime::Controllers::Ble::Ble()>
+ - func[760] size=94 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[761] size=155 <refresh_clock>
+ - func[762] size=429 <update_clock>
+ - func[763] size=544 <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
+ - func[764] size=141 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
+ - func[765] size=1300 <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
+ - func[766] size=88 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
+ - func[767] size=141 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[768] size=94 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
+ - func[769] size=89 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[770] size=115 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[771] size=105 <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[772] size=115 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[773] size=88 <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[774] size=98 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[775] size=171 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
+ - func[776] size=51 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
+ - func[777] size=234 <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
+ - func[778] size=213 <Pinetime::Components::LittleVgl::InitTheme()>
+ - func[779] size=3941 <Pinetime::Components::LittleVgl::InitBaseTheme()>
+ - func[780] size=31 <Pinetime::Components::LittleVgl::InitThemeContainer()>
+ - func[781] size=4692 <Pinetime::Components::LittleVgl::InitThemeButton()>
+ - func[782] size=937 <Pinetime::Components::LittleVgl::InitThemeLabel()>
+ - func[783] size=31 <Pinetime::Components::LittleVgl::InitThemeLine()>
+ - func[784] size=123 <Pinetime::Components::LittleVgl::InitThemeLed()>
+ - func[785] size=31 <Pinetime::Components::LittleVgl::InitThemeImage()>
+ - func[786] size=183 <Pinetime::Components::LittleVgl::InitThemeBar()>
+ - func[787] size=105 <Pinetime::Components::LittleVgl::InitThemeSlider()>
+ - func[788] size=31 <Pinetime::Components::LittleVgl::InitThemeSwitch()>
+ - func[789] size=99 <Pinetime::Components::LittleVgl::InitThemeMeter()>
+ - func[790] size=99 <Pinetime::Components::LittleVgl::InitThemeGauge()>
+ - func[791] size=123 <Pinetime::Components::LittleVgl::InitThemeArc()>
+ - func[792] size=31 <Pinetime::Components::LittleVgl::InitThemePreload()>
+ - func[793] size=31 <Pinetime::Components::LittleVgl::InitThemeChart()>
+ - func[794] size=423 <Pinetime::Components::LittleVgl::InitThemeCalendar()>
+ - func[795] size=363 <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
+ - func[796] size=189 <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
+ - func[797] size=31 <Pinetime::Components::LittleVgl::InitThemeKnob()>
+ - func[798] size=123 <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
+ - func[799] size=123 <Pinetime::Components::LittleVgl::InitThemePage()>
+ - func[800] size=31 <Pinetime::Components::LittleVgl::InitThemeTextArea()>
+ - func[801] size=31 <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
+ - func[802] size=324 <Pinetime::Components::LittleVgl::InitThemeList()>
+ - func[803] size=105 <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
+ - func[804] size=65 <Pinetime::Components::LittleVgl::InitThemeRoller()>
+ - func[805] size=31 <Pinetime::Components::LittleVgl::InitThemeTabView()>
+ - func[806] size=31 <Pinetime::Components::LittleVgl::InitThemeTileView()>
+ - func[807] size=123 <Pinetime::Components::LittleVgl::InitThemeTable()>
+ - func[808] size=31 <Pinetime::Components::LittleVgl::InitThemeWindow()>
+ - func[809] size=169 <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
+ - func[810] size=233 <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[811] size=233 <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[812] size=235 <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[813] size=235 <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[814] size=191 <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
+ - func[815] size=191 <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
+ - func[816] size=191 <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
+ - func[817] size=191 <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
+ - func[818] size=191 <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
+ - func[819] size=191 <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
+ - func[820] size=191 <lv_style_set_radius(lv_style_t*, unsigned char, short)>
+ - func[821] size=233 <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[822] size=183 <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
+ - func[823] size=234 <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[824] size=192 <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
+ - func[825] size=347 <lv_color_hex3(unsigned int)>
+ - func[826] size=234 <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[827] size=192 <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
+ - func[828] size=335 <lv_color_make(unsigned char, unsigned char, unsigned char)>
+ - func[829] size=865 <put_display_px>
+ - func[830] size=50 <get_display_buffer>
+ - func[831] size=12 <get_display_width>
+ - func[832] size=12 <get_display_height>
+ - func[833] size=776 <test_display>
+ - func[834] size=22 <init_display>
+ - func[835] size=292 <render_widgets>
+ - func[836] size=20 <lv_scr_act>
+ - func[837] size=33 <render_display>
+ - func[838] size=90 <main>
+ - func[839] size=205 <__stpcpy>
+ - func[840] size=12 <strcpy>
+ - func[841] size=91 <strcmp>
+ - func[842] size=6 <__errno_location>
+ - func[843] size=190 <vsnprintf>
+ - func[844] size=52 <sn_write>
+ - func[845] size=17 <vsprintf>
+ - func[846] size=40 <sprintf>
+ - func[847] size=10 <isdigit>
+ - func[848] size=233 <memchr>
+ - func[849] size=6 <pthread_self>
+ - func[850] size=292 <wcrtomb>
+ - func[851] size=5 <__pthread_self>
+ - func[852] size=21 <wctomb>
+ - func[853] size=143 <frexp>
+ - func[854] size=402 <__vfprintf_internal>
+ - func[855] size=2379 <printf_core>
+ - func[856] size=25 <out>
+ - func[857] size=79 <getint>
+ - func[858] size=315 <pop_arg>
+ - func[859] size=54 <fmt_x>
+ - func[860] size=46 <fmt_o>
+ - func[861] size=140 <fmt_u>
+ - func[862] size=115 <pad>
+ - func[863] size=15 <vfprintf>
+ - func[864] size=3161 <fmt_fp>
+ - func[865] size=43 <pop_arg_long_double>
+ - func[866] size=5 <__DOUBLE_BITS>
+ - func[867] size=83 <__ashlti3>
+ - func[868] size=83 <__lshrti3>
+ - func[869] size=494 <__trunctfdf2>
+ - func[870] size=14 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[871] size=14 <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[872] size=45 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[873] size=14 <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[874] size=66 <std::__2::chrono::system_clock::from_time_t(long)>
+ - func[875] size=36 <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[876] size=56 <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[877] size=51 <operator new(unsigned long)>
+ - func[878] size=6 <_get_tzname>
+ - func[879] size=6 <_get_daylight>
+ - func[880] size=6 <_get_timezone>
+ - func[881] size=2 <__lock>
+ - func[882] size=2 <__unlock>
+ - func[883] size=13 <__ofl_lock>
+ - func[884] size=9 <__ofl_unlock>
+ - func[885] size=22 <__wasi_syscall_ret>
+ - func[886] size=363 <__stdio_write>
+ - func[887] size=7 <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
+ - func[888] size=9 <std::get_new_handler()>
+ - func[889] size=6299 <dlmalloc>
+ - func[890] size=1825 <dlfree>
+ - func[891] size=88 <sbrk>
+ - func[892] size=533 <memcpy>
+ - func[893] size=375 <memset>
+ - func[894] size=92 <__towrite>
+ - func[895] size=149 <__overflow>
+ - func[896] size=203 <__fwritex>
+ - func[897] size=93 <fwrite>
+ - func[898] size=4 <__emscripten_stdout_close>
+ - func[899] size=4 <__emscripten_stdout_seek>
+ - func[900] size=44 <printf>
+ - func[901] size=30 <fputs>
+ - func[902] size=138 <puts>
+ - func[903] size=4 <__lockfile>
+ - func[904] size=2 <__unlockfile>
+ - func[905] size=159 <strlen>
+ - func[906] size=4 <stackSave>
+ - func[907] size=6 <stackRestore>
+ - func[908] size=20 <stackAlloc>
+ - func[909] size=184 <fflush>
+ - func[910] size=109 <__fflush_unlocked>
+ - func[911] size=13 <dynCall_jiji>
+ - func[912] size=36 <legalstub$dynCall_jiji>
+ - func[913] size=6 <__growWasmMemory>
Data[3]:
- segment[0] memory=0 size=14604 - init i32=1024
- 0000400: 2e2f 2e2f 7372 632f 6c76 5f63 6f72 652f ././src/lv_core/
@@ -2935,7 +2894,7 @@ Data[3]:
- 0003ed0: 0000 0000 8c6b 0700 0000 0000 0000 0000 .....k..........
- 0003ee0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
- 0003ef0: 0000 0000 0000 0000 0000 0000 0000 0000 ................
- - 0003f00: 0000 0000 0000 0000 0000 0000 0000 0000 ................
+ - 0003f00: 0000 0000 0000 0000 0000 0000 d071 5700 .............qW.
- 0003f10: 0500 0000 0000 0000 0000 0000 2d00 0000 ............-...
- 0003f20: 0000 0000 0000 0000 0000 0000 0000 0000 ................
- 0003f30: 0000 0000 2e00 0000 2f00 0000 c86d 0700 ......../....m..
@@ -32429,928 +32388,919 @@ Custom:
- func[3] <__wasi_fd_write>
- func[4] <emscripten_resize_heap>
- func[5] <emscripten_memcpy_big>
- - func[6] <__handle_stack_overflow>
- - func[7] <setTempRet0>
- - func[8] <emscripten_get_sbrk_ptr>
- - func[9] <__wasm_call_ctors>
- - func[10] <_lv_indev_init>
- - func[11] <lv_indev_reset>
- - func[12] <lv_indev_get_act>
- - func[13] <lv_indev_is_dragging>
- - func[14] <lv_disp_get_scr_act>
- - func[15] <lv_disp_get_scr_prev>
- - func[16] <lv_disp_get_layer_top>
- - func[17] <lv_disp_get_layer_sys>
- - func[18] <lv_init>
- - func[19] <lv_color_hex>
- - func[20] <lv_color_make>
- - func[21] <lv_obj_create>
- - func[22] <lv_obj_design>
- - func[23] <lv_obj_signal>
- - func[24] <lv_obj_get_base_dir>
- - func[25] <lv_area_copy>
- - func[26] <lv_obj_get_parent>
- - func[27] <lv_obj_get_x>
- - func[28] <lv_obj_get_y>
- - func[29] <lv_obj_set_pos>
- - func[30] <lv_obj_invalidate>
- - func[31] <lv_obj_handle_get_type_signal>
- - func[32] <lv_obj_is_protected>
- - func[33] <lv_obj_get_draw_rect_ext_pad_size>
- - func[34] <lv_obj_realign>
- - func[35] <lv_obj_refresh_ext_draw_pad>
- - func[36] <lv_obj_add_state>
- - func[37] <lv_obj_clear_state>
- - func[38] <lv_obj_get_focused_obj>
- - func[39] <lv_obj_clean_style_list>
- - func[40] <lv_obj_get_style_clip_corner>
- - func[41] <lv_obj_get_style_radius>
- - func[42] <lv_obj_get_style_transform_width>
- - func[43] <lv_obj_get_style_transform_height>
- - func[44] <lv_obj_get_style_bg_opa>
- - func[45] <lv_obj_get_style_bg_blend_mode>
- - func[46] <lv_obj_get_style_border_blend_mode>
- - func[47] <lv_obj_get_style_opa_scale>
- - func[48] <lv_obj_get_style_border_post>
- - func[49] <lv_obj_init_draw_rect_dsc>
- - func[50] <_lv_memcpy_small>
- - func[51] <lv_obj_get_coords>
- - func[52] <refresh_children_position>
- - func[53] <lv_obj_invalidate_area>
- - func[54] <lv_obj_del>
- - func[55] <lv_obj_get_disp>
- - func[56] <obj_del_core>
- - func[57] <lv_obj_get_screen>
- - func[58] <lv_event_send>
- - func[59] <trans_del>
- - func[60] <lv_event_mark_deleted>
- - func[61] <lv_obj_get_child>
- - func[62] <lv_obj_get_hidden>
- - func[63] <lv_obj_get_width>
- - func[64] <lv_area_get_width>
- - func[65] <lv_obj_set_x>
- - func[66] <lv_obj_set_y>
- - func[67] <lv_obj_set_size>
- - func[68] <lv_obj_get_height>
- - func[69] <lv_area_get_height>
- - func[70] <lv_obj_align_mid>
- - func[71] <lv_obj_align>
- - func[72] <lv_obj_set_height>
- - func[73] <lv_obj_get_style_pad_left>
- - func[74] <lv_obj_get_style_pad_right>
- - func[75] <_lv_obj_get_style_int>
- - func[76] <obj_align_core>
- - func[77] <obj_align_mid_core>
- - func[78] <lv_obj_add_style>
- - func[79] <lv_obj_get_style_list>
- - func[80] <lv_obj_refresh_style>
- - func[81] <lv_signal_send>
- - func[82] <refresh_children_style>
- - func[83] <lv_obj_reset_style_list>
- - func[84] <lv_obj_report_style_mod>
- - func[85] <report_style_mod_core>
- - func[86] <lv_style_list_get_style>
- - func[87] <lv_obj_set_click>
- - func[88] <lv_obj_set_state>
- - func[89] <lv_obj_get_style_transition_time>
- - func[90] <lv_obj_get_style_transition_delay>
- - func[91] <lv_obj_get_style_transition_path>
- - func[92] <lv_obj_get_style_transition_prop_1>
- - func[93] <lv_obj_get_style_transition_prop_2>
- - func[94] <lv_obj_get_style_transition_prop_3>
- - func[95] <lv_obj_get_style_transition_prop_4>
- - func[96] <lv_obj_get_style_transition_prop_5>
- - func[97] <lv_obj_get_style_transition_prop_6>
- - func[98] <trans_create>
- - func[99] <lv_anim_set_var>
- - func[100] <trans_anim_cb>
- - func[101] <lv_anim_set_exec_cb>
- - func[102] <trans_anim_start_cb>
- - func[103] <lv_anim_set_start_cb>
- - func[104] <trans_anim_ready_cb>
- - func[105] <lv_anim_set_ready_cb>
- - func[106] <lv_anim_set_values>
- - func[107] <lv_anim_set_time>
- - func[108] <lv_anim_set_delay>
- - func[109] <lv_anim_set_path>
- - func[110] <lv_obj_get_focus_parent>
- - func[111] <lv_obj_add_protect>
- - func[112] <lv_obj_clear_protect>
- - func[113] <_lv_obj_get_style_ptr>
- - func[114] <_lv_obj_get_style_color>
- - func[115] <_lv_obj_get_style_opa>
- - func[116] <lv_color_mix>
- - func[117] <lv_obj_set_event_cb>
- - func[118] <lv_event_send_func>
- - func[119] <lv_obj_set_signal_cb>
- - func[120] <lv_obj_set_design_cb>
- - func[121] <lv_obj_allocate_ext_attr>
- - func[122] <lv_obj_get_style_border_side>
- - func[123] <lv_obj_get_style_border_width>
- - func[124] <lv_obj_get_width_fit>
- - func[125] <lv_obj_get_auto_realign>
- - func[126] <lv_obj_get_state>
- - func[127] <lv_obj_get_signal_cb>
- - func[128] <lv_obj_get_design_cb>
- - func[129] <lv_obj_get_ext_attr>
- - func[130] <lv_obj_get_style_bg_color>
- - func[131] <lv_obj_get_style_bg_grad_dir>
- - func[132] <lv_obj_get_style_bg_grad_color>
- - func[133] <lv_obj_get_style_bg_main_stop>
- - func[134] <lv_obj_get_style_bg_grad_stop>
- - func[135] <lv_obj_get_style_border_opa>
- - func[136] <lv_obj_get_style_border_color>
- - func[137] <lv_obj_get_style_outline_width>
- - func[138] <lv_obj_get_style_outline_opa>
- - func[139] <lv_obj_get_style_outline_pad>
- - func[140] <lv_obj_get_style_outline_color>
- - func[141] <lv_obj_get_style_outline_blend_mode>
- - func[142] <lv_obj_get_style_pattern_image>
- - func[143] <lv_obj_get_style_pattern_opa>
- - func[144] <lv_obj_get_style_pattern_recolor_opa>
- - func[145] <lv_obj_get_style_pattern_repeat>
- - func[146] <lv_obj_get_style_pattern_recolor>
- - func[147] <lv_obj_get_style_text_font>
- - func[148] <lv_obj_get_style_pattern_blend_mode>
- - func[149] <lv_obj_get_style_value_str>
- - func[150] <lv_obj_get_style_value_opa>
- - func[151] <lv_obj_get_style_value_ofs_x>
- - func[152] <lv_obj_get_style_value_ofs_y>
- - func[153] <lv_obj_get_style_value_color>
- - func[154] <lv_obj_get_style_value_font>
- - func[155] <lv_obj_get_style_value_letter_space>
- - func[156] <lv_obj_get_style_value_line_space>
- - func[157] <lv_obj_get_style_value_align>
- - func[158] <lv_obj_get_style_value_blend_mode>
- - func[159] <lv_obj_init_draw_label_dsc>
- - func[160] <lv_obj_get_style_text_opa>
- - func[161] <lv_obj_get_style_text_color>
- - func[162] <lv_obj_get_style_text_letter_space>
- - func[163] <lv_obj_get_style_text_line_space>
- - func[164] <lv_obj_get_style_text_decor>
- - func[165] <lv_obj_get_style_text_blend_mode>
- - func[166] <lv_obj_get_style_text_sel_color>
- - func[167] <lv_obj_get_style_shadow_width>
- - func[168] <lv_obj_get_style_shadow_opa>
- - func[169] <lv_obj_get_style_shadow_spread>
- - func[170] <lv_obj_get_style_shadow_ofs_x>
- - func[171] <lv_obj_get_style_shadow_ofs_y>
- - func[172] <_lv_refr_init>
- - func[173] <_lv_disp_refr_task>
- - func[174] <lv_refr_join_area>
- - func[175] <lv_refr_areas>
- - func[176] <lv_refr_vdb_flush>
- - func[177] <lv_area_get_width.1>
- - func[178] <_lv_inv_area>
- - func[179] <lv_area_copy.1>
- - func[180] <_lv_memcpy_small.1>
- - func[181] <_lv_refr_get_disp_refreshing>
- - func[182] <lv_refr_area>
- - func[183] <lv_refr_area_part>
- - func[184] <lv_area_get_height.1>
- - func[185] <lv_refr_get_top_obj>
- - func[186] <lv_refr_obj_and_children>
- - func[187] <lv_refr_obj>
- - func[188] <lv_style_init>
- - func[189] <lv_style_copy>
- - func[190] <lv_debug_check_style>
- - func[191] <_lv_style_get_mem_size>
- - func[192] <get_style_prop_id>
- - func[193] <get_next_prop_index>
- - func[194] <lv_style_remove_prop>
- - func[195] <get_property_index>
- - func[196] <get_style_prop_attr>
- - func[197] <get_prop_size>
- - func[198] <style_resize>
- - func[199] <get_style_prop>
- - func[200] <lv_style_list_init>
- - func[201] <lv_style_list_copy>
- - func[202] <lv_debug_check_style_list>
- - func[203] <_lv_style_list_reset>
- - func[204] <get_alloc_local_style>
- - func[205] <lv_style_list_get_local_style>
- - func[206] <lv_style_reset>
- - func[207] <_lv_style_list_get_transition_style>
- - func[208] <lv_style_list_get_style.1>
- - func[209] <_lv_style_list_add_style>
- - func[210] <_lv_style_list_remove_style>
- - func[211] <_lv_style_set_int>
- - func[212] <_lv_memcpy_small.2>
- - func[213] <_lv_style_set_color>
- - func[214] <_lv_style_set_opa>
- - func[215] <_lv_style_set_ptr>
- - func[216] <_lv_style_get_int>
- - func[217] <_lv_style_get_opa>
- - func[218] <_lv_style_get_color>
- - func[219] <_lv_style_get_ptr>
- - func[220] <_lv_style_list_add_trans_style>
- - func[221] <_lv_style_list_get_int>
- - func[222] <_lv_style_list_get_color>
- - func[223] <_lv_style_list_get_opa>
- - func[224] <_lv_style_list_get_ptr>
- - func[225] <lv_disp_drv_init>
- - func[226] <lv_disp_buf_init>
- - func[227] <lv_disp_drv_register>
- - func[228] <lv_disp_is_true_double_buf>
- - func[229] <lv_disp_is_double_buf>
- - func[230] <lv_disp_get_hor_res>
- - func[231] <lv_disp_get_ver_res>
- - func[232] <lv_disp_get_default>
- - func[233] <lv_disp_get_dpi>
- - func[234] <lv_disp_get_size_category>
- - func[235] <lv_disp_flush_ready>
- - func[236] <lv_disp_get_next>
- - func[237] <lv_disp_get_buf>
- - func[238] <lv_indev_get_next>
- - func[239] <lv_tick_inc>
- - func[240] <lv_tick_get>
- - func[241] <lv_tick_elaps>
- - func[242] <lv_btn_create>
- - func[243] <lv_btn_design>
- - func[244] <lv_btn_signal>
- - func[245] <lv_btn_set_layout>
- - func[246] <lv_btn_get_checkable>
- - func[247] <lv_btn_set_state>
- - func[248] <lv_label_create>
- - func[249] <lv_label_signal>
- - func[250] <lv_label_design>
- - func[251] <lv_label_set_long_mode>
- - func[252] <lv_label_set_text>
- - func[253] <lv_label_get_long_mode>
- - func[254] <lv_label_get_recolor>
- - func[255] <lv_label_set_recolor>
- - func[256] <lv_label_get_align>
- - func[257] <lv_label_set_align>
- - func[258] <lv_label_get_text>
- - func[259] <lv_label_set_text_static>
- - func[260] <lv_label_set_dot_tmp>
- - func[261] <lv_obj_get_style_transform_width.1>
- - func[262] <lv_obj_get_style_transform_height.1>
- - func[263] <lv_area_copy.2>
- - func[264] <get_txt_coords>
- - func[265] <lv_label_get_text_sel_start>
- - func[266] <lv_label_get_text_sel_end>
- - func[267] <lv_area_get_width.2>
- - func[268] <lv_area_get_height.2>
- - func[269] <lv_font_get_line_height>
- - func[270] <lv_label_get_style>
- - func[271] <lv_label_dot_tmp_free>
- - func[272] <lv_label_revert_dots>
- - func[273] <lv_label_refr_text>
- - func[274] <lv_label_set_offset_y>
- - func[275] <lv_label_set_offset_x>
- - func[276] <lv_obj_get_style_text_font.1>
- - func[277] <lv_obj_get_style_text_line_space.1>
- - func[278] <lv_obj_get_style_text_letter_space.1>
- - func[279] <lv_obj_get_style_pad_left.1>
- - func[280] <lv_obj_get_style_pad_right.1>
- - func[281] <lv_obj_get_style_pad_top>
- - func[282] <lv_obj_get_style_pad_bottom>
- - func[283] <lv_anim_set_var.1>
- - func[284] <lv_anim_set_repeat_count>
- - func[285] <lv_anim_set_playback_delay>
- - func[286] <lv_anim_set_repeat_delay>
- - func[287] <lv_anim_set_values.1>
- - func[288] <lv_anim_set_exec_cb.1>
- - func[289] <lv_anim_set_time.1>
- - func[290] <lv_anim_set_playback_time>
- - func[291] <lv_label_get_letter_on>
- - func[292] <lv_label_get_dot_tmp>
- - func[293] <_lv_memcpy_small.3>
- - func[294] <lv_cont_create>
- - func[295] <lv_cont_signal>
- - func[296] <lv_cont_get_style>
- - func[297] <lv_cont_refr_layout>
- - func[298] <lv_cont_refr_autofit>
- - func[299] <lv_area_get_width.3>
- - func[300] <lv_area_get_height.3>
- - func[301] <lv_cont_set_layout>
- - func[302] <lv_cont_get_layout>
- - func[303] <lv_cont_layout_center>
- - func[304] <lv_cont_layout_col>
- - func[305] <lv_cont_layout_row>
- - func[306] <lv_cont_layout_pretty>
- - func[307] <lv_cont_layout_grid>
- - func[308] <lv_area_copy.3>
- - func[309] <lv_obj_get_style_pad_left.2>
- - func[310] <lv_obj_get_style_pad_right.2>
- - func[311] <lv_obj_get_style_pad_top.1>
- - func[312] <lv_obj_get_style_pad_bottom.1>
- - func[313] <lv_obj_get_style_margin_left>
- - func[314] <lv_obj_get_style_margin_right>
- - func[315] <lv_obj_get_style_margin_top>
- - func[316] <lv_obj_get_style_margin_bottom>
- - func[317] <lv_obj_get_style_pad_inner>
- - func[318] <_lv_memcpy_small.4>
- - func[319] <lv_font_get_glyph_bitmap>
- - func[320] <lv_font_get_glyph_dsc>
- - func[321] <lv_font_get_glyph_width>
- - func[322] <lv_font_get_bitmap_fmt_txt>
- - func[323] <get_glyph_dsc_id>
- - func[324] <decompress>
- - func[325] <unicode_list_compare>
- - func[326] <rle_init>
- - func[327] <decompress_line>
- - func[328] <bits_write>
- - func[329] <lv_font_get_glyph_dsc_fmt_txt>
- - func[330] <get_kern_value>
- - func[331] <kern_pair_8_compare>
- - func[332] <kern_pair_16_compare>
- - func[333] <_lv_font_clean_up_fmt_txt>
- - func[334] <rle_next>
- - func[335] <get_bits>
- - func[336] <lv_area_set>
- - func[337] <lv_area_set_height>
- - func[338] <lv_area_get_width.4>
- - func[339] <lv_area_get_height.4>
- - func[340] <lv_area_get_size>
- - func[341] <_lv_area_intersect>
- - func[342] <_lv_area_join>
- - func[343] <_lv_area_is_point_on>
- - func[344] <lv_point_within_circle>
- - func[345] <_lv_area_is_on>
- - func[346] <_lv_area_is_in>
- - func[347] <_lv_area_align>
- - func[348] <_lv_task_core_init>
- - func[349] <lv_task_enable>
- - func[350] <lv_task_handler>
- - func[351] <lv_task_exec>
- - func[352] <lv_task_time_remaining>
- - func[353] <lv_task_del>
- - func[354] <lv_task_create_basic>
- - func[355] <lv_task_create>
- - func[356] <lv_task_set_cb>
- - func[357] <lv_task_set_period>
- - func[358] <lv_task_set_prio>
- - func[359] <lv_task_ready>
- - func[360] <lv_anim_path_linear>
- - func[361] <_lv_anim_core_init>
- - func[362] <anim_task>
- - func[363] <anim_mark_list_change>
- - func[364] <anim_ready_handler>
- - func[365] <lv_anim_init>
- - func[366] <_lv_memcpy_small.5>
- - func[367] <lv_anim_start>
- - func[368] <lv_anim_del>
- - func[369] <lv_anim_get>
- - func[370] <lv_anim_speed_to_time>
- - func[371] <_lv_mem_init>
- - func[372] <_lv_memset_00>
- - func[373] <lv_mem_alloc>
- - func[374] <ent_get_next>
- - func[375] <ent_alloc>
- - func[376] <ent_trunc>
- - func[377] <lv_mem_free>
- - func[378] <lv_mem_defrag>
- - func[379] <lv_mem_realloc>
- - func[380] <_lv_mem_get_size>
- - func[381] <_lv_memcpy>
- - func[382] <_lv_memset>
- - func[383] <_lv_mem_buf_get>
- - func[384] <_lv_mem_buf_release>
- - func[385] <_lv_mem_buf_free_all>
- - func[386] <_lv_memset_ff>
- - func[387] <_lv_ll_init>
- - func[388] <_lv_ll_ins_head>
- - func[389] <node_set_prev>
- - func[390] <node_set_next>
- - func[391] <_lv_ll_ins_prev>
- - func[392] <_lv_ll_get_head>
- - func[393] <_lv_ll_get_prev>
- - func[394] <_lv_ll_ins_tail>
- - func[395] <_lv_ll_remove>
- - func[396] <_lv_ll_get_next>
- - func[397] <_lv_ll_get_tail>
- - func[398] <_lv_ll_move_before>
- - func[399] <_lv_ll_is_empty>
- - func[400] <lv_color_fill>
- - func[401] <lv_color_lighten>
- - func[402] <lv_color_mix.1>
- - func[403] <lv_color_darken>
- - func[404] <lv_color_hsv_to_rgb>
- - func[405] <lv_color_make.1>
- - func[406] <lv_txt_utf8_size>
- - func[407] <lv_txt_utf8_next>
- - func[408] <lv_txt_utf8_prev>
- - func[409] <lv_txt_utf8_get_byte_id>
- - func[410] <lv_txt_utf8_get_char_id>
- - func[411] <lv_txt_utf8_get_length>
- - func[412] <_lv_txt_get_size>
- - func[413] <lv_font_get_line_height.1>
- - func[414] <_lv_txt_get_next_line>
- - func[415] <_lv_txt_get_width>
- - func[416] <lv_txt_get_next_word>
- - func[417] <_lv_txt_is_cmd>
- - func[418] <is_break_char>
- - func[419] <_lv_trigo_sin>
- - func[420] <_lv_sqrt>
- - func[421] <_lv_log_add>
- - func[422] <_lv_utils_bsearch>
- - func[423] <_out_buffer>
- - func[424] <_vsnprintf>
- - func[425] <_out_null>
- - func[426] <_is_digit>
- - func[427] <_atoi>
- - func[428] <_ntoa_long_long>
- - func[429] <_ntoa_long>
- - func[430] <_strnlen_s>
- - func[431] <lv_vsnprintf>
- - func[432] <_ntoa_format>
- - func[433] <_out_rev>
- - func[434] <lv_debug_check_null>
- - func[435] <lv_debug_log_error>
- - func[436] <lv_theme_set_act>
- - func[437] <lv_theme_apply>
- - func[438] <clear_styles>
- - func[439] <apply_theme>
- - func[440] <lv_theme_get_font_normal>
- - func[441] <lv_theme_material_init>
- - func[442] <theme_apply>
- - func[443] <basic_init>
- - func[444] <cont_init>
- - func[445] <btn_init>
- - func[446] <label_init>
- - func[447] <bar_init>
- - func[448] <img_init>
- - func[449] <line_init>
- - func[450] <led_init>
- - func[451] <slider_init>
- - func[452] <switch_init>
- - func[453] <linemeter_init>
- - func[454] <gauge_init>
- - func[455] <arc_init>
- - func[456] <spinner_init>
- - func[457] <chart_init>
- - func[458] <calendar_init>
- - func[459] <cpicker_init>
- - func[460] <checkbox_init>
- - func[461] <btnmatrix_init>
- - func[462] <keyboard_init>
- - func[463] <msgbox_init>
- - func[464] <page_init>
- - func[465] <textarea_init>
- - func[466] <spinbox_init>
- - func[467] <list_init>
- - func[468] <ddlist_init>
- - func[469] <roller_init>
- - func[470] <tabview_init>
- - func[471] <tileview_init>
- - func[472] <table_init>
- - func[473] <win_init>
- - func[474] <tabview_win_shared_init>
- - func[475] <style_init_reset>
- - func[476] <lv_style_set_bg_opa>
- - func[477] <lv_color_hex.1>
- - func[478] <lv_style_set_bg_color>
- - func[479] <lv_style_set_text_color>
- - func[480] <lv_style_set_value_color>
- - func[481] <lv_style_set_text_font>
- - func[482] <lv_style_set_value_font>
- - func[483] <lv_style_set_radius>
- - func[484] <lv_style_set_border_color>
- - func[485] <lv_style_set_border_width>
- - func[486] <lv_style_set_border_post>
- - func[487] <lv_style_set_image_recolor>
- - func[488] <lv_style_set_line_color>
- - func[489] <lv_style_set_line_width>
- - func[490] <lv_style_set_pad_left>
- - func[491] <lv_style_set_pad_right>
- - func[492] <lv_style_set_pad_top>
- - func[493] <lv_style_set_pad_bottom>
- - func[494] <lv_style_set_pad_inner>
- - func[495] <lv_style_set_transition_time>
- - func[496] <lv_style_set_transition_prop_6>
- - func[497] <lv_color_hex3>
- - func[498] <lv_style_set_transition_prop_5>
- - func[499] <lv_color_mix.2>
- - func[500] <lv_style_set_border_opa>
- - func[501] <lv_style_set_outline_width>
- - func[502] <lv_style_set_outline_opa>
- - func[503] <lv_style_set_outline_color>
- - func[504] <lv_style_set_transition_prop_4>
- - func[505] <lv_style_set_transition_delay>
- - func[506] <lv_style_set_shadow_width>
- - func[507] <lv_style_set_shadow_color>
- - func[508] <lv_style_set_shadow_spread>
- - func[509] <lv_style_set_margin_left>
- - func[510] <lv_style_set_margin_right>
- - func[511] <lv_style_set_margin_top>
- - func[512] <lv_style_set_margin_bottom>
- - func[513] <lv_style_set_scale_width>
- - func[514] <lv_style_set_scale_grad_color>
- - func[515] <lv_style_set_scale_end_color>
- - func[516] <lv_style_set_scale_end_line_width>
- - func[517] <lv_style_set_scale_end_border_width>
- - func[518] <lv_style_set_size>
- - func[519] <lv_style_set_line_rounded>
- - func[520] <lv_style_set_line_dash_width>
- - func[521] <lv_style_set_line_dash_gap>
- - func[522] <lv_style_set_border_side>
- - func[523] <lv_style_set_outline_pad>
- - func[524] <lv_style_set_pattern_image>
- - func[525] <lv_style_set_pattern_recolor>
- - func[526] <lv_style_set_clip_corner>
- - func[527] <lv_style_set_transform_width>
- - func[528] <lv_style_set_text_line_space>
- - func[529] <lv_color_make.2>
- - func[530] <lv_draw_mask_add>
- - func[531] <lv_draw_mask_apply>
- - func[532] <lv_draw_mask_remove_id>
- - func[533] <lv_draw_mask_remove_custom>
- - func[534] <lv_draw_mask_get_cnt>
- - func[535] <lv_draw_mask_line_points_init>
- - func[536] <lv_draw_mask_line>
- - func[537] <line_mask_flat>
- - func[538] <line_mask_steep>
- - func[539] <lv_draw_mask_radius_init>
- - func[540] <lv_area_get_width.5>
- - func[541] <lv_area_get_height.5>
- - func[542] <lv_draw_mask_radius>
- - func[543] <lv_area_copy.4>
- - func[544] <_lv_memcpy_small.6>
- - func[545] <mask_mix>
- - func[546] <sqrt_approx>
- - func[547] <_lv_blend_fill>
- - func[548] <lv_area_get_width.6>
- - func[549] <fill_set_px>
- - func[550] <fill_normal>
- - func[551] <fill_blended>
- - func[552] <lv_area_get_height.6>
- - func[553] <lv_color_mix.3>
- - func[554] <lv_color_premult>
- - func[555] <lv_color_mix_premult>
- - func[556] <color_blend_true_color_additive>
- - func[557] <color_blend_true_color_subtractive>
- - func[558] <_lv_blend_map>
- - func[559] <map_set_px>
- - func[560] <map_normal>
- - func[561] <map_blended>
- - func[562] <lv_draw_rect_dsc_init>
- - func[563] <lv_draw_rect>
- - func[564] <lv_area_get_height.7>
- - func[565] <lv_area_get_width.7>
- - func[566] <draw_bg>
- - func[567] <draw_pattern>
- - func[568] <draw_border>
- - func[569] <draw_value_str>
- - func[570] <draw_outline>
- - func[571] <lv_area_copy.5>
- - func[572] <grad_get>
- - func[573] <draw_full_border>
- - func[574] <_lv_memcpy_small.7>
- - func[575] <lv_color_mix.4>
- - func[576] <lv_draw_label_dsc_init>
- - func[577] <lv_draw_label>
- - func[578] <lv_area_get_width.8>
- - func[579] <lv_font_get_line_height.2>
- - func[580] <_lv_memcpy_small.8>
- - func[581] <hex_char_to_num>
- - func[582] <lv_color_make.3>
- - func[583] <lv_draw_letter>
- - func[584] <draw_letter_subpx>
- - func[585] <draw_letter_normal>
- - func[586] <lv_draw_line_dsc_init>
- - func[587] <lv_draw_line>
- - func[588] <draw_line_hor>
- - func[589] <draw_line_ver>
- - func[590] <draw_line_skew>
- - func[591] <lv_area_get_width.9>
- - func[592] <lv_draw_img_dsc_init>
- - func[593] <lv_draw_img>
- - func[594] <show_error>
- - func[595] <lv_img_draw_core>
- - func[596] <lv_img_cf_is_chroma_keyed>
- - func[597] <lv_img_cf_has_alpha>
- - func[598] <lv_area_copy.6>
- - func[599] <lv_area_get_width.10>
- - func[600] <lv_area_get_height.8>
- - func[601] <lv_draw_map>
- - func[602] <lv_img_cf_get_px_size>
- - func[603] <lv_img_src_get_type>
- - func[604] <_lv_memcpy_small.9>
- - func[605] <lv_color_premult.1>
- - func[606] <_lv_img_buf_transform>
- - func[607] <lv_color_mix_premult.1>
- - func[608] <_lv_img_decoder_init>
- - func[609] <lv_img_decoder_create>
- - func[610] <lv_img_decoder_built_in_close>
- - func[611] <lv_img_decoder_built_in_read_line>
- - func[612] <lv_img_decoder_built_in_open>
- - func[613] <lv_img_decoder_built_in_info>
- - func[614] <lv_img_decoder_set_info_cb>
- - func[615] <lv_img_decoder_set_open_cb>
- - func[616] <lv_img_decoder_set_read_line_cb>
- - func[617] <lv_img_decoder_set_close_cb>
- - func[618] <lv_color_make.4>
- - func[619] <lv_img_decoder_built_in_line_true_color>
- - func[620] <lv_img_decoder_built_in_line_alpha>
- - func[621] <lv_img_decoder_built_in_line_indexed>
- - func[622] <lv_img_decoder_get_info>
- - func[623] <lv_img_decoder_open>
- - func[624] <lv_img_decoder_read_line>
- - func[625] <lv_img_decoder_close>
- - func[626] <_lv_img_cache_open>
- - func[627] <lv_img_cache_set_size>
- - func[628] <lv_img_cache_invalidate_src>
- - func[629] <lv_img_buf_get_px_color>
- - func[630] <_lv_memcpy_small.10>
- - func[631] <lv_img_buf_get_px_alpha>
- - func[632] <_lv_img_buf_transform_init>
- - func[633] <_lv_img_buf_get_transformed_area>
- - func[634] <_lv_img_buf_transform_anti_alias>
- - func[635] <lv_color_mix.5>
- - func[636] <lv_port_disp_init>
- - func[637] <disp_flush>
- - func[638] <disp_init>
- - func[639] <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
- - func[640] <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
- - func[641] <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
- - func[642] <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
- - func[643] <event_handler(_lv_obj_t*, unsigned char)>
- - func[644] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
- - func[645] <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
- - func[646] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
- - func[647] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
- - func[648] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
- - func[649] <lv_scr_act()>
- - func[650] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
- - func[651] <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
- - func[652] <Pinetime::Applications::Screens::Clock::Refresh()>
- - func[653] <Pinetime::Controllers::Battery::PercentRemaining() const>
- - func[654] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
- - func[655] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
- - func[656] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
- - func[657] <Pinetime::Controllers::Battery::IsCharging() const>
- - func[658] <Pinetime::Controllers::Battery::IsPowerPresent() const>
- - func[659] <Pinetime::Controllers::Ble::IsConnected() const>
- - func[660] <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
- - func[661] <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
- - func[662] <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
- - func[663] <Pinetime::Controllers::DateTime::CurrentDateTime() const>
- - func[664] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[665] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
- - func[666] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
- - func[667] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[668] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[669] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[670] <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
- - func[671] <date::year_month_day::year() const>
- - func[672] <date::year::operator int() const>
- - func[673] <date::year_month_day::month() const>
- - func[674] <date::month::operator unsigned int() const>
- - func[675] <date::year_month_day::day() const>
- - func[676] <date::day::operator unsigned int() const>
- - func[677] <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
- - func[678] <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
- - func[679] <date::weekday::iso_encoding() const>
- - func[680] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
- - func[681] <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
- - func[682] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
- - func[683] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
- - func[684] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[685] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
- - func[686] <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
- - func[687] <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
- - func[688] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
- - func[689] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
- - func[690] <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[691] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
- - func[692] <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[693] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[694] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[695] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
- - func[696] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[697] <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
- - func[698] <date::year_month_day::to_days() const>
- - func[699] <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
- - func[700] <date::weekday::weekday_from_days(int)>
- - func[701] <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
- - func[702] <std::__2::chrono::duration_values<long long>::zero()>
- - func[703] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[704] <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[705] <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[706] <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[707] <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[708] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[709] <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
- - func[710] <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[711] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[712] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
- - func[713] <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[714] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
- - func[715] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
- - func[716] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
- - func[717] <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
- - func[718] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[719] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[720] <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[721] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[722] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[723] <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[724] <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[725] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[726] <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[727] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
- - func[728] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
- - func[729] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[730] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[731] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[732] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[733] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
- - func[734] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[735] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[736] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[737] <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[738] <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[739] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[740] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[741] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
- - func[742] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
- - func[743] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
- - func[744] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
- - func[745] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[746] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[747] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[748] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[749] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[750] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[751] <date::year::year(int)>
- - func[752] <date::month::month(unsigned int)>
- - func[753] <date::day::day(unsigned int)>
- - func[754] <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
- - func[755] <date::operator<=(date::month const&, date::month const&)>
- - func[756] <date::operator<(date::month const&, date::month const&)>
- - func[757] <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
- - func[758] <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[759] <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
- - func[760] <create_clock>
- - func[761] <Pinetime::Controllers::DateTime::DateTime()>
- - func[762] <Pinetime::Controllers::Battery::Battery()>
- - func[763] <Pinetime::Controllers::Ble::Ble()>
- - func[764] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
- - func[765] <refresh_clock>
- - func[766] <update_clock>
- - func[767] <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
- - func[768] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
- - func[769] <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
- - func[770] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
- - func[771] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[772] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
- - func[773] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[774] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[775] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
- - func[776] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[777] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
- - func[778] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
- - func[779] <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
- - func[780] <Pinetime::Components::LittleVgl::InitTheme()>
- - func[781] <Pinetime::Components::LittleVgl::InitBaseTheme()>
- - func[782] <Pinetime::Components::LittleVgl::InitThemeContainer()>
- - func[783] <Pinetime::Components::LittleVgl::InitThemeButton()>
- - func[784] <Pinetime::Components::LittleVgl::InitThemeLabel()>
- - func[785] <Pinetime::Components::LittleVgl::InitThemeLine()>
- - func[786] <Pinetime::Components::LittleVgl::InitThemeLed()>
- - func[787] <Pinetime::Components::LittleVgl::InitThemeImage()>
- - func[788] <Pinetime::Components::LittleVgl::InitThemeBar()>
- - func[789] <Pinetime::Components::LittleVgl::InitThemeSlider()>
- - func[790] <Pinetime::Components::LittleVgl::InitThemeSwitch()>
- - func[791] <Pinetime::Components::LittleVgl::InitThemeMeter()>
- - func[792] <Pinetime::Components::LittleVgl::InitThemeGauge()>
- - func[793] <Pinetime::Components::LittleVgl::InitThemeArc()>
- - func[794] <Pinetime::Components::LittleVgl::InitThemePreload()>
- - func[795] <Pinetime::Components::LittleVgl::InitThemeChart()>
- - func[796] <Pinetime::Components::LittleVgl::InitThemeCalendar()>
- - func[797] <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
- - func[798] <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
- - func[799] <Pinetime::Components::LittleVgl::InitThemeKnob()>
- - func[800] <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
- - func[801] <Pinetime::Components::LittleVgl::InitThemePage()>
- - func[802] <Pinetime::Components::LittleVgl::InitThemeTextArea()>
- - func[803] <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
- - func[804] <Pinetime::Components::LittleVgl::InitThemeList()>
- - func[805] <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
- - func[806] <Pinetime::Components::LittleVgl::InitThemeRoller()>
- - func[807] <Pinetime::Components::LittleVgl::InitThemeTabView()>
- - func[808] <Pinetime::Components::LittleVgl::InitThemeTileView()>
- - func[809] <Pinetime::Components::LittleVgl::InitThemeTable()>
- - func[810] <Pinetime::Components::LittleVgl::InitThemeWindow()>
- - func[811] <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
- - func[812] <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[813] <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[814] <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[815] <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
- - func[816] <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
- - func[817] <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
- - func[818] <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
- - func[819] <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
- - func[820] <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
- - func[821] <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
- - func[822] <lv_style_set_radius(lv_style_t*, unsigned char, short)>
- - func[823] <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[824] <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
- - func[825] <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[826] <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
- - func[827] <lv_color_hex3(unsigned int)>
- - func[828] <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
- - func[829] <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
- - func[830] <lv_color_make(unsigned char, unsigned char, unsigned char)>
- - func[831] <put_display_px>
- - func[832] <get_display_buffer>
- - func[833] <get_display_width>
- - func[834] <get_display_height>
- - func[835] <test_display>
- - func[836] <init_display>
- - func[837] <render_widgets>
- - func[838] <lv_scr_act>
- - func[839] <render_display>
- - func[840] <main>
- - func[841] <__stpcpy>
- - func[842] <strcpy>
- - func[843] <strcmp>
- - func[844] <__errno_location>
- - func[845] <vsnprintf>
- - func[846] <sn_write>
- - func[847] <vsprintf>
- - func[848] <sprintf>
- - func[849] <isdigit>
- - func[850] <memchr>
- - func[851] <pthread_self>
- - func[852] <wcrtomb>
- - func[853] <__pthread_self>
- - func[854] <wctomb>
- - func[855] <frexp>
- - func[856] <__vfprintf_internal>
- - func[857] <printf_core>
- - func[858] <out>
- - func[859] <getint>
- - func[860] <pop_arg>
- - func[861] <fmt_x>
- - func[862] <fmt_o>
- - func[863] <fmt_u>
- - func[864] <pad>
- - func[865] <vfprintf>
- - func[866] <fmt_fp>
- - func[867] <pop_arg_long_double>
- - func[868] <__DOUBLE_BITS>
- - func[869] <__ashlti3>
- - func[870] <__lshrti3>
- - func[871] <__trunctfdf2>
- - func[872] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
- - func[873] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
- - func[874] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
- - func[875] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
- - func[876] <std::__2::chrono::system_clock::from_time_t(long)>
- - func[877] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
- - func[878] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
- - func[879] <operator new(unsigned long)>
- - func[880] <_get_tzname>
- - func[881] <_get_daylight>
- - func[882] <_get_timezone>
- - func[883] <__lock>
- - func[884] <__unlock>
- - func[885] <__ofl_lock>
- - func[886] <__ofl_unlock>
- - func[887] <__wasi_syscall_ret>
- - func[888] <__stdio_write>
- - func[889] <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
- - func[890] <std::get_new_handler()>
- - func[891] <dlmalloc>
- - func[892] <dlfree>
- - func[893] <sbrk>
- - func[894] <memcpy>
- - func[895] <memset>
- - func[896] <__towrite>
- - func[897] <__overflow>
- - func[898] <__fwritex>
- - func[899] <fwrite>
- - func[900] <__emscripten_stdout_close>
- - func[901] <__emscripten_stdout_seek>
- - func[902] <printf>
- - func[903] <fputs>
- - func[904] <puts>
- - func[905] <__lockfile>
- - func[906] <__unlockfile>
- - func[907] <strlen>
- - func[908] <stackSave>
- - func[909] <stackRestore>
- - func[910] <stackAlloc>
- - func[911] <fflush>
- - func[912] <__fflush_unlocked>
- - func[913] <__set_stack_limit>
- - func[914] <dynCall_iiii>
- - func[915] <dynCall_vii>
- - func[916] <dynCall_vi>
- - func[917] <dynCall_iii>
- - func[918] <dynCall_ii>
- - func[919] <dynCall_viiii>
- - func[920] <dynCall_viii>
- - func[921] <dynCall_iiiiii>
- - func[922] <dynCall_iiiiiii>
- - func[923] <dynCall_iiiii>
- - func[924] <dynCall_iidiiii>
- - func[925] <dynCall_jiji>
- - func[926] <legalstub$dynCall_jiji>
- - func[927] <__growWasmMemory>
+ - func[6] <setTempRet0>
+ - func[7] <__wasm_call_ctors>
+ - func[8] <_lv_indev_init>
+ - func[9] <lv_indev_reset>
+ - func[10] <lv_indev_get_act>
+ - func[11] <lv_indev_is_dragging>
+ - func[12] <lv_disp_get_scr_act>
+ - func[13] <lv_disp_get_scr_prev>
+ - func[14] <lv_disp_get_layer_top>
+ - func[15] <lv_disp_get_layer_sys>
+ - func[16] <lv_init>
+ - func[17] <lv_color_hex>
+ - func[18] <lv_color_make>
+ - func[19] <lv_obj_create>
+ - func[20] <lv_obj_design>
+ - func[21] <lv_obj_signal>
+ - func[22] <lv_obj_get_base_dir>
+ - func[23] <lv_area_copy>
+ - func[24] <lv_obj_get_parent>
+ - func[25] <lv_obj_get_x>
+ - func[26] <lv_obj_get_y>
+ - func[27] <lv_obj_set_pos>
+ - func[28] <lv_obj_invalidate>
+ - func[29] <lv_obj_handle_get_type_signal>
+ - func[30] <lv_obj_is_protected>
+ - func[31] <lv_obj_get_draw_rect_ext_pad_size>
+ - func[32] <lv_obj_realign>
+ - func[33] <lv_obj_refresh_ext_draw_pad>
+ - func[34] <lv_obj_add_state>
+ - func[35] <lv_obj_clear_state>
+ - func[36] <lv_obj_get_focused_obj>
+ - func[37] <lv_obj_clean_style_list>
+ - func[38] <lv_obj_get_style_clip_corner>
+ - func[39] <lv_obj_get_style_radius>
+ - func[40] <lv_obj_get_style_transform_width>
+ - func[41] <lv_obj_get_style_transform_height>
+ - func[42] <lv_obj_get_style_bg_opa>
+ - func[43] <lv_obj_get_style_bg_blend_mode>
+ - func[44] <lv_obj_get_style_border_blend_mode>
+ - func[45] <lv_obj_get_style_opa_scale>
+ - func[46] <lv_obj_get_style_border_post>
+ - func[47] <lv_obj_init_draw_rect_dsc>
+ - func[48] <_lv_memcpy_small>
+ - func[49] <lv_obj_get_coords>
+ - func[50] <refresh_children_position>
+ - func[51] <lv_obj_invalidate_area>
+ - func[52] <lv_obj_del>
+ - func[53] <lv_obj_get_disp>
+ - func[54] <obj_del_core>
+ - func[55] <lv_obj_get_screen>
+ - func[56] <lv_event_send>
+ - func[57] <trans_del>
+ - func[58] <lv_event_mark_deleted>
+ - func[59] <lv_obj_get_child>
+ - func[60] <lv_obj_get_hidden>
+ - func[61] <lv_obj_get_width>
+ - func[62] <lv_area_get_width>
+ - func[63] <lv_obj_set_x>
+ - func[64] <lv_obj_set_y>
+ - func[65] <lv_obj_set_size>
+ - func[66] <lv_obj_get_height>
+ - func[67] <lv_area_get_height>
+ - func[68] <lv_obj_align_mid>
+ - func[69] <lv_obj_align>
+ - func[70] <lv_obj_set_height>
+ - func[71] <lv_obj_get_style_pad_left>
+ - func[72] <lv_obj_get_style_pad_right>
+ - func[73] <_lv_obj_get_style_int>
+ - func[74] <obj_align_core>
+ - func[75] <obj_align_mid_core>
+ - func[76] <lv_obj_add_style>
+ - func[77] <lv_obj_get_style_list>
+ - func[78] <lv_obj_refresh_style>
+ - func[79] <lv_signal_send>
+ - func[80] <refresh_children_style>
+ - func[81] <lv_obj_reset_style_list>
+ - func[82] <lv_obj_report_style_mod>
+ - func[83] <report_style_mod_core>
+ - func[84] <lv_style_list_get_style>
+ - func[85] <lv_obj_set_click>
+ - func[86] <lv_obj_set_state>
+ - func[87] <lv_obj_get_style_transition_time>
+ - func[88] <lv_obj_get_style_transition_delay>
+ - func[89] <lv_obj_get_style_transition_path>
+ - func[90] <lv_obj_get_style_transition_prop_1>
+ - func[91] <lv_obj_get_style_transition_prop_2>
+ - func[92] <lv_obj_get_style_transition_prop_3>
+ - func[93] <lv_obj_get_style_transition_prop_4>
+ - func[94] <lv_obj_get_style_transition_prop_5>
+ - func[95] <lv_obj_get_style_transition_prop_6>
+ - func[96] <trans_create>
+ - func[97] <lv_anim_set_var>
+ - func[98] <trans_anim_cb>
+ - func[99] <lv_anim_set_exec_cb>
+ - func[100] <trans_anim_start_cb>
+ - func[101] <lv_anim_set_start_cb>
+ - func[102] <trans_anim_ready_cb>
+ - func[103] <lv_anim_set_ready_cb>
+ - func[104] <lv_anim_set_values>
+ - func[105] <lv_anim_set_time>
+ - func[106] <lv_anim_set_delay>
+ - func[107] <lv_anim_set_path>
+ - func[108] <lv_obj_get_focus_parent>
+ - func[109] <lv_obj_add_protect>
+ - func[110] <lv_obj_clear_protect>
+ - func[111] <_lv_obj_get_style_ptr>
+ - func[112] <_lv_obj_get_style_color>
+ - func[113] <_lv_obj_get_style_opa>
+ - func[114] <lv_color_mix>
+ - func[115] <lv_obj_set_event_cb>
+ - func[116] <lv_event_send_func>
+ - func[117] <lv_obj_set_signal_cb>
+ - func[118] <lv_obj_set_design_cb>
+ - func[119] <lv_obj_allocate_ext_attr>
+ - func[120] <lv_obj_get_style_border_side>
+ - func[121] <lv_obj_get_style_border_width>
+ - func[122] <lv_obj_get_width_fit>
+ - func[123] <lv_obj_get_auto_realign>
+ - func[124] <lv_obj_get_state>
+ - func[125] <lv_obj_get_signal_cb>
+ - func[126] <lv_obj_get_design_cb>
+ - func[127] <lv_obj_get_ext_attr>
+ - func[128] <lv_obj_get_style_bg_color>
+ - func[129] <lv_obj_get_style_bg_grad_dir>
+ - func[130] <lv_obj_get_style_bg_grad_color>
+ - func[131] <lv_obj_get_style_bg_main_stop>
+ - func[132] <lv_obj_get_style_bg_grad_stop>
+ - func[133] <lv_obj_get_style_border_opa>
+ - func[134] <lv_obj_get_style_border_color>
+ - func[135] <lv_obj_get_style_outline_width>
+ - func[136] <lv_obj_get_style_outline_opa>
+ - func[137] <lv_obj_get_style_outline_pad>
+ - func[138] <lv_obj_get_style_outline_color>
+ - func[139] <lv_obj_get_style_outline_blend_mode>
+ - func[140] <lv_obj_get_style_pattern_image>
+ - func[141] <lv_obj_get_style_pattern_opa>
+ - func[142] <lv_obj_get_style_pattern_recolor_opa>
+ - func[143] <lv_obj_get_style_pattern_repeat>
+ - func[144] <lv_obj_get_style_pattern_recolor>
+ - func[145] <lv_obj_get_style_text_font>
+ - func[146] <lv_obj_get_style_pattern_blend_mode>
+ - func[147] <lv_obj_get_style_value_str>
+ - func[148] <lv_obj_get_style_value_opa>
+ - func[149] <lv_obj_get_style_value_ofs_x>
+ - func[150] <lv_obj_get_style_value_ofs_y>
+ - func[151] <lv_obj_get_style_value_color>
+ - func[152] <lv_obj_get_style_value_font>
+ - func[153] <lv_obj_get_style_value_letter_space>
+ - func[154] <lv_obj_get_style_value_line_space>
+ - func[155] <lv_obj_get_style_value_align>
+ - func[156] <lv_obj_get_style_value_blend_mode>
+ - func[157] <lv_obj_init_draw_label_dsc>
+ - func[158] <lv_obj_get_style_text_opa>
+ - func[159] <lv_obj_get_style_text_color>
+ - func[160] <lv_obj_get_style_text_letter_space>
+ - func[161] <lv_obj_get_style_text_line_space>
+ - func[162] <lv_obj_get_style_text_decor>
+ - func[163] <lv_obj_get_style_text_blend_mode>
+ - func[164] <lv_obj_get_style_text_sel_color>
+ - func[165] <lv_obj_get_style_shadow_width>
+ - func[166] <lv_obj_get_style_shadow_opa>
+ - func[167] <lv_obj_get_style_shadow_spread>
+ - func[168] <lv_obj_get_style_shadow_ofs_x>
+ - func[169] <lv_obj_get_style_shadow_ofs_y>
+ - func[170] <_lv_refr_init>
+ - func[171] <_lv_disp_refr_task>
+ - func[172] <lv_refr_join_area>
+ - func[173] <lv_refr_areas>
+ - func[174] <lv_refr_vdb_flush>
+ - func[175] <lv_area_get_width.1>
+ - func[176] <_lv_inv_area>
+ - func[177] <lv_area_copy.1>
+ - func[178] <_lv_memcpy_small.1>
+ - func[179] <_lv_refr_get_disp_refreshing>
+ - func[180] <lv_refr_area>
+ - func[181] <lv_refr_area_part>
+ - func[182] <lv_area_get_height.1>
+ - func[183] <lv_refr_get_top_obj>
+ - func[184] <lv_refr_obj_and_children>
+ - func[185] <lv_refr_obj>
+ - func[186] <lv_style_init>
+ - func[187] <lv_style_copy>
+ - func[188] <lv_debug_check_style>
+ - func[189] <_lv_style_get_mem_size>
+ - func[190] <get_style_prop_id>
+ - func[191] <get_next_prop_index>
+ - func[192] <lv_style_remove_prop>
+ - func[193] <get_property_index>
+ - func[194] <get_style_prop_attr>
+ - func[195] <get_prop_size>
+ - func[196] <style_resize>
+ - func[197] <get_style_prop>
+ - func[198] <lv_style_list_init>
+ - func[199] <lv_style_list_copy>
+ - func[200] <lv_debug_check_style_list>
+ - func[201] <_lv_style_list_reset>
+ - func[202] <get_alloc_local_style>
+ - func[203] <lv_style_list_get_local_style>
+ - func[204] <lv_style_reset>
+ - func[205] <_lv_style_list_get_transition_style>
+ - func[206] <lv_style_list_get_style.1>
+ - func[207] <_lv_style_list_add_style>
+ - func[208] <_lv_style_list_remove_style>
+ - func[209] <_lv_style_set_int>
+ - func[210] <_lv_memcpy_small.2>
+ - func[211] <_lv_style_set_color>
+ - func[212] <_lv_style_set_opa>
+ - func[213] <_lv_style_set_ptr>
+ - func[214] <_lv_style_get_int>
+ - func[215] <_lv_style_get_opa>
+ - func[216] <_lv_style_get_color>
+ - func[217] <_lv_style_get_ptr>
+ - func[218] <_lv_style_list_add_trans_style>
+ - func[219] <_lv_style_list_get_int>
+ - func[220] <_lv_style_list_get_color>
+ - func[221] <_lv_style_list_get_opa>
+ - func[222] <_lv_style_list_get_ptr>
+ - func[223] <lv_disp_drv_init>
+ - func[224] <lv_disp_buf_init>
+ - func[225] <lv_disp_drv_register>
+ - func[226] <lv_disp_is_true_double_buf>
+ - func[227] <lv_disp_is_double_buf>
+ - func[228] <lv_disp_get_hor_res>
+ - func[229] <lv_disp_get_ver_res>
+ - func[230] <lv_disp_get_default>
+ - func[231] <lv_disp_get_dpi>
+ - func[232] <lv_disp_get_size_category>
+ - func[233] <lv_disp_flush_ready>
+ - func[234] <lv_disp_get_next>
+ - func[235] <lv_disp_get_buf>
+ - func[236] <lv_indev_get_next>
+ - func[237] <lv_tick_inc>
+ - func[238] <lv_tick_get>
+ - func[239] <lv_tick_elaps>
+ - func[240] <lv_btn_create>
+ - func[241] <lv_btn_design>
+ - func[242] <lv_btn_signal>
+ - func[243] <lv_btn_set_layout>
+ - func[244] <lv_btn_get_checkable>
+ - func[245] <lv_btn_set_state>
+ - func[246] <lv_label_create>
+ - func[247] <lv_label_signal>
+ - func[248] <lv_label_design>
+ - func[249] <lv_label_set_long_mode>
+ - func[250] <lv_label_set_text>
+ - func[251] <lv_label_get_long_mode>
+ - func[252] <lv_label_get_recolor>
+ - func[253] <lv_label_set_recolor>
+ - func[254] <lv_label_get_align>
+ - func[255] <lv_label_set_align>
+ - func[256] <lv_label_get_text>
+ - func[257] <lv_label_set_text_static>
+ - func[258] <lv_label_set_dot_tmp>
+ - func[259] <lv_obj_get_style_transform_width.1>
+ - func[260] <lv_obj_get_style_transform_height.1>
+ - func[261] <lv_area_copy.2>
+ - func[262] <get_txt_coords>
+ - func[263] <lv_label_get_text_sel_start>
+ - func[264] <lv_label_get_text_sel_end>
+ - func[265] <lv_area_get_width.2>
+ - func[266] <lv_area_get_height.2>
+ - func[267] <lv_font_get_line_height>
+ - func[268] <lv_label_get_style>
+ - func[269] <lv_label_dot_tmp_free>
+ - func[270] <lv_label_revert_dots>
+ - func[271] <lv_label_refr_text>
+ - func[272] <lv_label_set_offset_y>
+ - func[273] <lv_label_set_offset_x>
+ - func[274] <lv_obj_get_style_text_font.1>
+ - func[275] <lv_obj_get_style_text_line_space.1>
+ - func[276] <lv_obj_get_style_text_letter_space.1>
+ - func[277] <lv_obj_get_style_pad_left.1>
+ - func[278] <lv_obj_get_style_pad_right.1>
+ - func[279] <lv_obj_get_style_pad_top>
+ - func[280] <lv_obj_get_style_pad_bottom>
+ - func[281] <lv_anim_set_var.1>
+ - func[282] <lv_anim_set_repeat_count>
+ - func[283] <lv_anim_set_playback_delay>
+ - func[284] <lv_anim_set_repeat_delay>
+ - func[285] <lv_anim_set_values.1>
+ - func[286] <lv_anim_set_exec_cb.1>
+ - func[287] <lv_anim_set_time.1>
+ - func[288] <lv_anim_set_playback_time>
+ - func[289] <lv_label_get_letter_on>
+ - func[290] <lv_label_get_dot_tmp>
+ - func[291] <_lv_memcpy_small.3>
+ - func[292] <lv_cont_create>
+ - func[293] <lv_cont_signal>
+ - func[294] <lv_cont_get_style>
+ - func[295] <lv_cont_refr_layout>
+ - func[296] <lv_cont_refr_autofit>
+ - func[297] <lv_area_get_width.3>
+ - func[298] <lv_area_get_height.3>
+ - func[299] <lv_cont_set_layout>
+ - func[300] <lv_cont_get_layout>
+ - func[301] <lv_cont_layout_center>
+ - func[302] <lv_cont_layout_col>
+ - func[303] <lv_cont_layout_row>
+ - func[304] <lv_cont_layout_pretty>
+ - func[305] <lv_cont_layout_grid>
+ - func[306] <lv_area_copy.3>
+ - func[307] <lv_obj_get_style_pad_left.2>
+ - func[308] <lv_obj_get_style_pad_right.2>
+ - func[309] <lv_obj_get_style_pad_top.1>
+ - func[310] <lv_obj_get_style_pad_bottom.1>
+ - func[311] <lv_obj_get_style_margin_left>
+ - func[312] <lv_obj_get_style_margin_right>
+ - func[313] <lv_obj_get_style_margin_top>
+ - func[314] <lv_obj_get_style_margin_bottom>
+ - func[315] <lv_obj_get_style_pad_inner>
+ - func[316] <_lv_memcpy_small.4>
+ - func[317] <lv_font_get_glyph_bitmap>
+ - func[318] <lv_font_get_glyph_dsc>
+ - func[319] <lv_font_get_glyph_width>
+ - func[320] <lv_font_get_bitmap_fmt_txt>
+ - func[321] <get_glyph_dsc_id>
+ - func[322] <decompress>
+ - func[323] <unicode_list_compare>
+ - func[324] <rle_init>
+ - func[325] <decompress_line>
+ - func[326] <bits_write>
+ - func[327] <lv_font_get_glyph_dsc_fmt_txt>
+ - func[328] <get_kern_value>
+ - func[329] <kern_pair_8_compare>
+ - func[330] <kern_pair_16_compare>
+ - func[331] <_lv_font_clean_up_fmt_txt>
+ - func[332] <rle_next>
+ - func[333] <get_bits>
+ - func[334] <lv_area_set>
+ - func[335] <lv_area_set_height>
+ - func[336] <lv_area_get_width.4>
+ - func[337] <lv_area_get_height.4>
+ - func[338] <lv_area_get_size>
+ - func[339] <_lv_area_intersect>
+ - func[340] <_lv_area_join>
+ - func[341] <_lv_area_is_point_on>
+ - func[342] <lv_point_within_circle>
+ - func[343] <_lv_area_is_on>
+ - func[344] <_lv_area_is_in>
+ - func[345] <_lv_area_align>
+ - func[346] <_lv_task_core_init>
+ - func[347] <lv_task_enable>
+ - func[348] <lv_task_handler>
+ - func[349] <lv_task_exec>
+ - func[350] <lv_task_time_remaining>
+ - func[351] <lv_task_del>
+ - func[352] <lv_task_create_basic>
+ - func[353] <lv_task_create>
+ - func[354] <lv_task_set_cb>
+ - func[355] <lv_task_set_period>
+ - func[356] <lv_task_set_prio>
+ - func[357] <lv_task_ready>
+ - func[358] <lv_anim_path_linear>
+ - func[359] <_lv_anim_core_init>
+ - func[360] <anim_task>
+ - func[361] <anim_mark_list_change>
+ - func[362] <anim_ready_handler>
+ - func[363] <lv_anim_init>
+ - func[364] <_lv_memcpy_small.5>
+ - func[365] <lv_anim_start>
+ - func[366] <lv_anim_del>
+ - func[367] <lv_anim_get>
+ - func[368] <lv_anim_speed_to_time>
+ - func[369] <_lv_mem_init>
+ - func[370] <_lv_memset_00>
+ - func[371] <lv_mem_alloc>
+ - func[372] <ent_get_next>
+ - func[373] <ent_alloc>
+ - func[374] <ent_trunc>
+ - func[375] <lv_mem_free>
+ - func[376] <lv_mem_defrag>
+ - func[377] <lv_mem_realloc>
+ - func[378] <_lv_mem_get_size>
+ - func[379] <_lv_memcpy>
+ - func[380] <_lv_memset>
+ - func[381] <_lv_mem_buf_get>
+ - func[382] <_lv_mem_buf_release>
+ - func[383] <_lv_mem_buf_free_all>
+ - func[384] <_lv_memset_ff>
+ - func[385] <_lv_ll_init>
+ - func[386] <_lv_ll_ins_head>
+ - func[387] <node_set_prev>
+ - func[388] <node_set_next>
+ - func[389] <_lv_ll_ins_prev>
+ - func[390] <_lv_ll_get_head>
+ - func[391] <_lv_ll_get_prev>
+ - func[392] <_lv_ll_ins_tail>
+ - func[393] <_lv_ll_remove>
+ - func[394] <_lv_ll_get_next>
+ - func[395] <_lv_ll_get_tail>
+ - func[396] <_lv_ll_move_before>
+ - func[397] <_lv_ll_is_empty>
+ - func[398] <lv_color_fill>
+ - func[399] <lv_color_lighten>
+ - func[400] <lv_color_mix.1>
+ - func[401] <lv_color_darken>
+ - func[402] <lv_color_hsv_to_rgb>
+ - func[403] <lv_color_make.1>
+ - func[404] <lv_txt_utf8_size>
+ - func[405] <lv_txt_utf8_next>
+ - func[406] <lv_txt_utf8_prev>
+ - func[407] <lv_txt_utf8_get_byte_id>
+ - func[408] <lv_txt_utf8_get_char_id>
+ - func[409] <lv_txt_utf8_get_length>
+ - func[410] <_lv_txt_get_size>
+ - func[411] <lv_font_get_line_height.1>
+ - func[412] <_lv_txt_get_next_line>
+ - func[413] <_lv_txt_get_width>
+ - func[414] <lv_txt_get_next_word>
+ - func[415] <_lv_txt_is_cmd>
+ - func[416] <is_break_char>
+ - func[417] <_lv_trigo_sin>
+ - func[418] <_lv_sqrt>
+ - func[419] <_lv_log_add>
+ - func[420] <_lv_utils_bsearch>
+ - func[421] <_out_buffer>
+ - func[422] <_vsnprintf>
+ - func[423] <_out_null>
+ - func[424] <_is_digit>
+ - func[425] <_atoi>
+ - func[426] <_ntoa_long_long>
+ - func[427] <_ntoa_long>
+ - func[428] <_strnlen_s>
+ - func[429] <lv_vsnprintf>
+ - func[430] <_ntoa_format>
+ - func[431] <_out_rev>
+ - func[432] <lv_debug_check_null>
+ - func[433] <lv_debug_log_error>
+ - func[434] <lv_theme_set_act>
+ - func[435] <lv_theme_apply>
+ - func[436] <clear_styles>
+ - func[437] <apply_theme>
+ - func[438] <lv_theme_get_font_normal>
+ - func[439] <lv_theme_material_init>
+ - func[440] <theme_apply>
+ - func[441] <basic_init>
+ - func[442] <cont_init>
+ - func[443] <btn_init>
+ - func[444] <label_init>
+ - func[445] <bar_init>
+ - func[446] <img_init>
+ - func[447] <line_init>
+ - func[448] <led_init>
+ - func[449] <slider_init>
+ - func[450] <switch_init>
+ - func[451] <linemeter_init>
+ - func[452] <gauge_init>
+ - func[453] <arc_init>
+ - func[454] <spinner_init>
+ - func[455] <chart_init>
+ - func[456] <calendar_init>
+ - func[457] <cpicker_init>
+ - func[458] <checkbox_init>
+ - func[459] <btnmatrix_init>
+ - func[460] <keyboard_init>
+ - func[461] <msgbox_init>
+ - func[462] <page_init>
+ - func[463] <textarea_init>
+ - func[464] <spinbox_init>
+ - func[465] <list_init>
+ - func[466] <ddlist_init>
+ - func[467] <roller_init>
+ - func[468] <tabview_init>
+ - func[469] <tileview_init>
+ - func[470] <table_init>
+ - func[471] <win_init>
+ - func[472] <tabview_win_shared_init>
+ - func[473] <style_init_reset>
+ - func[474] <lv_style_set_bg_opa>
+ - func[475] <lv_color_hex.1>
+ - func[476] <lv_style_set_bg_color>
+ - func[477] <lv_style_set_text_color>
+ - func[478] <lv_style_set_value_color>
+ - func[479] <lv_style_set_text_font>
+ - func[480] <lv_style_set_value_font>
+ - func[481] <lv_style_set_radius>
+ - func[482] <lv_style_set_border_color>
+ - func[483] <lv_style_set_border_width>
+ - func[484] <lv_style_set_border_post>
+ - func[485] <lv_style_set_image_recolor>
+ - func[486] <lv_style_set_line_color>
+ - func[487] <lv_style_set_line_width>
+ - func[488] <lv_style_set_pad_left>
+ - func[489] <lv_style_set_pad_right>
+ - func[490] <lv_style_set_pad_top>
+ - func[491] <lv_style_set_pad_bottom>
+ - func[492] <lv_style_set_pad_inner>
+ - func[493] <lv_style_set_transition_time>
+ - func[494] <lv_style_set_transition_prop_6>
+ - func[495] <lv_color_hex3>
+ - func[496] <lv_style_set_transition_prop_5>
+ - func[497] <lv_color_mix.2>
+ - func[498] <lv_style_set_border_opa>
+ - func[499] <lv_style_set_outline_width>
+ - func[500] <lv_style_set_outline_opa>
+ - func[501] <lv_style_set_outline_color>
+ - func[502] <lv_style_set_transition_prop_4>
+ - func[503] <lv_style_set_transition_delay>
+ - func[504] <lv_style_set_shadow_width>
+ - func[505] <lv_style_set_shadow_color>
+ - func[506] <lv_style_set_shadow_spread>
+ - func[507] <lv_style_set_margin_left>
+ - func[508] <lv_style_set_margin_right>
+ - func[509] <lv_style_set_margin_top>
+ - func[510] <lv_style_set_margin_bottom>
+ - func[511] <lv_style_set_scale_width>
+ - func[512] <lv_style_set_scale_grad_color>
+ - func[513] <lv_style_set_scale_end_color>
+ - func[514] <lv_style_set_scale_end_line_width>
+ - func[515] <lv_style_set_scale_end_border_width>
+ - func[516] <lv_style_set_size>
+ - func[517] <lv_style_set_line_rounded>
+ - func[518] <lv_style_set_line_dash_width>
+ - func[519] <lv_style_set_line_dash_gap>
+ - func[520] <lv_style_set_border_side>
+ - func[521] <lv_style_set_outline_pad>
+ - func[522] <lv_style_set_pattern_image>
+ - func[523] <lv_style_set_pattern_recolor>
+ - func[524] <lv_style_set_clip_corner>
+ - func[525] <lv_style_set_transform_width>
+ - func[526] <lv_style_set_text_line_space>
+ - func[527] <lv_color_make.2>
+ - func[528] <lv_draw_mask_add>
+ - func[529] <lv_draw_mask_apply>
+ - func[530] <lv_draw_mask_remove_id>
+ - func[531] <lv_draw_mask_remove_custom>
+ - func[532] <lv_draw_mask_get_cnt>
+ - func[533] <lv_draw_mask_line_points_init>
+ - func[534] <lv_draw_mask_line>
+ - func[535] <line_mask_flat>
+ - func[536] <line_mask_steep>
+ - func[537] <lv_draw_mask_radius_init>
+ - func[538] <lv_area_get_width.5>
+ - func[539] <lv_area_get_height.5>
+ - func[540] <lv_draw_mask_radius>
+ - func[541] <lv_area_copy.4>
+ - func[542] <_lv_memcpy_small.6>
+ - func[543] <mask_mix>
+ - func[544] <sqrt_approx>
+ - func[545] <_lv_blend_fill>
+ - func[546] <lv_area_get_width.6>
+ - func[547] <fill_set_px>
+ - func[548] <fill_normal>
+ - func[549] <fill_blended>
+ - func[550] <lv_area_get_height.6>
+ - func[551] <lv_color_mix.3>
+ - func[552] <lv_color_premult>
+ - func[553] <lv_color_mix_premult>
+ - func[554] <color_blend_true_color_additive>
+ - func[555] <color_blend_true_color_subtractive>
+ - func[556] <_lv_blend_map>
+ - func[557] <map_set_px>
+ - func[558] <map_normal>
+ - func[559] <map_blended>
+ - func[560] <lv_draw_rect_dsc_init>
+ - func[561] <lv_draw_rect>
+ - func[562] <lv_area_get_height.7>
+ - func[563] <lv_area_get_width.7>
+ - func[564] <draw_bg>
+ - func[565] <draw_pattern>
+ - func[566] <draw_border>
+ - func[567] <draw_value_str>
+ - func[568] <draw_outline>
+ - func[569] <lv_area_copy.5>
+ - func[570] <grad_get>
+ - func[571] <draw_full_border>
+ - func[572] <_lv_memcpy_small.7>
+ - func[573] <lv_color_mix.4>
+ - func[574] <lv_draw_label_dsc_init>
+ - func[575] <lv_draw_label>
+ - func[576] <lv_area_get_width.8>
+ - func[577] <lv_font_get_line_height.2>
+ - func[578] <_lv_memcpy_small.8>
+ - func[579] <hex_char_to_num>
+ - func[580] <lv_color_make.3>
+ - func[581] <lv_draw_letter>
+ - func[582] <draw_letter_subpx>
+ - func[583] <draw_letter_normal>
+ - func[584] <lv_draw_line_dsc_init>
+ - func[585] <lv_draw_line>
+ - func[586] <draw_line_hor>
+ - func[587] <draw_line_ver>
+ - func[588] <draw_line_skew>
+ - func[589] <lv_area_get_width.9>
+ - func[590] <lv_draw_img_dsc_init>
+ - func[591] <lv_draw_img>
+ - func[592] <show_error>
+ - func[593] <lv_img_draw_core>
+ - func[594] <lv_img_cf_is_chroma_keyed>
+ - func[595] <lv_img_cf_has_alpha>
+ - func[596] <lv_area_copy.6>
+ - func[597] <lv_area_get_width.10>
+ - func[598] <lv_area_get_height.8>
+ - func[599] <lv_draw_map>
+ - func[600] <lv_img_cf_get_px_size>
+ - func[601] <lv_img_src_get_type>
+ - func[602] <_lv_memcpy_small.9>
+ - func[603] <lv_color_premult.1>
+ - func[604] <_lv_img_buf_transform>
+ - func[605] <lv_color_mix_premult.1>
+ - func[606] <_lv_img_decoder_init>
+ - func[607] <lv_img_decoder_create>
+ - func[608] <lv_img_decoder_built_in_close>
+ - func[609] <lv_img_decoder_built_in_read_line>
+ - func[610] <lv_img_decoder_built_in_open>
+ - func[611] <lv_img_decoder_built_in_info>
+ - func[612] <lv_img_decoder_set_info_cb>
+ - func[613] <lv_img_decoder_set_open_cb>
+ - func[614] <lv_img_decoder_set_read_line_cb>
+ - func[615] <lv_img_decoder_set_close_cb>
+ - func[616] <lv_color_make.4>
+ - func[617] <lv_img_decoder_built_in_line_true_color>
+ - func[618] <lv_img_decoder_built_in_line_alpha>
+ - func[619] <lv_img_decoder_built_in_line_indexed>
+ - func[620] <lv_img_decoder_get_info>
+ - func[621] <lv_img_decoder_open>
+ - func[622] <lv_img_decoder_read_line>
+ - func[623] <lv_img_decoder_close>
+ - func[624] <_lv_img_cache_open>
+ - func[625] <lv_img_cache_set_size>
+ - func[626] <lv_img_cache_invalidate_src>
+ - func[627] <lv_img_buf_get_px_color>
+ - func[628] <_lv_memcpy_small.10>
+ - func[629] <lv_img_buf_get_px_alpha>
+ - func[630] <_lv_img_buf_transform_init>
+ - func[631] <_lv_img_buf_get_transformed_area>
+ - func[632] <_lv_img_buf_transform_anti_alias>
+ - func[633] <lv_color_mix.5>
+ - func[634] <lv_port_disp_init>
+ - func[635] <disp_flush>
+ - func[636] <disp_init>
+ - func[637] <Pinetime::Applications::Screens::BatteryIcon::GetBatteryIcon(float)>
+ - func[638] <Pinetime::Applications::Screens::BatteryIcon::GetPlugIcon(bool)>
+ - func[639] <Pinetime::Applications::Screens::BleIcon::GetIcon(bool)>
+ - func[640] <Pinetime::Applications::Screens::Clock::Clock(DisplayApp*, Pinetime::Controllers::DateTime&, Pinetime::Controllers::Battery&, Pinetime::Controllers::Ble&)>
+ - func[641] <event_handler(_lv_obj_t*, unsigned char)>
+ - func[642] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::DirtyValue(unsigned char)>
+ - func[643] <Pinetime::Applications::Screens::DirtyValue<bool>::DirtyValue(bool)>
+ - func[644] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point()>
+ - func[645] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::DirtyValue(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >)>
+ - func[646] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::DirtyValue(unsigned int)>
+ - func[647] <lv_scr_act()>
+ - func[648] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::zero()>
+ - func[649] <Pinetime::Applications::Screens::Clock::OnObjectEvent(_lv_obj_t*, unsigned char)>
+ - func[650] <Pinetime::Applications::Screens::Clock::Refresh()>
+ - func[651] <Pinetime::Controllers::Battery::PercentRemaining() const>
+ - func[652] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::operator=(unsigned char const&)>
+ - func[653] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::IsUpdated() const>
+ - func[654] <Pinetime::Applications::Screens::DirtyValue<unsigned char>::Get()>
+ - func[655] <Pinetime::Controllers::Battery::IsCharging() const>
+ - func[656] <Pinetime::Controllers::Battery::IsPowerPresent() const>
+ - func[657] <Pinetime::Controllers::Ble::IsConnected() const>
+ - func[658] <Pinetime::Applications::Screens::DirtyValue<bool>::operator=(bool const&)>
+ - func[659] <Pinetime::Applications::Screens::DirtyValue<bool>::IsUpdated() const>
+ - func[660] <Pinetime::Applications::Screens::DirtyValue<bool>::Get()>
+ - func[661] <Pinetime::Controllers::DateTime::CurrentDateTime() const>
+ - func[662] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::operator=(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[663] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::IsUpdated() const>
+ - func[664] <Pinetime::Applications::Screens::DirtyValue<std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > >::Get()>
+ - func[665] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[666] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[667] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > date::make_time<long long, std::__2::ratio<1ll, 1000000000ll>, void>(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[668] <date::year_month_day::year_month_day(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >)>
+ - func[669] <date::year_month_day::year() const>
+ - func[670] <date::year::operator int() const>
+ - func[671] <date::year_month_day::month() const>
+ - func[672] <date::month::operator unsigned int() const>
+ - func[673] <date::year_month_day::day() const>
+ - func[674] <date::day::operator unsigned int() const>
+ - func[675] <date::year_month_day::operator std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >() const>
+ - func[676] <date::weekday::weekday(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > > const&)>
+ - func[677] <date::weekday::iso_encoding() const>
+ - func[678] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hours() const>
+ - func[679] <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::count() const>
+ - func[680] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::minutes() const>
+ - func[681] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::count() const>
+ - func[682] <Pinetime::Applications::Screens::Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days)>
+ - func[683] <Pinetime::Applications::Screens::Clock::MonthToString(Pinetime::Controllers::DateTime::Months)>
+ - func[684] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::IsUpdated() const>
+ - func[685] <Pinetime::Applications::Screens::DirtyValue<unsigned int>::Get()>
+ - func[686] <bool std::__2::chrono::operator!=<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[687] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_since_epoch() const>
+ - func[688] <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::floor<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[689] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_point(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[690] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::hh_mm_ss(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[691] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::time_since_epoch() const>
+ - func[692] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[693] <date::year_month_day::from_days(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >)>
+ - func[694] <date::year_month_day::to_days() const>
+ - func[695] <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::count() const>
+ - func[696] <date::weekday::weekday_from_days(int)>
+ - func[697] <std::__2::chrono::duration_values<long long>::zero()>
+ - func[698] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[699] <std::__2::enable_if<detail::no_overflow<std::__2::ratio<1ll, 1000000000ll>, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::period>::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type date::trunc<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[700] <bool std::__2::chrono::operator><int, std::__2::ratio<86400ll, 1ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[701] <std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, int>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[702] <std::__2::common_type<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::operator-<int, std::__2::ratio<86400ll, 1ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[703] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::value, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[704] <std::__2::enable_if<!(std::chrono::treat_as_floating_point<int>::value), int>::type date::detail::trunc<int>(int)>
+ - func[705] <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[706] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::ratio<1ll, 86400000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[707] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::count() const>
+ - func[708] <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[709] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<86400ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<int>::value)))), void>::type*)>
+ - func[710] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, int, std::__2::ratio<86400ll, 1ll> >(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&)>
+ - func[711] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<86400000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<int, std::__2::ratio<86400ll, 1ll> > const&) const>
+ - func[712] <std::__2::enable_if<std::numeric_limits<long long>::is_signed, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type date::detail::abs<long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >)>
+ - func[713] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[714] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[715] <std::__2::common_type<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long, std::__2::ratio<60ll, 1ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[716] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[717] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[718] <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::decimal_format_seconds(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[719] <bool std::__2::chrono::operator<<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[720] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::ratio<1ll, 3600000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[721] <bool std::__2::chrono::operator>=<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[722] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+() const>
+ - func[723] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator-() const>
+ - func[724] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<60ll, 1ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[725] <std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[726] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<1ll, 60000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[727] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<60ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[728] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<3600ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long>::value)))), void>::type*)>
+ - func[729] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[730] <std::__2::common_type<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > >::type std::__2::chrono::operator-<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[731] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[732] <std::__2::chrono::__duration_lt<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[733] <std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[734] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::value, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[735] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::ratio<60ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[736] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<60ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&)>
+ - func[737] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<60000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<60ll, 1ll> > const&) const>
+ - func[738] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long, std::__2::ratio<3600ll, 1ll> >(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&)>
+ - func[739] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<3600000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long, std::__2::ratio<3600ll, 1ll> > const&) const>
+ - func[740] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::ratio<1ll, 1000000000ll>, true, false>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[741] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[742] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1ll, 1ll>, true, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[743] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[744] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[745] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[746] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::count() const>
+ - func[747] <date::year::year(int)>
+ - func[748] <date::month::month(unsigned int)>
+ - func[749] <date::day::day(unsigned int)>
+ - func[750] <date::year_month_day::year_month_day(date::year const&, date::month const&, date::day const&)>
+ - func[751] <date::operator<=(date::month const&, date::month const&)>
+ - func[752] <date::operator<(date::month const&, date::month const&)>
+ - func[753] <bool std::__2::chrono::operator==<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&, std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > > const&)>
+ - func[754] <bool std::__2::chrono::operator==<long long, std::__2::ratio<1ll, 1000000000ll>, long long, std::__2::ratio<1ll, 1000000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[755] <std::__2::chrono::__duration_eq<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&) const>
+ - func[756] <create_clock>
+ - func[757] <Pinetime::Controllers::DateTime::DateTime()>
+ - func[758] <Pinetime::Controllers::Battery::Battery()>
+ - func[759] <Pinetime::Controllers::Ble::Ble()>
+ - func[760] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<int>(int const&, std::__2::enable_if<(is_convertible<int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<int>::value))), void>::type*)>
+ - func[761] <refresh_clock>
+ - func[762] <update_clock>
+ - func[763] <Pinetime::Controllers::DateTime::SetTime(unsigned short, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned int)>
+ - func[764] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::time_point<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >(std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > > const&, std::__2::enable_if<is_convertible<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, void>::type*)>
+ - func[765] <Pinetime::Controllers::DateTime::UpdateTime(unsigned int)>
+ - func[766] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_since_epoch() const>
+ - func[767] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::duration<long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1000000ll>, std::__2::ratio<1ll, 1000000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[768] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<unsigned int>(unsigned int const&, std::__2::enable_if<(is_convertible<unsigned int, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<unsigned int>::value))), void>::type*)>
+ - func[769] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[770] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[771] <date::hh_mm_ss<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[772] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >::operator+=(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > const&)>
+ - func[773] <date::detail::decimal_format_seconds<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::seconds() const>
+ - func[774] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, long long, std::__2::ratio<1ll, 1000000ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[775] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000000ll> >, std::__2::ratio<1000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&) const>
+ - func[776] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::count() const>
+ - func[777] <Pinetime::Components::LittleVgl::LittleVgl(Pinetime::Drivers::St7789&, Pinetime::Drivers::Cst816S&)>
+ - func[778] <Pinetime::Components::LittleVgl::InitTheme()>
+ - func[779] <Pinetime::Components::LittleVgl::InitBaseTheme()>
+ - func[780] <Pinetime::Components::LittleVgl::InitThemeContainer()>
+ - func[781] <Pinetime::Components::LittleVgl::InitThemeButton()>
+ - func[782] <Pinetime::Components::LittleVgl::InitThemeLabel()>
+ - func[783] <Pinetime::Components::LittleVgl::InitThemeLine()>
+ - func[784] <Pinetime::Components::LittleVgl::InitThemeLed()>
+ - func[785] <Pinetime::Components::LittleVgl::InitThemeImage()>
+ - func[786] <Pinetime::Components::LittleVgl::InitThemeBar()>
+ - func[787] <Pinetime::Components::LittleVgl::InitThemeSlider()>
+ - func[788] <Pinetime::Components::LittleVgl::InitThemeSwitch()>
+ - func[789] <Pinetime::Components::LittleVgl::InitThemeMeter()>
+ - func[790] <Pinetime::Components::LittleVgl::InitThemeGauge()>
+ - func[791] <Pinetime::Components::LittleVgl::InitThemeArc()>
+ - func[792] <Pinetime::Components::LittleVgl::InitThemePreload()>
+ - func[793] <Pinetime::Components::LittleVgl::InitThemeChart()>
+ - func[794] <Pinetime::Components::LittleVgl::InitThemeCalendar()>
+ - func[795] <Pinetime::Components::LittleVgl::InitThemeCheckBox()>
+ - func[796] <Pinetime::Components::LittleVgl::InitThemeButtonMatrix()>
+ - func[797] <Pinetime::Components::LittleVgl::InitThemeKnob()>
+ - func[798] <Pinetime::Components::LittleVgl::InitThemeMessageBox()>
+ - func[799] <Pinetime::Components::LittleVgl::InitThemePage()>
+ - func[800] <Pinetime::Components::LittleVgl::InitThemeTextArea()>
+ - func[801] <Pinetime::Components::LittleVgl::InitThemeSpinBox()>
+ - func[802] <Pinetime::Components::LittleVgl::InitThemeList()>
+ - func[803] <Pinetime::Components::LittleVgl::InitThemeDropDownList()>
+ - func[804] <Pinetime::Components::LittleVgl::InitThemeRoller()>
+ - func[805] <Pinetime::Components::LittleVgl::InitThemeTabView()>
+ - func[806] <Pinetime::Components::LittleVgl::InitThemeTileView()>
+ - func[807] <Pinetime::Components::LittleVgl::InitThemeTable()>
+ - func[808] <Pinetime::Components::LittleVgl::InitThemeWindow()>
+ - func[809] <lv_style_set_text_font(lv_style_t*, unsigned char, _lv_font_struct const*)>
+ - func[810] <lv_style_set_bg_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[811] <lv_style_set_bg_grad_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[812] <lv_style_set_text_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[813] <lv_style_set_image_recolor(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[814] <lv_style_set_pad_bottom(lv_style_t*, unsigned char, short)>
+ - func[815] <lv_style_set_pad_top(lv_style_t*, unsigned char, short)>
+ - func[816] <lv_style_set_pad_left(lv_style_t*, unsigned char, short)>
+ - func[817] <lv_style_set_pad_right(lv_style_t*, unsigned char, short)>
+ - func[818] <lv_style_set_border_width(lv_style_t*, unsigned char, short)>
+ - func[819] <lv_style_set_pad_inner(lv_style_t*, unsigned char, short)>
+ - func[820] <lv_style_set_radius(lv_style_t*, unsigned char, short)>
+ - func[821] <lv_style_set_border_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[822] <lv_style_set_border_opa(lv_style_t*, unsigned char, unsigned char)>
+ - func[823] <lv_style_set_line_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[824] <lv_style_set_line_width(lv_style_t*, unsigned char, short)>
+ - func[825] <lv_color_hex3(unsigned int)>
+ - func[826] <lv_style_set_shadow_color(lv_style_t*, unsigned char, lv_color16_t)>
+ - func[827] <lv_style_set_shadow_width(lv_style_t*, unsigned char, short)>
+ - func[828] <lv_color_make(unsigned char, unsigned char, unsigned char)>
+ - func[829] <put_display_px>
+ - func[830] <get_display_buffer>
+ - func[831] <get_display_width>
+ - func[832] <get_display_height>
+ - func[833] <test_display>
+ - func[834] <init_display>
+ - func[835] <render_widgets>
+ - func[836] <lv_scr_act>
+ - func[837] <render_display>
+ - func[838] <main>
+ - func[839] <__stpcpy>
+ - func[840] <strcpy>
+ - func[841] <strcmp>
+ - func[842] <__errno_location>
+ - func[843] <vsnprintf>
+ - func[844] <sn_write>
+ - func[845] <vsprintf>
+ - func[846] <sprintf>
+ - func[847] <isdigit>
+ - func[848] <memchr>
+ - func[849] <pthread_self>
+ - func[850] <wcrtomb>
+ - func[851] <__pthread_self>
+ - func[852] <wctomb>
+ - func[853] <frexp>
+ - func[854] <__vfprintf_internal>
+ - func[855] <printf_core>
+ - func[856] <out>
+ - func[857] <getint>
+ - func[858] <pop_arg>
+ - func[859] <fmt_x>
+ - func[860] <fmt_o>
+ - func[861] <fmt_u>
+ - func[862] <pad>
+ - func[863] <vfprintf>
+ - func[864] <fmt_fp>
+ - func[865] <pop_arg_long_double>
+ - func[866] <__DOUBLE_BITS>
+ - func[867] <__ashlti3>
+ - func[868] <__lshrti3>
+ - func[869] <__trunctfdf2>
+ - func[870] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >::duration<long>(long const&, std::__2::enable_if<(is_convertible<long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long>::value))), void>::type*)>
+ - func[871] <std::__2::chrono::time_point<std::__2::chrono::system_clock, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::time_point(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > const&)>
+ - func[872] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&, std::__2::enable_if<(__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::value) && ((std::__2::integral_constant<bool, false>::value) || (((__no_overflow<std::__2::ratio<1ll, 1ll>, std::__2::ratio<1ll, 1000000ll> >::type::den) == (1)) && (!(treat_as_floating_point<long long>::value)))), void>::type*)>
+ - func[873] <std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >::duration<long long>(long long const&, std::__2::enable_if<(is_convertible<long long, long long>::value) && ((std::__2::integral_constant<bool, false>::value) || (!(treat_as_floating_point<long long>::value))), void>::type*)>
+ - func[874] <std::__2::chrono::system_clock::from_time_t(long)>
+ - func[875] <std::__2::enable_if<__is_duration<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::value, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> > >::type std::__2::chrono::duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, long long, std::__2::ratio<1ll, 1ll> >(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&)>
+ - func[876] <std::__2::chrono::__duration_cast<std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> >, std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1000000ll> >, std::__2::ratio<1000000ll, 1ll>, false, true>::operator()(std::__2::chrono::duration<long long, std::__2::ratio<1ll, 1ll> > const&) const>
+ - func[877] <operator new(unsigned long)>
+ - func[878] <_get_tzname>
+ - func[879] <_get_daylight>
+ - func[880] <_get_timezone>
+ - func[881] <__lock>
+ - func[882] <__unlock>
+ - func[883] <__ofl_lock>
+ - func[884] <__ofl_unlock>
+ - func[885] <__wasi_syscall_ret>
+ - func[886] <__stdio_write>
+ - func[887] <void (*std::__2::(anonymous namespace)::__libcpp_atomic_load<void (*)()>(void (* const*)(), int))()>
+ - func[888] <std::get_new_handler()>
+ - func[889] <dlmalloc>
+ - func[890] <dlfree>
+ - func[891] <sbrk>
+ - func[892] <memcpy>
+ - func[893] <memset>
+ - func[894] <__towrite>
+ - func[895] <__overflow>
+ - func[896] <__fwritex>
+ - func[897] <fwrite>
+ - func[898] <__emscripten_stdout_close>
+ - func[899] <__emscripten_stdout_seek>
+ - func[900] <printf>
+ - func[901] <fputs>
+ - func[902] <puts>
+ - func[903] <__lockfile>
+ - func[904] <__unlockfile>
+ - func[905] <strlen>
+ - func[906] <stackSave>
+ - func[907] <stackRestore>
+ - func[908] <stackAlloc>
+ - func[909] <fflush>
+ - func[910] <__fflush_unlocked>
+ - func[911] <dynCall_jiji>
+ - func[912] <legalstub$dynCall_jiji>
+ - func[913] <__growWasmMemory>
+ - func[911] local[0] <fptr>
+ - func[911] local[1] <0>
+ - func[911] local[2] <1>
+ - func[911] local[3] <2>
+ - func[913] local[0] <newSize>
Custom:
- name: ".debug_info"
Custom:
diff --git a/docs/lvgl.wasm b/docs/lvgl.wasm
index e0697e6..9c828b2 100644
--- a/docs/lvgl.wasm
+++ b/docs/lvgl.wasm
Binary files differ