Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 835) sorted by relevance

12345678910>>...34

/Zephyr-latest/soc/cdns/xtensa_sample_controller/include/
D_soc_inthandlers.h93 struct _isr_table_entry *e = &_sw_isr_table[0]; in _xtensa_handle_one_int1() local
95 e->isr(e->arg); in _xtensa_handle_one_int1()
99 struct _isr_table_entry *e = &_sw_isr_table[1]; in _xtensa_handle_one_int1() local
101 e->isr(e->arg); in _xtensa_handle_one_int1()
105 struct _isr_table_entry *e = &_sw_isr_table[2]; in _xtensa_handle_one_int1() local
107 e->isr(e->arg); in _xtensa_handle_one_int1()
113 struct _isr_table_entry *e = &_sw_isr_table[3]; in _xtensa_handle_one_int1() local
115 e->isr(e->arg); in _xtensa_handle_one_int1()
119 struct _isr_table_entry *e = &_sw_isr_table[4]; in _xtensa_handle_one_int1() local
121 e->isr(e->arg); in _xtensa_handle_one_int1()
[all …]
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/tippy/
Dpopper.min.js7e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&de… argument
Dtippy-bundle.umd.min.js6e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")… argument
/Zephyr-latest/include/zephyr/dt-bindings/interrupt-controller/
Dmchp-xec-ecia.h24 #define MCHP_XEC_ECIA_GIRQ(e) ((e) & 0x1f) argument
25 #define MCHP_XEC_ECIA_GIRQ_POS(e) (((e) >> 8) & 0x1f) argument
26 #define MCHP_XEC_ECIA_NVIC_AGGR(e) (((e) >> 16) & 0xff) argument
27 #define MCHP_XEC_ECIA_NVIC_DIRECT(e) (((e) >> 24) & 0xff) argument
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/
Decb.c144 void ecb_encrypt_nonblocking(struct ecb *e) in ecb_encrypt_nonblocking() argument
147 if (e->in_key_le) { in ecb_encrypt_nonblocking()
148 mem_rcopy(&e->in_key_be[0], e->in_key_le, sizeof(e->in_key_be)); in ecb_encrypt_nonblocking()
150 if (e->in_clear_text_le) { in ecb_encrypt_nonblocking()
151 mem_rcopy(&e->in_clear_text_be[0], e->in_clear_text_le, in ecb_encrypt_nonblocking()
152 sizeof(e->in_clear_text_be)); in ecb_encrypt_nonblocking()
157 NRF_ECB->KEY.VALUE[3] = sys_get_be32(&e->in_key_be[0]); in ecb_encrypt_nonblocking()
158 NRF_ECB->KEY.VALUE[2] = sys_get_be32(&e->in_key_be[4]); in ecb_encrypt_nonblocking()
159 NRF_ECB->KEY.VALUE[1] = sys_get_be32(&e->in_key_be[8]); in ecb_encrypt_nonblocking()
160 NRF_ECB->KEY.VALUE[0] = sys_get_be32(&e->in_key_be[12]); in ecb_encrypt_nonblocking()
[all …]
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_util.c26 int32_t e = -1, v, f = 0; in lwm2m_float_to_b32() local
53 e++; in lwm2m_float_to_b32()
60 i = e; in lwm2m_float_to_b32()
63 if (!f && e < 0 && v < PRECISION32) { in lwm2m_float_to_b32()
65 e--; in lwm2m_float_to_b32()
80 e += 127; in lwm2m_float_to_b32()
92 b32[0] |= e >> 1; in lwm2m_float_to_b32()
93 b32[1] = (e & 1) << 7; in lwm2m_float_to_b32()
108 int32_t e = -1; in lwm2m_float_to_b64() local
135 e++; in lwm2m_float_to_b64()
[all …]
/Zephyr-latest/include/zephyr/dt-bindings/espi/
Dnpcx_espi.h19 #define ESPI_NPCX_VW_EX_INDEX(e) ((e) & 0xff) argument
20 #define ESPI_NPCX_VW_EX_GROUP_NUM(e) (((e) >> 8) & 0xf) argument
21 #define ESPI_NPCX_VW_EX_DIR(e) (((e) >> 12) & 0x1) argument
/Zephyr-latest/scripts/pylib/twister/
Dscl.py46 except yaml.scanner.ScannerError as e: # For errors parsing schema.yaml
47 mark = e.problem_mark
48 cmark = e.context_mark
50 mark.name, mark.line, mark.column, e.problem,
51 e.note, cmark.name, cmark.line, cmark.column, e.context)
67 except ImportError as e:
68 log.warning("can't import pykwalify; won't validate YAML (%s)", e)
/Zephyr-latest/doc/_static/js/
Ddark-mode-toggle.min.mjs2e=document;let t={};try{t=localStorage}catch(e){}const i="prefers-color-scheme";const a="media";co… constant
Ddark-mode-toggle-stylesheets-loader.min.js2e="dark-mode-toggle-stylesheets";const s="dark-mode-toggle";const t="light";const l="dark";let o=d… constant
/Zephyr-latest/scripts/tracing/
Dtrace_capture_usb.py44 except Exception as e:
45 sys.exit("{}".format(e))
53 except usb.core.USBError as e:
54 sys.exit("{}".format(e))
60 except usb.core.USBError as e:
61 sys.exit("{}".format(e))
68 lambda e: \
70 e.bEndpointAddress) == \
75 lambda e: \
77 e.bEndpointAddress) == \
/Zephyr-latest/lib/crc/
Dcrc7_sw.c12 uint8_t e = seed ^ *src++; in crc7_be() local
13 uint8_t f = e ^ (e >> 4) ^ (e >> 7); in crc7_be()
Dcrc16_sw.c55 uint8_t e, f; in crc16_ccitt() local
57 e = seed ^ *src; in crc16_ccitt()
59 f = e ^ (e << 4); in crc16_ccitt()
/Zephyr-latest/samples/subsys/mgmt/osdp/control_panel/src/
Dmain.c52 int event_handler(void *unused, int pd, struct osdp_event *e) in event_handler() argument
54 switch (e->type) { in event_handler()
56 card_read_callback(pd, e->cardread.format, in event_handler()
57 e->cardread.data, e->cardread.length); in event_handler()
60 key_press_callback(pd, e->keypress.data, e->keypress.length); in event_handler()
/Zephyr-latest/scripts/ci/
Derrno.py39 except KeyError as e:
46 for e in minimal:
47 if e[0] not in [x[0] for x in newlib] or e[1] != next(
48 filter(lambda _e: _e[0] == e[0], newlib))[1]:
/Zephyr-latest/soc/microchip/mec/common/
Dsoc_pcr.h19 #define MCHP_XEC_PCR_SCR_GET_IDX(e) ((e) & 0x7u) argument
20 #define MCHP_XEC_PCR_SCR_GET_BITPOS(e) (((e) & 0xf8u) >> 3) argument
/Zephyr-latest/samples/subsys/fs/zms/
DREADME.rst72e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2…
73 …55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75…
91e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2…
92 …55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75…
/Zephyr-latest/boards/shields/buydisplay_2_8_tft_touch_arduino/
Dbuydisplay_2_8_tft_touch_arduino.overlay42 vmctrl1 = [3e 28];
44 pgamctrl = [0f 31 2b 0c 0e 08 4e f1 37 07 10 03 0e 09 00];
45 ngamctrl = [00 0e 14 03 11 07 31 c1 48 08 0f 0c 31 36 0f];
/Zephyr-latest/boards/shields/adafruit_2_8_tft_touch_v2/dts/
Dadafruit_2_8_tft_touch_v2.dtsi41 vmctrl1 = [3e 28];
43 pgamctrl = [0f 31 2b 0c 0e 08 4e f1 37 07 10 03 0e 09 00];
44 ngamctrl = [00 0e 14 03 11 07 31 c1 48 08 0f 0c 31 36 0f];
/Zephyr-latest/boards/atmel/sam0/samr21_xpro/
Dsamr21_xpro.dts179 0d 0d 0e 0e 0e 0e 0e 0e
180 0e 0e 0e 0e 0e 0e 0f 0f];
/Zephyr-latest/boards/shields/adafruit_2_8_tft_touch_v2/boards/
Drd_rw612_bga.overlay51 vmctrl1 = [3e 28];
53 pgamctrl = [0f 31 2b 0c 0e 08 4e f1 37 07 10 03 0e 09 00];
54 ngamctrl = [00 0e 14 03 11 07 31 c1 48 08 0f 0c 31 36 0f];
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/
Dserver.hpp277 Xception e; in testException() local
278 e.errorCode = 1001; in testException()
279 e.message = arg; in testException()
280 throw e; in testException()
282 apache::thrift::TException e; in testException() local
283 throw e; in testException()
297 Xception e; in testMultiException() local
298 e.errorCode = 1001; in testMultiException()
299 e.message = "This is an Xception"; in testMultiException()
300 throw e; in testMultiException()
[all …]
/Zephyr-latest/arch/common/
Dfill_with_zeros.ld9 * counter) in executable segments with TrapInstr pattern, e.g. for ARM the
13 * We may want to have some section (e.g. rom_start) filled with 0x00,
14 * e.g. because MCU can interpret the pattern as a configuration data.
/Zephyr-latest/cmake/emu/
Dtsim.cmake3 set(TSIM_FLAGS -e run -e exit)
/Zephyr-latest/doc/_scripts/
Dgen_helpers.py24 except OSError as e:
25 if e.errno != errno.ENOENT:

12345678910>>...34