Searched refs:opcode (Results 1 - 25 of 53) sorted by relevance

123

/fuchsia/zircon/system/ulib/xdc-server-utils/include/xdc-server-utils/
H A Dmsg.h22 uint8_t opcode; member in struct:__anon1249
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/perlasm/
H A Dx86_64-xlate.pl104 { package opcode; # pick up opcodes
226 my ($class, $line, $opcode) = @_;
242 die if ($opcode->mnemonic() ne "mov");
243 $opcode->mnemonic("lea");
247 $self->{opcode} = $opcode;
303 my $mnemonic = $self->{opcode}->mnemonic();
330 my ($class, $line, $opcode) = @_;
340 $opcode->size($self->size());
439 my ($class, $line, $opcode)
[all...]
H A Darm-xlate.pl161 my $opcode;
163 $opcode = eval("\$$1_$2");
165 $opcode = eval("\$$mnemonic");
170 if (ref($opcode) eq 'CODE') {
171 $line = &$opcode($arg);
/fuchsia/zircon/system/public/zircon/hw/
H A Dusb-mass-storage.h50 uint8_t opcode; member in struct:__anon768
61 uint8_t opcode; member in struct:__anon769
74 uint8_t opcode; member in struct:__anon770
86 uint8_t opcode; member in struct:__anon771
115 uint8_t opcode; // UMS_MODE_SENSE6 member in struct:__anon774
/fuchsia/zircon/system/public/zircon/device/
H A Ddmctl.h49 uint32_t opcode; member in struct:__anon687
H A Dblock.h297 uint32_t opcode; member in struct:__anon681
299 groupid_t group; // Only used if opcode & BLOCKIO_GROUP_ITEM.
/fuchsia/zircon/system/ulib/block-client/
H A Dclient.c105 requests[i].opcode = (requests[i].opcode & BLOCKIO_OP_MASK) | BLOCKIO_GROUP_ITEM;
108 requests[0].opcode |= BLOCKIO_BARRIER_BEFORE;
109 requests[count - 1].opcode |= BLOCKIO_GROUP_LAST | BLOCKIO_BARRIER_AFTER;
/fuchsia/zircon/system/ulib/tftp/
H A Dinternal.h24 uint16_t opcode; member in struct:tftp_msg_t
29 uint16_t opcode; member in struct:tftp_err_msg_t
35 uint16_t opcode; member in struct:tftp_data_msg_t
153 // max request size (512) - opcode (2) - shortest mode (4) - null (1)
169 // Add an 8-bit prefix to the opcode so that retransmissions differ from the
H A Dtftp-test.cpp111 EXPECT_EQ(msg->opcode, htons(OPCODE_WRQ), "opcode should be 2 (WRQ)");
118 EXPECT_EQ(msg->opcode, htons(OPCODE_RRQ), "opcode should be 1 (RRQ)");
292 bool verify_response_opcode(const test_state& ts, uint16_t opcode) { argument
295 // The upper byte of the opcode is ignored
296 EXPECT_EQ(ntohs(msg->opcode) & 0xff, opcode, "bad opcode");
735 // The upper byte of the opcode i
1704 unsigned int opcode = data_buf[0] << 8 | data_buf[1]; local
1776 unsigned int opcode = htons(msg->opcode); local
[all...]
H A Dtftp-example.c59 uint16_t opcode = ntohs(*(uint16_t*)msg); local
60 fprintf(stderr, "sending opcode=%u\n", opcode);
/fuchsia/zircon/system/ulib/fs/
H A Dblock-txn.cpp29 if (requests_[i].vmoid != id || requests_[i].opcode != op) {
49 request.opcode = op;
/fuchsia/zircon/third_party/ulib/ngunwind/src/dwarf/
H A DGexpr.c197 uint8_t opcode, operands_signature, u8; local
250 if ((ret = dwarf_readu8 (as, a, addr, &opcode, arg)) < 0)
253 operands_signature = operands[opcode];
268 switch ((dwarf_expr_op_t) opcode)
281 Debug (15, "OP_lit(%d)\n", (int) opcode - DW_OP_lit0);
282 push (opcode - DW_OP_lit0);
297 (int) opcode - DW_OP_breg0, (unsigned long) operand1);
299 dwarf_to_unw_regnum (opcode - DW_OP_breg0),
325 Debug (15, "OP_reg(r%d)\n", (int) opcode - DW_OP_reg0);
326 *valp = dwarf_to_unw_regnum (opcode
[all...]
/fuchsia/zircon/system/ulib/blktest/
H A Dblktest.cpp200 requests[0].opcode = BLOCKIO_WRITE;
207 requests[1].opcode = BLOCKIO_WRITE;
221 requests[0].opcode = BLOCKIO_READ;
222 requests[1].opcode = BLOCKIO_READ;
228 requests[0].opcode = BLOCKIO_CLOSE_VMO;
271 request.opcode = BLOCKIO_WRITE;
285 request.opcode = BLOCKIO_READ;
291 request.opcode = BLOCKIO_CLOSE_VMO;
343 requests[b].opcode = BLOCKIO_WRITE;
370 requests[b].opcode
[all...]
/fuchsia/zircon/system/uapp/disk-pave/
H A Dpave-utils.cpp19 request.opcode = BLOCKIO_FLUSH;
/fuchsia/zircon/system/utest/ramdisk/
H A Dramdisk.cpp413 request.opcode = BLOCKIO_WRITE;
547 requests[0].opcode = BLOCKIO_WRITE;
554 requests[1].opcode = BLOCKIO_WRITE;
566 requests[0].opcode = BLOCKIO_READ;
567 requests[1].opcode = BLOCKIO_READ;
573 requests[0].opcode = BLOCKIO_CLOSE_VMO;
617 requests[0].opcode = BLOCKIO_WRITE;
624 requests[1].opcode = BLOCKIO_WRITE;
659 requests[0].opcode = BLOCKIO_READ;
660 requests[1].opcode
[all...]
/fuchsia/zircon/system/dev/block/block/
H A Dserver.cpp72 uint32_t OpcodeToCommand(uint32_t opcode) { argument
81 return opcode & shared;
312 switch (request->opcode & BLOCKIO_OP_MASK) {
354 msg.op()->command = OpcodeToCommand(request->opcode);
382 msg.op()->command = OpcodeToCommand(request->opcode);
439 msg.op()->command = OpcodeToCommand(request->opcode);
445 request->opcode);
465 bool wants_reply = requests[i].opcode & BLOCKIO_GROUP_LAST;
466 bool use_group = requests[i].opcode & BLOCKIO_GROUP_ITEM;
/fuchsia/zircon/system/dev/bluetooth/bt-hci-broadcom/
H A Dbt-hci-broadcom.c34 uint16_t opcode; member in struct:__anon220
52 .opcode = 0x0c03,
58 .opcode = 0xfc2e,
193 .opcode = BCM_SET_BAUD_RATE_CMD,
/fuchsia/zircon/system/dev/block/usb-mass-storage/
H A Dusb-mass-storage.c160 command.opcode = UMS_INQUIRY;
179 command.opcode = UMS_TEST_UNIT_READY;
190 command.opcode = UMS_REQUEST_SENSE;
209 command.opcode = UMS_READ_CAPACITY10;
226 command.opcode = UMS_READ_CAPACITY16;
246 command.opcode = UMS_MODE_SENSE6;
312 command.opcode = UMS_READ16;
319 command.opcode = UMS_READ10;
327 command.opcode = UMS_READ12;
377 command.opcode
[all...]
/fuchsia/zircon/system/utest/zxcrypt/
H A Dtest-device.h100 // according to the given |opcode|. The data sent or received can be accessed using |vmo_write|
102 zx_status_t block_fifo_txn(uint16_t opcode, uint64_t off, uint64_t len) { argument
103 req_.opcode = opcode;
/fuchsia/zircon/system/dev/board/gauss/
H A Dgauss-led.c154 if (txn->opcode == IOTXN_OP_READ) {
156 } else if (txn->opcode == IOTXN_OP_WRITE) {
424 if (txn->opcode == IOTXN_OP_READ) {
426 } else if (txn->opcode == IOTXN_OP_WRITE) {
/fuchsia/zircon/third_party/lib/acpica/source/include/acpica/
H A Dacparser.h88 * psargs - Parse AML opcode arguments
319 UINT16 opcode);
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/sha/asm/
H A Dsha1-x86_64.pl543 { my $opcode = $AUTOLOAD; $opcode =~ s/.*:://;
546 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n";
2026 my @opcode=(0x0f,0x3a,0xcc);
2027 push @opcode,0xc0|($2&7)|(($3&7)<<3); # ModR/M
2029 push @opcode,$c=~/^0/?oct($c):$c;
2030 return ".byte\t".join(',',@opcode);
2044 my @opcode=(0x0f,0x38);
2048 unshift @opcode,0x40|$rex if ($rex);
2049 push @opcode,
[all...]
/fuchsia/zircon/system/dev/block/nvme/
H A Dnvme.c43 uint8_t opcode; member in struct:__anon207
370 uint32_t opt = (txn->opcode == NVME_OP_READ) ? ZX_BTI_PERM_WRITE : ZX_BTI_PERM_READ;
382 cmd.cmd = NVME_CMD_CID(utxn->id) | NVME_CMD_PRP | NVME_CMD_NORMAL | NVME_CMD_OPC(txn->opcode);
398 txn->opcode == NVME_OP_WRITE ? "WR" : "RD");
561 txn->opcode = NVME_OP_READ;
564 txn->opcode = NVME_OP_WRITE;
593 txn->opcode == NVME_OP_WRITE ? "wr" : "rd",
/fuchsia/zircon/system/core/devmgr/
H A Ddevhost-rpc-server.cpp142 static ssize_t do_sync_io(zx_device_t* dev, uint32_t opcode, void* buf, size_t count, zx_off_t off) { argument
145 if (opcode == DO_READ) {
597 static zx_status_t fidl_node_ioctl(void* ctx, uint32_t opcode, uint64_t max_out, argument
615 ssize_t r = do_ioctl(ios->dev, opcode, in_buf, in_count, out, max_out, &out_count);
618 switch (IOCTL_KIND(opcode)) {
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp462 switch (msg->opcode) {
490 fprintf(stderr, "unknown msg opcode: %u\n", msg->opcode);
496 .opcode = XDC_NOTIFY_STREAM_STATE,

Completed in 102 milliseconds

123