Home
last modified time | relevance | path

Searched full:add (Results 1 – 25 of 1223) sorted by relevance

12345678910>>...49

/Zephyr-Core-3.5.0/tests/kernel/fpu_sharing/generic/src/
Dfloat_regs_riscv_gcc.h54 "add t0, t0, t1\n" in _load_all_float_registers()
56 "add t0, t0, t1\n" in _load_all_float_registers()
58 "add t0, t0, t1\n" in _load_all_float_registers()
60 "add t0, t0, t1\n" in _load_all_float_registers()
62 "add t0, t0, t1\n" in _load_all_float_registers()
64 "add t0, t0, t1\n" in _load_all_float_registers()
66 "add t0, t0, t1\n" in _load_all_float_registers()
68 "add t0, t0, t1\n" in _load_all_float_registers()
70 "add t0, t0, t1\n" in _load_all_float_registers()
72 "add t0, t0, t1\n" in _load_all_float_registers()
[all …]
/Zephyr-Core-3.5.0/modules/hal_infineon/
DCMakeLists.txt10 ## Add PDL sources for XMC devices
16 ## Add core-lib sources for CAT1 devices
19 ## Add mtb-pdl-cat1 sources for CAT1 devices
22 ## Add mtb-templates-cat1 sources for CAT1 devices
27 ## Add mtb-hal-cat1 sources for CAT1 devices
30 ## Add catcm0p sleep images for CM0 Devices
35 ## Add abstraction-rtos sources
39 ## Add btstack-integration for CYW43xx BT devices
/Zephyr-Core-3.5.0/tests/ztest/fail/
DKconfig8 bool "Add a failed assert in the after phase"
11 bool "Add a failed assert in the teardown phase"
14 bool "Add a failed assume in the after phase"
17 bool "Add a failed assume in the teardown phase"
20 bool "Add a call to ztest_test_pass() in the after phase"
23 bool "Add a call to ztest_test_pass() in the teardown phase"
26 bool "Add a test which fails a zassume() call"
/Zephyr-Core-3.5.0/samples/net/vlan/
Dvlan-setup-linux.sh46 ip link add link ${IFACE} name ${VLAN_NAME_PREFIX}.100 type vlan id 100
47 ip link add link ${IFACE} name ${VLAN_NAME_PREFIX}.200 type vlan id 200
52 ip -6 addr add ${PREFIX_1_IPV6}::2 dev ${VLAN_NAME_PREFIX}.100
53 ip -6 route add ${PREFIX_1_IPV6}::/${PREFIXLEN_1_IPV6} \
56 ip -6 addr add ${PREFIX_2_IPV6}::2 dev ${VLAN_NAME_PREFIX}.200
57 ip -6 route add ${PREFIX_2_IPV6}::/${PREFIXLEN_2_IPV6} \
60 ip addr add ${PREFIX_1_IPV4}.2 dev ${VLAN_NAME_PREFIX}.100
61 ip route add ${PREFIX_1_IPV4}/${PREFIXLEN_1_IPV4} dev ${VLAN_NAME_PREFIX}.100
63 ip addr add ${PREFIX_2_IPV4}.2 dev ${VLAN_NAME_PREFIX}.200
64 ip route add ${PREFIX_2_IPV4}/${PREFIXLEN_2_IPV4} dev ${VLAN_NAME_PREFIX}.200
/Zephyr-Core-3.5.0/tests/subsys/mgmt/ec_host_cmd/simulator/src/
Dmain.c22 * struct ec_params_add - Parameters to the add command.
34 * struct ec_response_add - Response to the add command.
50 struct ec_params_add add; member
61 struct ec_response_add add; member
171 host_to_dut->header.data_len = sizeof(host_to_dut->add); in ZTEST()
172 host_to_dut->add.in_data = 0x10203040; in ZTEST()
180 sizeof(expected_dut_to_host->add); in ZTEST()
181 expected_dut_to_host->add.out_data = 0x11223344; in ZTEST()
192 host_to_dut->header.data_len = sizeof(host_to_dut->add); in ZTEST()
193 host_to_dut->add.in_data = 0x10203040; in ZTEST()
[all …]
/Zephyr-Core-3.5.0/soc/arm/infineon_cat1/psoc6/
DCMakeLists.txt8 # Add sections
11 # Add section for cm0p image ROM
14 # Add section for cm0p image RAM
/Zephyr-Core-3.5.0/tests/boot/test_mcuboot/
Dsysbuild.cmake4 # Add the mcuboot key file to the secondary swapped app
11 # Add the swapped app to the build
17 # Add the swapped app to the list of images to flash
/Zephyr-Core-3.5.0/subsys/settings/src/
Dsettings_line.c27 size_t w_size, rem, add; in settings_line_write() local
46 add = sizeof(len_field) % wbs; in settings_line_write()
47 if (add) { in settings_line_write()
48 w_size = wbs - add; in settings_line_write()
89 add = MIN(rem, sizeof(w_buf) - w_size); in settings_line_write()
90 memcpy(&w_buf[w_size], value, add); in settings_line_write()
91 value += add; in settings_line_write()
92 rem -= add; in settings_line_write()
93 w_size += add; in settings_line_write()
95 add = (w_size) % wbs; in settings_line_write()
[all …]
/Zephyr-Core-3.5.0/samples/net/sockets/dumb_http_server/
Doverlay-zeroconf.conf1 # Add hostname
10 # Add LLMNR responder
/Zephyr-Core-3.5.0/tests/kernel/mem_protect/mem_protect/src/
Dmem_domain.c81 0, "cannot add memory partition"); in test_mem_domain_setup()
90 * If domain is not NULL, add the child thread to that domain, instead of
211 0, "failed to add memory partition"); in ZTEST()
220 /* Extra partition that a user thread can't add to a domain */
237 0, "failed to add memory partition"); in mem_domain_add_partition_entry()
355 /**TESTPOINT: add to existing domain will do nothing */ in ZTEST()
384 * -# Try to add overlap_part to the memory domain. When adding the new
409 0, "should fail to add memory partition"); in ZTEST()
426 * - Add memory partitions one by one and more than architecture allows to add.
445 /* Add one more partition will fail due to exceeding */ in ZTEST()
[all …]
/Zephyr-Core-3.5.0/scripts/dts/python-devicetree/src/devicetree/
Dgrutils.py31 Add a node without any target to the graph.
33 self.__nodes.add(node)
37 Add a directed edge from the C{source} to the C{target}.
41 self.__edge_map[source].add(target)
43 self.__reverse_map[target].add(source)
44 self.__nodes.add(source)
45 self.__nodes.add(target)
60 self.__roots.add(n)
/Zephyr-Core-3.5.0/drivers/ethernet/
DKconfig.dsa26 Add support for KSZ8794 DSA device driver.
35 Add support for KSZ8863 DSA device driver.
41 Add support for tail tagging on DSA device.
/Zephyr-Core-3.5.0/scripts/
Dlist_boards.py67 ret.add(maybe_arch.name)
86 ret[arch].add(Board(board_name, arch, maybe_board))
96 # Remember to update west-completion.bash if you add or remove
100 help='add an architecture root, may be given more than once')
103 help='add a board root, may be given more than once')
/Zephyr-Core-3.5.0/samples/net/eth_native_posix/
Dnet_setup_host68 ip -6 address add $IPV6_ADDR_1 dev $IFACE
72 ip -6 route add $IPV6_ROUTE_1 dev $IFACE
76 ip address add $IPV4_ADDR_1 dev $IFACE
80 ip route add $IPV4_ROUTE_1 dev $IFACE
/Zephyr-Core-3.5.0/doc/releases/
Drelease-notes-1.8.rst29 * Add tickless kernel support
91 * Add block wise support to CoAP for well-known response
205 * ``ZEP-248`` - Add a BOARD/SOC porting guide
207 * ``ZEP-540`` - add APIs for asynchronous transfer callbacks
210 * ``ZEP-720`` - Add MAX30101 heart rate sensor driver
224 * ``ZEP-1388`` - Add support for KW40 SoC
225 * ``ZEP-1391`` - Add support for Hexiwear KW40
226 * ``ZEP-1392`` - Add FXAS21002 gyroscope sensor driver
229 * ``ZEP-1463`` - Add Zephyr Support in segger SystemView
240 * ``ZEP-1684`` - Add Atmel SAM family watchdog (WDT) driver
[all …]
Drelease-notes-1.5.rst73 - Add support for network buffer fragmentation.
74 - Add more net_buf big endian helpers.
131 * ``ZEP-225`` - Add kernel API to put SoC to Deep Sleep (DS) State
133 * ``ZEP-227`` - Add kernel API to put SoC to Low Power State (LPS)
142 * ``ZEP-272`` - nios2: add global pointer support
156 * ``ZEP-358`` - Add support for TMP112 sensor
157 * ``ZEP-412`` - Add driver API reentrancy support to RTC driver for LMT
158 * ``ZEP-414`` - Add driver API reentrancy support to flash driver
161 * ``ZEP-424`` - AON counter driver needs to add driver API reentrancy support
162 * ``ZEP-430`` - Add driver API reentrancy support to PWM shim driver
[all …]
Drelease-notes-1.6.rst179 * ``ZEP-1173`` - Add support for bonding remove
185 * ``ZEP-248`` - Add a BOARD/SOC porting guide
188 * ``ZEP-521`` - ARM - add choice to floating point ABI selection
194 * ``ZEP-622`` - Add FS API to truncate/shrink a file
196 * ``ZEP-635`` - Add FS API to grow a file
197 * ``ZEP-636`` - Add FS API to get volume total and free space
204 * ``ZEP-715`` - Add K64F clock configurations
205 * ``ZEP-716`` - Add Hexiwear board support
206 * ``ZEP-717`` - Add ksdk I2C shim driver
207 * ``ZEP-718`` - Add ksdk ethernet shim driver
[all …]
/Zephyr-Core-3.5.0/.github/ISSUE_TEMPLATE/
D006_nomination.md17 with Read permission do not have the permission to add reviewers to a pull
21 Triage permission level, which allows the user to add reviewers to a pull
36 Add links to 3-5 GitHub pull requests, in the Zephyr project, authored or
/Zephyr-Core-3.5.0/snippets/xen_dom0/
DREADME.rst12 How to add support of a new board
15 * add board dts overlay to this snippet which deletes/adds memory and deletes UART nodes;
16 * add correct memory and hypervisor nodes, based on regions Xen picked for Domain-0 on your setup.
50 you can add `zephyr-xenlib` by Xen-troops library to your project. It'll provide basic domain
/Zephyr-Core-3.5.0/samples/subsys/ipc/openamp/
Dsysbuild.cmake5 # Add external project
12 # Add dependencies so that the remote sample will be built first
/Zephyr-Core-3.5.0/samples/drivers/ipm/ipm_mcux/
Dsysbuild.cmake5 # Add external project
12 # Add dependencies so that the remote sample will be built first
/Zephyr-Core-3.5.0/doc/kernel/memory_management/
Dshared_multi_heap.rst17 using :c:func:`shared_multi_heap_pool_init()` and add the memory regions to
38 // Add the region to the pool
41 // Add another cacheable region
50 // Add a non-cacheable region
/Zephyr-Core-3.5.0/scripts/west_commands/zspdx/
Dwalker.py30 # should also add an SPDX document for the SDK?
163 # add it to pending relationships queue
194 # add it to pending relationships queue
221 # add it to pending relationships queue
249 # add it to pending relationships queue
266 # add its build file
291 # add Package to build Document
295 # create a target's build product File and add it to its Package
320 # add File to Package
323 # add file path link to Document and global links
[all …]
/Zephyr-Core-3.5.0/doc/connectivity/networking/
Dnetworking_with_multiple_instances.rst65 ip -6 address add $IPV6_ADDR_1 dev $INTERFACE nodad
66 ip -6 route add $IPV6_ROUTE_1 dev $INTERFACE
67 ip address add $IPV4_ADDR_1 dev $INTERFACE
68 ip route add $IPV4_ROUTE_1 dev $INTERFACE > /dev/null 2>&1
84 ip -6 address add $IPV6_ADDR_1 dev $INTERFACE nodad
85 ip -6 route add $IPV6_ROUTE_1 dev $INTERFACE
86 ip address add $IPV4_ADDR_1 dev $INTERFACE
87 ip route add $IPV4_ROUTE_1 dev $INTERFACE > /dev/null 2>&1
/Zephyr-Core-3.5.0/boards/
Ddeprecated.cmake8 # To add a board rename, add a line in following format:

12345678910>>...49