Home
last modified time | relevance | path

Searched refs:el (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/include/zephyr/arch/arm64/
Dlib_helpers.h160 static inline bool is_el_implemented(unsigned int el) in is_el_implemented() argument
164 if (el > 3) { in is_el_implemented()
168 shift = ID_AA64PFR0_EL1_SHIFT * el; in is_el_implemented()
/Zephyr-latest/arch/arm64/core/
Dvector_table.S30 .macro z_arm64_enter_exc xreg0, xreg1, el
43 .if \el == el1
67 .if \el == el0
84 .if \el == el0
Dfatal.c385 uint64_t el; in z_arm64_fatal_error() local
388 el = read_currentel(); in z_arm64_fatal_error()
390 switch (GET_EL(el)) { in z_arm64_fatal_error()
417 if (GET_EL(el) != MODE_EL0) { in z_arm64_fatal_error()
Dmmu.c929 static uint64_t get_tcr(int el) in get_tcr() argument
937 if (el == 1) { in get_tcr()
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dboard-catalog.js146 document.querySelectorAll('.tag').forEach(el => {
147 if (el.textContent.includes(tag)) el.remove();
/Zephyr-latest/subsys/bluetooth/host/
Dgatt.c1400 struct ds_peer *el; in gatt_delayed_store_find()
1403 el = &gatt_delayed_store.peer_list[i]; in gatt_delayed_store_find()
1404 if (el->id == id && in gatt_delayed_store_find()
1405 bt_addr_le_eq(peer_addr, &el->peer)) { in gatt_delayed_store_find()
1406 return el; in gatt_delayed_store_find()
1414 static void gatt_delayed_store_free(struct ds_peer *el) in gatt_delayed_store_free() argument
1416 if (el) { in gatt_delayed_store_free()
1417 el->id = 0; in gatt_delayed_store_free()
1418 memset(&el->peer, 0, sizeof(el->peer)); in gatt_delayed_store_free()
1419 atomic_set(el->flags, 0); in gatt_delayed_store_free()
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dreports.py110 el = ET.SubElement(eleTestcase, ReportStatus.FAIL, type="failure", message=f"{reason}")
112 el.text = log
115 el = ET.SubElement(eleTestcase, ReportStatus.ERROR, type="failure", message=f"{reason}")
117 el.text = log
/Zephyr-latest/
D.mailmap99 Radosław Koppel <radoslaw.koppel@nordicsemi.no> <r.koppel@k-el.com>
/Zephyr-latest/scripts/tests/twister/
Dtest_runner.py2764 print([mock.call(el) for el in expected_pipeline_elements])
2767 [mock.call(el) for el in expected_pipeline_elements]
/Zephyr-latest/scripts/
Dcheckpatch.pl4491 foreach my $el (@elements) {
4492 push(@fix_elements, substr($rawline, $off, length($el)));
4493 $off += length($el);