Searched defs:opcode (Results 126 - 150 of 241) sorted by relevance

12345678910

/external/dropbear/
H A Dsvr-chansession.c432 unsigned char opcode; local
458 while (((opcode = buf_getbyte(ses.payload)) != 0x00) && opcode <= 159) {
465 if (opcode > MAX_TERMCODE) {
468 termcode = &termcodes[(unsigned int)opcode];
/external/elfutils/libdw/
H A Ddwarf_getsrclines.c211 /* The opcode base. */
214 /* Remember array with the standard opcode length (-1 to account for
215 the opcode with value zero not being mentioned). */
361 unsigned int opcode; local
365 /* Read the opcode. */
366 opcode = *linep++;
368 /* Is this a special opcode? */
369 if (likely (opcode >= opcode_base))
371 /* Yes. Handling this is quite easy since the opcode value
374 opcode
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java487 int opcode = ci.byteAt(index);
488 if (opcode < ILOAD)
490 else if (opcode < IASTORE) {
491 if (opcode < ILOAD_0) {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
495 else if (opcode < IALOAD) {
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
499 else if (opcode < ISTORE)
501 else if (opcode < ISTORE_0) {
503 shiftIndex8(ci, index, opcode, lessTha
539 shiftIndex8(CodeIterator ci, int index, int opcode, int lessThan, int delta) argument
558 shiftIndex0(CodeIterator ci, int index, int opcode, int lessThan, int delta, int opcode_i_0, int opcode_i) argument
[all...]
H A DClassFileWriter.java435 public void addInvoke(int opcode, String targetClass, String methodName, argument
440 add(opcode);
/external/llvm/lib/Target/NVPTX/
H A DVectorElementize.cpp26 // In addition, initVectorInfo creates the following opcode->opcode map.
728 unsigned VectorElementize::getScalarVersion(unsigned opcode) { argument
729 if (opcode == NVPTX::PHI)
730 return opcode;
731 if (opcode == NVPTX::IMPLICIT_DEF)
732 return opcode;
733 switch(opcode) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp521 Instruction::CastOps opcode = Instruction::BitCast; local
526 opcode = Instruction::IntToPtr;
529 opcode = Instruction::PtrToInt;
537 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy,
/external/qemu/hw/
H A Dgoldfish_mmc.c166 struct mmc_opcode* opcode = mmc_opcodes;
168 while (opcode->cmd != command && opcode->cmd != -1) opcode++;
169 return opcode->name;
219 int opcode = cmd & 63; local
221 // fprintf(stderr, "goldfish_mmc_do_command opcode: %s (0x%04X), arg: %d\n", get_command_name(opcode), cmd, arg);
230 switch (opcode) {
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DDebugInfoBuilder.java250 private void emitSpecialOpcode(Output out, byte opcode) { argument
251 out.writeByte(opcode);
/external/tcpdump/
H A Dprint-lwres.c60 lwres_uint32_t opcode; member in struct:lwres_lwpacket
178 struct tok opcode[] = { variable in typeref:struct:tok
321 /* opcode and pktflags */
322 v = EXTRACT_32BITS(&np->opcode);
323 s = tok2str(opcode, "#0x%x", v);
345 /* per-opcode content */
359 switch (EXTRACT_32BITS(&np->opcode)) {
459 switch (EXTRACT_32BITS(&np->opcode)) {
H A Dprint-eigrp.c43 u_int8_t opcode; member in struct:eigrp_common_header
247 tok2str(eigrp_opcode_values, "unknown (%u)",eigrp_com_header->opcode),
257 printf("\n\tEIGRP v%u, opcode: %s (%u), chksum: 0x%04x, Flags: [%s]\n\tseq: 0x%08x, ack: 0x%08x, AS: %u, length: %u",
259 tok2str(eigrp_opcode_values, "unknown, type: %u",eigrp_com_header->opcode),
260 eigrp_com_header->opcode,
H A Dprint-rx.c383 * Cache entries we keep around so we can figure out the RX opcode
393 u_int32_t opcode; /* RX opcode (host order) */ member in struct:rx_cache_entry
439 int32_t opcode; local
541 sport, &opcode)) {
545 fs_reply_print(bp, length, opcode);
548 cb_reply_print(bp, length, opcode);
551 prot_reply_print(bp, length, opcode);
554 vldb_reply_print(bp, length, opcode);
557 kauth_reply_print(bp, length, opcode);
616 rx_cache_find(const struct rx_header *rxh, const struct ip *ip, int sport, int32_t *opcode) argument
922 fs_reply_print(register const u_char *bp, int length, int32_t opcode) argument
1171 cb_reply_print(register const u_char *bp, int length, int32_t opcode) argument
1362 prot_reply_print(register const u_char *bp, int length, int32_t opcode) argument
1567 vldb_reply_print(register const u_char *bp, int length, int32_t opcode) argument
1847 kauth_reply_print(register const u_char *bp, int length, int32_t opcode) argument
1936 vol_reply_print(register const u_char *bp, int length, int32_t opcode) argument
2071 bos_reply_print(register const u_char *bp, int length, int32_t opcode) argument
2115 is_ubik(u_int32_t opcode) argument
2238 ubik_reply_print(register const u_char *bp, int length, int32_t opcode) argument
[all...]
/external/bluetooth/bluedroid/hci/src/
H A Dhci_h4.c52 ** 2-bytes for opcode and 1 byte for length
57 ** 1-byte for opcode and 1 byte for length
126 uint16_t opcode; /* OPCODE of outstanding internal commands */ member in struct:__anon946
159 uint8_t hci_h4_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \
195 uint16_t opcode, len=0; local
199 STREAM_TO_UINT16(opcode, p)
204 if (opcode == HCI_READ_BUFFER_SIZE)
226 else if (opcode == HCI_LE_READ_BUFFER_SIZE)
258 uint16_t opcode, len; local
272 STREAM_TO_UINT16(opcode,
987 hci_h4_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \ tINT_CMD_CBACK p_cback) argument
[all...]
H A Dhci_mct.c53 ** 2-bytes for opcode and 1 byte for length
58 ** 1-byte for opcode and 1 byte for length
104 uint16_t opcode; /* OPCODE of outstanding internal commands */ member in struct:__anon949
142 uint8_t hci_mct_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \
178 uint16_t opcode, len=0; local
182 STREAM_TO_UINT16(opcode, p)
187 if (opcode == HCI_READ_BUFFER_SIZE)
209 else if (opcode == HCI_LE_READ_BUFFER_SIZE)
241 uint16_t opcode, len; local
261 STREAM_TO_UINT16(opcode,
1089 hci_mct_send_int_cmd(uint16_t opcode, HC_BT_HDR *p_buf, \ tINT_CMD_CBACK p_cback) argument
[all...]
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_devctl.c1393 tBTM_STATUS BTM_VendorSpecificCommand(UINT16 opcode, UINT8 param_len, argument
1399 opcode, param_len);
1405 /* Send the HCI command (opcode will be OR'd with HCI_GRP_VENDOR_SPECIFIC) */
1406 btsnd_hcic_vendor_spec_cmd (p_buf, opcode, param_len, p_param_buf, (void *)p_cb);
1430 void btm_vsc_complete (UINT8 *p, UINT16 opcode, UINT16 evt_len, argument
1439 vcs_cplt_params.opcode = opcode; /* Number of bytes in return info */
/external/bluetooth/bluedroid/stack/include/
H A Dsmp_api.h155 UINT16 opcode; member in struct:__anon1343
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c472 static void dut_mode_recv(uint16_t opcode, uint8_t *buf, uint8_t len) argument
/external/freetype/src/truetype/
H A Dttinterp.h149 FT_Byte opcode; /* current opcode */ member in struct:TT_ExecContextRec_
150 FT_Int length; /* length of current opcode */
297 /* is the main function of the TrueType opcode interpreter. */
/external/javassist/src/main/javassist/compiler/
H A DMemberCodeGen.java111 protected boolean doit(Bytecode b, int opcode) { argument
112 switch (opcode) {
159 protected boolean doit(Bytecode b, int opcode) { argument
160 switch (opcode) {
/external/libnfc-nci/src/nfc/tags/
H A Dce_t3t.c110 ** Description Valid opcode
167 void ce_t3t_send_rsp (tCE_CB *p_ce_cb, UINT8 *p_nfcid2, UINT8 opcode, UINT8 status1, UINT8 status2) argument
184 UINT8_TO_STREAM (p_dst, opcode);
631 CE_TRACE_ERROR1 ("Unhandled CE opcode: %02x", cmd_id);
698 /* Get and validate command opcode */
/external/libppp/src/
H A Dip.c89 unsigned opcode : 4; member in struct:dns_header
519 if (header.opcode == OPCODE_QUERY && header.qr == 0) {
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c53 * @param type - The opcode type (i.e., how many bytes it has).
56 * @param opcode - The last byte of the instruction's opcode, not counting
62 uint8_t opcode) {
86 return decision->opcodeDecisions[insnContext].modRMDecisions[opcode].
96 * @param opcode - See modRMRequired().
102 uint8_t opcode,
108 dec = &ONEBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
111 dec = &TWOBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
114 dec = &THREEBYTE38_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
60 modRMRequired(OpcodeType type, InstructionContext insnContext, uint8_t opcode) argument
100 decode(OpcodeType type, InstructionContext insnContext, uint8_t opcode, uint8_t modRM) argument
[all...]
/external/llvm/lib/VMCore/
H A DConstantsContext.h322 : opcode(opc), subclassoptionaldata(optionalflags), subclassdata(flags),
324 uint8_t opcode; member in struct:llvm::ExprMapKeyType
330 return this->opcode == that.opcode &&
337 if (this->opcode != that.opcode) return this->opcode < that.opcode;
437 if (Instruction::isCast(V.opcode))
438 return new UnaryConstantExpr(V.opcode,
[all...]
/external/oprofile/opjitconv/
H A Ddebug_line.c52 /* Adding new opcode needs an update of the standard_opcode_length
101 // number of opcode + 1
103 /* follow the array of opcode args nr: ubytes [nr_opcode_base] */
198 static void emit_extended_opcode(struct growable_buffer * b, ubyte opcode, argument
203 add_data(b, &opcode, 1);
208 static void emit_opcode(struct growable_buffer * b, ubyte opcode) argument
210 add_data(b, &opcode, 1);
215 ubyte opcode, long data)
217 add_data(b, &opcode, 1);
222 static void emit_opcode_unsigned(struct growable_buffer * b, ubyte opcode, argument
214 emit_opcode_signed(struct growable_buffer * b, ubyte opcode, long data) argument
295 unsigned long opcode = temp + local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/XME/
H A Dxme.c237 int opcode, event, error; local
242 if (!XQueryExtension(dpy, XIGMISC_PROTOCOL_NAME, &opcode, &event, &error))
/external/regex-re2/re2/
H A Dprog.h88 // Constructors per opcode
99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } function in class:re2::Prog::Inst
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; }
102 int cap() { DCHECK_EQ(opcode(), kInstCapture); return cap_; }
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; }
106 int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; }
107 EmptyOp empty() { DCHECK_EQ(opcode(), kInstEmptyWidt
129 set_opcode(InstOp opcode) argument
137 set_out_opcode(int out, InstOp opcode) argument
[all...]

Completed in 1256 milliseconds

12345678910