Home
last modified time | relevance | path

Searched refs:opcode (Results 1 – 12 of 12) sorted by relevance

/lk-master/arch/arm/arm/
A Dfaults.c116 __UNUSED uint32_t opcode = *(uint32_t *)frame->pc; in arm_undefined_handler() local
122 if (opcode & 0x0000e800) { in arm_undefined_handler()
124 opcode = (opcode >> 16) | (opcode << 16); in arm_undefined_handler()
127 if (((opcode & 0xec000e00) == 0xec000a00) || // vfp in arm_undefined_handler()
128 ((opcode & 0xef000000) == 0xef000000) || // advanced simd data processing in arm_undefined_handler()
129 ((opcode & 0xff100000) == 0xf9000000)) { // VLD in arm_undefined_handler()
136 if (((opcode & 0x0c000e00) == 0x0c000a00) || // vfp in arm_undefined_handler()
137 ((opcode & 0xfe000000) == 0xf2000000) || // advanced simd data processing in arm_undefined_handler()
138 ((opcode & 0xff100000) == 0xf4000000)) { // VLD in arm_undefined_handler()
/lk-master/app/lkboot/
A Dlkboot.c76 static int lkb_send(lkb_t *lkb, u8 opcode, const void *data, size_t len) { in lkb_send() argument
82 switch (opcode) { in lkb_send()
103 opcode = MSG_FAIL; in lkb_send()
109 hdr.opcode = opcode; in lkb_send()
111 hdr.length = (opcode == MSG_SEND_DATA) ? (len - 1) : len; in lkb_send()
152 if (hdr.opcode == MSG_END_DATA) { in lkb_read()
156 if (hdr.opcode != MSG_SEND_DATA) goto fail; in lkb_read()
188 if (hdr.opcode != MSG_CMD) goto fail; in lkboot_process_command()
A Ddcc.c40 static void send_pdcc_command(uint32_t opcode, uint32_t data) { in send_pdcc_command() argument
44 ((opcode & 0x7f) << PDCC_OPCODE_SHIFT) | in send_pdcc_command()
73 uint32_t opcode = PDCC_OPCODE(word); in dcc_process_opcode() local
75 LTRACEF("word 0x%x, opcode 0x%x, data 0x%x\n", word, opcode, data); in dcc_process_opcode()
76 switch (opcode) { in dcc_process_opcode()
106 TRACEF("bad opcode from host 0x%x\n", opcode); in dcc_process_opcode()
A Dlkboot_protocol.h11 unsigned char opcode; member
/lk-master/tools/
A Dliblkboot.c72 hdr.opcode = MSG_SEND_DATA; in upload()
88 hdr.opcode = MSG_END_DATA; in upload()
247 hdr.opcode = MSG_CMD; in lkboot_txn()
255 switch (hdr.opcode) { in lkboot_txn()
287 fprintf(stderr, "error: unknown opcode %d\n", hdr.opcode); in lkboot_txn()
/lk-master/lib/tftp/
A Dtftp.c164 uint16_t opcode; in udp_svc_callback() local
174 opcode = ntohs(RD_U16(data)); in udp_svc_callback()
176 if (opcode != TFTP_OPCODE_WRQ) { in udp_svc_callback()
178 LTRACEF("op not supported, opcode: %d\n", opcode); in udp_svc_callback()
/lk-master/external/platform/nrfx/drivers/include/
A Dnrfx_qspi.h110 .opcode = (opc), \
290 nrfx_err_t nrfx_qspi_cinstr_quick_send(uint8_t opcode,
/lk-master/lib/minip/
A Ddhcp.c25 u8 opcode; member
94 s.msg.opcode = DHCP_REQUEST; in dhcp_discover()
130 s.msg.opcode = DHCP_REQUEST; in dhcp_request()
181 printf("dhcp op=%d len=%d from p=%d ip=", msg->opcode, sz, srcport); in dhcp_cb()
/lk-master/external/lib/lwip/include/netif/
A Detharp.h120 PACK_STRUCT_FIELD(u16_t opcode);
205 const u16_t opcode);
/lk-master/external/platform/nrfx/hal/
A Dnrf_qspi.h242 uint8_t opcode; /**< Opcode used in custom instruction transmission. */ member
253 uint8_t opcode; /**< Opcode used to enter the proper addressing mode. */ member
729 uint32_t config = p_config->opcode; in nrf_qspi_addrconfig_set()
873 p_reg->CINSTRCONF = (((uint32_t)p_config->opcode << QSPI_CINSTRCONF_OPCODE_Pos) | in nrf_qspi_cinstr_transfer_start()
884 p_reg->CINSTRCONF = (((uint32_t)p_config->opcode << QSPI_CINSTRCONF_OPCODE_Pos) | in nrf_qspi_cinstr_long_transfer_start()
/lk-master/external/platform/nrfx/drivers/src/
A Dnrfx_qspi.c206 nrfx_err_t nrfx_qspi_cinstr_quick_send(uint8_t opcode, in nrfx_qspi_cinstr_quick_send() argument
210 nrf_qspi_cinstr_conf_t config = NRFX_QSPI_DEFAULT_CINSTR(opcode, length); in nrfx_qspi_cinstr_quick_send()
/lk-master/external/lib/lwip/netif/
A Detharp.c765 switch (hdr->opcode) {
780 hdr->opcode = htons(ARP_REPLY);
830 …UG | LWIP_DBG_TRACE, ("etharp_arp_input: ARP unknown opcode type %"S16_F"\n", htons(hdr->opcode)));
1179 const u16_t opcode) argument
1206 hdr->opcode = htons(opcode);

Completed in 21 milliseconds