Searched refs:operand (Results 1 – 8 of 8) sorted by relevance
/Zephyr-latest/include/zephyr/arch/riscv/ |
D | elf.h | 188 #define R_RISCV_CLEAR_BTYPE_IMM8(operand) ((operand) & ~R_RISCV_BTYPE_IMM8_MASK((uint32_t) -1)) argument 196 #define R_RISCV_SET_BTYPE_IMM8(operand, imm8) \ argument 197 ((R_RISCV_CLEAR_BTYPE_IMM8(operand)) | R_RISCV_BTYPE_IMM8_MASK(imm8)) 204 #define R_RISCV_CLEAR_JTYPE_IMM8(operand) ((operand) & ~R_RISCV_JTYPE_IMM8_MASK((uint32_t) -1)) argument 212 #define R_RISCV_SET_JTYPE_IMM8(operand, imm8) \ argument 213 ((R_RISCV_CLEAR_JTYPE_IMM8(operand)) | R_RISCV_JTYPE_IMM8_MASK(imm8)) 220 #define R_RISCV_CLEAR_STYPE_IMM8(operand) ((operand) & ~R_RISCV_STYPE_IMM8_MASK((uint32_t) -1)) argument 228 #define R_RISCV_SET_STYPE_IMM8(operand, imm8) \ argument 229 ((R_RISCV_CLEAR_STYPE_IMM8(operand)) | R_RISCV_STYPE_IMM8_MASK(imm8)) 236 #define R_RISCV_CLEAR_CJTYPE_IMM8(operand) ((operand) & ~R_RISCV_CJTYPE_IMM8_MASK((uint32_t) -1)) argument [all …]
|
/Zephyr-latest/samples/subsys/smf/smf_calculator/src/ |
D | main.c | 55 .event = {.event_id = CANCEL_ENTRY, .operand = 'E'}}, 56 [BUTTON_CANCEL] = {.label = "C", .event = {.event_id = CANCEL_BUTTON, .operand = 'C'}}, 57 [BUTTON_ADD] = {.label = "+", .event = {.event_id = OPERATOR, .operand = '+'}}, 58 [BUTTON_SUBTRACT] = {.label = "-", .event = {.event_id = OPERATOR, .operand = '-'}}, 59 [BUTTON_MULTIPLY] = {.label = "*", .event = {.event_id = OPERATOR, .operand = '*'}}, 60 [BUTTON_DIVIDE] = {.label = "/", .event = {.event_id = OPERATOR, .operand = '/'}}, 62 .event = {.event_id = DECIMAL_POINT, .operand = '.'}}, 63 [BUTTON_EQUALS] = {.label = "=", .event = {.event_id = EQUALS, .operand = '='}}, 64 [BUTTON_0] = {.label = "0", .event = {.event_id = DIGIT_0, .operand = '0'}}, 65 [BUTTON_1] = {.label = "1", .event = {.event_id = DIGIT_1_9, .operand = '1'}}, [all …]
|
D | smf_calculator_thread.c | 31 struct operand { struct 44 struct operand operand_1; argument 45 struct operand operand_2; 47 struct operand result; 57 static void setup_operand(struct operand *op) in setup_operand() 66 static int insert(struct operand *op, char digit) in insert() 78 static void negate(struct operand *op) in negate() 91 static void copy_operand(struct operand *dest, struct operand *src) in copy_operand() 218 insert(&s->operand_1, s->event.operand); in ready_run() 222 insert(&s->operand_1, s->event.operand); in ready_run() [all …]
|
D | smf_calculator_thread.h | 32 char operand; member
|
D | smf_console_cmds.c | 17 event.operand = c; in cmd_smf_key()
|
/Zephyr-latest/doc/contribute/coding_guidelines/ |
D | index.rst | 527 …expression is used as one operand of an operator in which the usual arithmetic conversions are per… 583 …ht hand operand of a shift operator shall lie in the range zero to one less than the width in bits… 597 …- The sizeof operator shall not have an operand which is a function parameter declared as “array … 633 … - The right hand operand of a logical && or || operator shall not contain persistent side effects 641 …- The operand of the sizeof operator shall not contain any expression which has potential side ef… 802 …resulting from arithmetic on a pointer operand shall address an element of the same array as that … 901 …eter used as an operand to the # or ## operators, which is itself subject to further macro replace…
|
/Zephyr-latest/scripts/ci/ |
D | pylintrc | 141 invalid-unary-operand-type,
|
/Zephyr-latest/doc/releases/ |
D | release-notes-2.5.rst | 1204 * :github:`30871` - "warning: compound assignment with 'volatile'-qualified left operand is depreca…
|