HomeSort by: relevance | last modified time | path
    Searched defs:opc (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/arch/vax/vax/
opcodes.c 453 u_int opc; local in function:skip_opcode
457 opc = get_byte(ib++);
458 if (opc >= 0xfd) {
460 opc = opc << 8;
461 opc += get_byte(ib++);
462 argp = vax_inst2[INDEX_OPCODE(opc)].argdesc;
464 argp = vax_inst[opc].argdesc;
db_disasm.c 102 int opc; /* op-code */ member in struct:__anon19dd69db0208
182 ib->opc = get_byte(ib);
183 if (ib->opc >> 2 == 0x3F) { /* two byte op-code */
184 ib->opc = ib->opc << 8;
185 ib->opc += get_byte(ib);
187 switch (ib->opc) {
200 if (ib->opc < 0 || ib->opc > 0xFF) {
202 add_xint(ib, ib->opc);
    [all...]
  /src/sys/arch/sh3/sh3/
syscall.c 113 int error, opc, nsys; local in function:syscall
119 opc = tf->tf_spc;
216 tf->tf_spc = opc - 2;
  /src/sys/arch/sparc/sparc/
syscall.c 221 int opc, onpc; local in function:syscall
239 opc = tf->tf_pc;
266 tf->tf_pc = opc;
  /src/sys/arch/sparc64/sparc64/
syscall.c 287 vaddr_t opc, onpc; local in function:syscall
298 opc = tf->tf_pc;
339 tf->tf_pc = opc;
  /src/usr.sbin/gspa/gspa/
gsp_inst.c 445 int opc, nw, class, flags, ms, md, off; local in function:encode_instr
452 opc = ip->opcode;
469 opc += 0x0200;
484 opc -= 0x3000;
485 if( opc == 0x1C00 )
486 opc = 0x1800;
490 opc = code_to_imm[(opc - 0x4000) >> 9];
498 if( opc < 0x2000 )
499 opc = 0x4A00; /* BTST *
    [all...]
  /src/sys/arch/m68k/m68k/
db_disasm.c 189 u_short opc; local in function:db_disasm
202 opc = *dbuf.val;
205 func = opcode_map[OPCODE_MAP(opc)];
206 func(&dbuf, opc);
219 opcode_bitmanip(dis_buffer_t *dbuf, u_short opc)
227 switch (opc) {
249 if (ISBITSET(opc,6)) {
259 if (IS_INST(RTM,opc)) {
261 if (ISBITSET(opc,3))
262 PRINT_AREG(dbuf, BITFIELD(opc,2,0))
    [all...]
  /src/lib/libperfuse/
ops.c 75 puffs_cookie_t opc, enum perfuse_qtype);
76 static int dequeue_requests(puffs_cookie_t opc, enum perfuse_qtype, int);
108 #define PN_ISDIR(opc) \
109 (puffs_pn_getvap((struct puffs_node *)opc)->va_type == VDIR)
113 print_node(const char *func, puffs_cookie_t opc)
119 pn = (struct puffs_node *)opc;
120 pnd = PERFUSE_NODE_DATA(opc);
123 printf("%s: \"%s\", opc = %p, nodeid = 0x%"PRIx64" ino = %"PRIu64"\n",
124 func, pnd->pnd_name, opc, pnd->pnd_nodeid, vap->va_fileid);
131 perfuse_node_close_common(struct puffs_usermount *pu, puffs_cookie_t opc,
927 puffs_cookie_t opc; local in function:perfuse_fs_unmount
962 puffs_cookie_t opc; local in function:perfuse_fs_statvfs
    [all...]
  /src/sys/dev/ic/
mfi.c 1842 mfi_mgmt_internal(struct mfi_softc *sc, uint32_t opc, uint32_t dir,
1850 rv = mfi_mgmt(ccb, NULL, opc, dir, len, buf, mbox);
1877 mfi_mgmt(struct mfi_ccb *ccb, struct scsipi_xfer *xs, uint32_t opc,
1882 DNPRINTF(MFI_D_MISC, "%s: mfi_mgmt %#x\n", DEVNAME(ccb->ccb_sc), opc);
1889 dcmd->mdf_opcode = opc;
2260 uint32_t opc, dir = MFI_DATA_NONE; local in function:mfi_ioctl_alarm
2266 opc = MR_DCMD_SPEAKER_DISABLE;
2270 opc = MR_DCMD_SPEAKER_ENABLE;
2274 opc = MR_DCMD_SPEAKER_SILENCE;
2278 opc = MR_DCMD_SPEAKER_GET
    [all...]
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeTILEGX_64.c 526 void insert_nop(tilegx_mnemonic opc, int line)
532 opcode = &tilegx_opcodes[opc];
568 tilegx_mnemonic opc = inst_buf[0].opcode->can_bundle local in function:assign_pipes
570 insert_nop(opc, __LINE__);
746 static sljit_s32 push_4_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int op3, int line)
751 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc];
766 static sljit_s32 push_3_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int line)
771 const struct tilegx_opcode* opcode = &tilegx_opcodes[opc];
779 switch (opc) {
818 printf("unrecoginzed opc: %s\n", opcode->name)
    [all...]
sljitNativeTILEGX-encoder.c 9546 const struct tilegx_opcode *opc; local in function:parse_insn_tilegx
9551 opc = find_opcode (bits, (tilegx_pipeline)pipe);
9552 d->opcode = opc;
9555 for (i = 0; i < opc->num_operands; i++)
9558 &tilegx_operands[opc->operands[pipe][i]];
  /src/sys/dist/pf/net/
pf.c 1506 u_int32_t opc = 0; local in function:pf_change_icmp
1509 opc = *pc;
1515 *ic = pf_cksum_fixup(*ic, opc, *pc, 0);
  /src/sys/dev/pci/
mfii.c 1897 mfii_mgmt(struct mfii_softc *sc, uint32_t opc, const union mfi_mbox *mbox,
1912 rv = mfii_do_mgmt(sc, ccb, opc, mbox, buf, len, dir, poll);
1919 mfii_do_mgmt(struct mfii_softc *sc, struct mfii_ccb *ccb, uint32_t opc,
1959 dcmd->mdf_opcode = opc;
3358 uint32_t opc; local in function:mfii_ioctl_alarm
3365 opc = MR_DCMD_SPEAKER_DISABLE;
3369 opc = MR_DCMD_SPEAKER_ENABLE;
3373 opc = MR_DCMD_SPEAKER_SILENCE;
3377 opc = MR_DCMD_SPEAKER_GET;
3382 opc = MR_DCMD_SPEAKER_TEST
    [all...]
if_wm.c 14402 uint8_t opc; local in function:wm_nvm_read_spi
14429 opc = SPI_OPC_READ;
14431 opc |= SPI_OPC_A8;
14433 wm_eeprom_sendbits(sc, opc, 8);

Completed in 89 milliseconds