Home
last modified time | relevance | path

Searched refs:pc (Results 1 – 25 of 67) sorted by relevance

123

/hardware/google/apf/
Ddisassembler.c67 uint32_t apf_disassemble(const uint8_t* program, uint32_t program_len, uint32_t pc) { in apf_disassemble() argument
68 printf("%8u: ", pc); in apf_disassemble()
70 if (pc == program_len) { in apf_disassemble()
72 return ++pc; in apf_disassemble()
75 if (pc == program_len + 1) { in apf_disassemble()
77 return ++pc; in apf_disassemble()
80 const uint8_t bytecode = program[pc++]; in apf_disassemble()
90 for (uint32_t i = 0; i < imm_len && pc < program_len; i++) in apf_disassemble()
91 imm = (imm << 8) | program[pc++]; in apf_disassemble()
111 print_jump_target(pc + imm, program_len); in apf_disassemble()
[all …]
Dapf_interpreter.c25 extern void APF_TRACE_HOOK(uint32_t pc, const uint32_t* regs, const uint8_t* program,
29 #define APF_TRACE_HOOK(pc, regs, program, program_len, packet, packet_len, memory, memory_len) \ argument
66 uint32_t pc = 0; in accept_packet() local
68 #define ASSERT_FORWARD_IN_PROGRAM(p) ASSERT_RETURN(IN_PROGRAM_BOUNDS(p) && (p) >= pc) in accept_packet()
90 APF_TRACE_HOOK(pc, registers, program, program_len, packet, packet_len, memory, ram_len); in accept_packet()
91 if (pc == program_len) { in accept_packet()
93 } else if (pc == (program_len + 1)) { in accept_packet()
96 ASSERT_IN_PROGRAM_BOUNDS(pc); in accept_packet()
97 const uint8_t bytecode = program[pc++]; in accept_packet()
108 ASSERT_FORWARD_IN_PROGRAM(pc + imm_len - 1); in accept_packet()
[all …]
Dapf_disassembler.c39 for (uint32_t pc = 0; pc < program_len;) { in main() local
40 pc = apf_disassemble(program, program_len, pc); in main()
Ddisassembler.h21 uint32_t apf_disassemble(const uint8_t* program, uint32_t program_len, uint32_t pc);
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_stub/
DMakefile.am8 pkgconfig_DATA = loc-stub.pc
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/
DMakefile.am9 pkgconfig_DATA = loc-pla.pc
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/
DMakefile.am9 pkgconfig_DATA = loc-pla.pc
/hardware/qcom/sm8150/gps/
DMakefile.am9 pkgconfig_DATA = loc-hal.pc
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_stub/
DMakefile.am8 pkgconfig_DATA = loc-stub.pc
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_stub/
DMakefile.am8 pkgconfig_DATA = loc-stub.pc
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/
DMakefile.am9 pkgconfig_DATA = loc-pla.pc
/hardware/qcom/sdm845/gps/sdm845/
DMakefile.am9 pkgconfig_DATA = loc-hal.pc
/hardware/qcom/gps/msm8998/
DMakefile.am9 pkgconfig_DATA = loc-hal.pc
/hardware/qcom/sdm845/gps/msm8998/
DMakefile.am9 pkgconfig_DATA = loc-hal.pc
/hardware/qcom/gps/msm8909w_3100/
DMakefile.am9 pkgconfig_DATA = loc-hal.pc
/hardware/qcom/sdm845/gps/msm8994/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/gps/msm8994/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/sdm845/gps/msm8909/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/sdm845/gps/msm8996/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/gps/msm8996/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/sdm845/gps/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/gps/msm8909/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/qcom/gps/
DMakefile.am9 pkgconfig_DATA = loc-api.pc
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
Ddatalogger_outputs.c143 struct inv_single_sensor_t *pc = &dl_out.sc.compass; in inv_get_sensor_type_compass_raw_short() local
146 memcpy(values, &pc->raw, sizeof(short) * 3); in inv_get_sensor_type_compass_raw_short()
148 *timestamp = pc->timestamp; in inv_get_sensor_type_compass_raw_short()
/hardware/qcom/sdm845/gps/sdm845/location/
Dconfigure.ac14 AC_CONFIG_SRCDIR([location-api.pc.in])
79 location-api.pc \

123