Home
last modified time | relevance | path

Searched refs:save (Results 1 – 25 of 77) sorted by relevance

1234

/Zephyr-Core-2.7.6/arch/sparc/core/
Dwindow_trap.S23 save
74 save
75 save
114 save
127 save
Dfault_trap.S52 save
108 save %sp, -64, %sp
Dinterrupt_trap.S58 save
314 save
/Zephyr-Core-2.7.6/samples/subsys/settings/
DREADME.rst58 basic load and save using registered handlers
64 save <alpha/beta/voltage> key directly: OK.
70 save all key-value pairs using registered handlers
100 save <gamma> key directly: OK.
/Zephyr-Core-2.7.6/subsys/console/
DKconfig34 to save RAM. You may need to increase it e.g. to support
43 to save RAM. You may need to increase it e.g. to support
/Zephyr-Core-2.7.6/arch/arm/core/aarch32/cortex_m/
Dvt_pointer_section.ld7 /* Reserved 4 bytes to save vector table base address */
/Zephyr-Core-2.7.6/doc/releases/
Drelease-notes-1.6.rst178 * :jira:`ZEP-1090` - CPU x86 save/restore using new QMSI bootloader flow
246 * :jira:`ZEP-993` - Quark SE (x86): Refactor save/restore execution context feature
248 * :jira:`ZEP-996` - Refactor save/restore feature from i2c_qmsi driver
249 * :jira:`ZEP-997` - Refactor save/restore feature from spi_qmsi driver
250 * :jira:`ZEP-998` - Refactor save/restore feature from uart_qmsi driver
251 * :jira:`ZEP-999` - Refactor save/restore feature from gpio_qmsi driver
252 * :jira:`ZEP-1000` - Refactor save/restore feature from rtc_qmsi driver
253 * :jira:`ZEP-1001` - Refactor save/restore feature from wdt_qmsi driver
254 * :jira:`ZEP-1002` - Refactor save/restore feature from counter_qmsi_aonpt driver
255 * :jira:`ZEP-1004` - Extend counter_qmsi_aon driver to support save/restore peripheral context
[all …]
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/
Ddump_trace.py50 etrace.save(args.output_file)
/Zephyr-Core-2.7.6/subsys/pm/
DKconfig55 may also save and restore states in these hook functions.
68 Enable Runtime Power Management to save power. With device runtime PM
/Zephyr-Core-2.7.6/lib/gui/lvgl/
DKconfig.image26 caching can save the continuous decoding of images. However the
/Zephyr-Core-2.7.6/doc/guides/arch/
Darc-support-status.rst81 .. [#f3] We only support save/restore ACCL/ACCH registers in task's context.
82 Rest of DSP/AGU registers save/restore isn't implemented but kernel
/Zephyr-Core-2.7.6/doc/reference/kernel/other/
Dfloat.rst108 the thread's stack. Thus, the kernel does not save or restore the FP
134 not to save or restore its FP context during thread context switching.
146 user on a case-by-case basis. A "lazy save" algorithm is used during context
177 not to save or restore its FP context during thread context switching.
185 the thread's stack. Thus, the kernel does not save or restore the FP
208 save or restore its FP context during thread context switching. This function
217 restored from the thread's stack. Thus, the kernel does not save or restore the
239 iff they were saved at the context save. Saving and restoring of the floating
254 FPU user or SSE user on a case-by-case basis. A "lazy save" algorithm is used
Dcpu_idle.rst56 /* put CPU to sleep to save power */
105 /* put CPU to sleep to save power */
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/lib/
Detrace.py68 def save(self, output_file): member in Etrace
/Zephyr-Core-2.7.6/cmake/
Dboards.cmake28 # FILE_OUT: Set to a file path to save the boards to a file. If not defined the
/Zephyr-Core-2.7.6/drivers/neural_net/
DKconfig.intel_gna38 0 ALWAYS_ON, GNA is always on with very minimal power save
/Zephyr-Core-2.7.6/doc/getting_started/
Dtoolchain_custom_cmake.rst41 If you do this, ``-C <initial-cache>`` `cmake option`_ may useful. If you save
44 as ``cmake -C my-toolchain.cmake ...`` to save typing.
/Zephyr-Core-2.7.6/scripts/
Dcheckstack.pl108 $re = qr/.*save.*%sp, -(([0-9]{2}|[3-9])[0-9]{2}), %sp/o;
/Zephyr-Core-2.7.6/doc/guides/build/kconfig/
Dmenuconfig.rst126 save-and-quit dialog (if there are changes to save):
131 Press :kbd:`Y` to save the kernel configuration options to the default
132 filename (:file:`zephyr/.config`). You will typically save to the default
/Zephyr-Core-2.7.6/doc/guides/dts/
Dtroubleshooting.rst85 To save preprocessor output when using GCC-based toolchains, add
86 ``-save-temps=obj`` to the ``EXTRA_CFLAGS`` CMake variable. For example, to
91 west build -b BOARD samples/hello_world -- -DEXTRA_CFLAGS=-save-temps=obj
/Zephyr-Core-2.7.6/doc/guides/optimizations/
Dfootprint.rst47 This option can be disabled to save a few bytes.
/Zephyr-Core-2.7.6/modules/nanopb/
DKconfig29 Disable error message support to save code size. Only error
/Zephyr-Core-2.7.6/doc/reference/settings/
Dindex.rst53 when ``settings_save()`` tries to save the settings or transfer to any
59 Backends are meant to load and save data to/from setting handlers, and
62 ``settings_dst_register()`` for backends that can save data. The current
75 This gets called when starting a save of all current settings using
/Zephyr-Core-2.7.6/doc/reference/storage/stream/
Dstream_flash.rst23 When performing such long running operations it can be useful to be able to save
/Zephyr-Core-2.7.6/subsys/bluetooth/host/
Dgatt.c5079 struct ccc_save *save = user_data; in ccc_save() local
5091 cfg = ccc_find_cfg(ccc, save->addr_with_id.addr, save->addr_with_id.id); in ccc_save()
5098 save->store[save->count].handle = handle; in ccc_save()
5099 save->store[save->count].value = cfg->value; in ccc_save()
5100 save->count++; in ccc_save()
5107 struct ccc_save save; in bt_gatt_store_ccc() local
5113 save.addr_with_id.addr = addr; in bt_gatt_store_ccc()
5114 save.addr_with_id.id = id; in bt_gatt_store_ccc()
5115 save.count = 0; in bt_gatt_store_ccc()
5117 bt_gatt_foreach_attr(0x0001, 0xffff, ccc_save, &save); in bt_gatt_store_ccc()
[all …]

1234