Searched refs:origin (Results 1 – 11 of 11) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/ |
D | pio.c | 70 if (program->origin >= 0) { in find_offset_for_program() 71 if (program->origin > 32 - program->length) return PICO_ERROR_GENERIC; in find_offset_for_program() 72 return used_mask & (program_mask << program->origin) ? -1 : program->origin; in find_offset_for_program() 139 …if (program->origin >= 0 && (uint)program->origin != offset) return PICO_ERROR_BAD_ALIGNMENT; // t… in add_program_at_offset_check()
|
/hal_rpi_pico-latest/tools/pioasm/ |
D | go_output.cpp | 105 fprintf(out, "const %sOrigin = %d\n", prefix.c_str(), program.origin.get()); in output()
|
D | json_output.cpp | 98 fprintf(out, "%s\"origin\": %d,\n", tabs, program.origin.get()); in output()
|
D | output_format.h | 69 optional_int origin = optional_int::with_default(-1); member
|
D | pio_assembler.cpp | 500 if (program.origin.value) cprogram.origin = program.origin.value->resolve(program); in write_output()
|
D | c_sdk_output.cpp | 111 fprintf(out, " .origin = %d,\n", program.origin.get()); in output()
|
D | pio_types.h | 273 rvalue_loc origin; member 316 origin = rvalue_loc(_origin, l); in set_origin()
|
D | parser.yy | 79 ORIGIN ".origin" 196 …| ORIGIN value { pioasm.get_current_program(@1, ".origin", true).set_origin(@…
|
D | lexer.ll | 136 ".origin" return yy::parser::make_ORIGIN(loc);
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/ |
D | LICENSE.txt | 141 origin of the Work and reproducing the content of the NOTICE file.
|
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/include/hardware/ |
D | pio.h | 893 int8_t origin; // required instruction memory origin or -1 member
|