HomeSort by relevance Sort by last modified time
    Searched full:mnemonic (Results 26 - 50 of 329) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smack/src/org/xbill/DNS/
DClass.java 35 private static class DClassMnemonic extends Mnemonic {
48 private static Mnemonic classes = new DClassMnemonic();
TypeBitmap.java 56 types.add(Mnemonic.toInteger(typecode));
73 types.add(Mnemonic.toInteger(typecode));
144 return types.contains(Mnemonic.toInteger(typecode));
KEYRecord.java 46 private static Mnemonic protocols = new Mnemonic("KEY protocol",
47 Mnemonic.CASE_UPPER);
187 private static Mnemonic flags = new Mnemonic("KEY flags",
188 Mnemonic.CASE_UPPER);
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.h 69 * @param mn - \link Mnemonic mnemonic \endlink of the instruction
73 static char * encode(char * stream, Mnemonic mn, const Operands& opnds);
111 * @brief Returns #MnemonicDesc by the given Mnemonic.
113 static const MnemonicDesc * getMnemonicDesc(Mnemonic mn)
120 * @brief Returns a Mnemonic for the given name.
122 * The lookup is case insensitive, if no mnemonic found for the given
125 static Mnemonic str2mnemonic(const char * mn_name);
128 * @brief Returns a string representation of the given Mnemonic.
130 * If invalid mnemonic passed, then the behavior is unpredictable
    [all...]
enc_prvt.h 38 // in the mnemonic descriptions in the Intel's arch manual.
75 * opcodes in the array for a given mnemonic.
187 //'m' was only used in LEA mnemonic, but is replaced with
312 * @defgroup MF_ Mnemonic flags
351 * The mnemonic itself
353 Mnemonic mn;
355 * Various characteristics of mnemonic.
367 * Print name of the mnemonic
enc_wrapper.cpp 142 void printEncoderInst(Mnemonic m, EncoderBase::Operands& opnds) {
159 extern "C" ENCODER_DECLARE_EXPORT char * encoder_imm(Mnemonic m, OpndSize size, int imm, char * stream) {
195 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem(Mnemonic m, OpndSize size,
207 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg(Mnemonic m, OpndSize size,
224 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg_reg(Mnemonic m, OpndSize size,
242 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_reg(Mnemonic m, OpndSize size,
256 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_scale_reg(Mnemonic m, OpndSize size,
270 extern "C" ENCODER_DECLARE_EXPORT char * encoder_reg_mem_scale(Mnemonic m, OpndSize size,
285 extern "C" ENCODER_DECLARE_EXPORT char * encoder_mem_disp_scale_reg(Mnemonic m, OpndSize size,
299 extern "C" ENCODER_DECLARE_EXPORT char * encoder_movzs_mem_disp_scale_reg(Mnemonic m, OpndSize size
    [all...]
  /external/chromium/chrome/browser/resources/
menu.js 13 // Regular expression to match/find mnemonic key.
128 true /* enable mnemonic */);
260 // Map from mnemonic character to item to activate
293 * mnemonic key, preceded by '&'.
294 * @param {MenuItem} item The menu item to be activated by mnemonic
299 * @param {boolean} enableMnemonic True to enable mnemonic, or false
300 * to not to interprete mnemonic key. The function removes '&'
304 var mnemonic = MNEMONIC_REGEXP.exec(label);
305 if (mnemonic && enableMnemonic) {
306 var c = mnemonic[2].toLowerCase()
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
menu.js 13 // Regular expression to match/find mnemonic key.
128 true /* enable mnemonic */);
254 // Map from mnemonic character to item to activate
287 * mnemonic key, preceded by '&'.
288 * @param {MenuItem} item The menu item to be activated by mnemonic
293 * @param {boolean} enableMnemonic True to enable mnemonic, or false
294 * to not to interprete mnemonic key. The function removes '&'
298 var mnemonic = MNEMONIC_REGEXP.exec(label);
299 if (mnemonic && enableMnemonic) {
300 var c = mnemonic[2].toLowerCase()
    [all...]
menu.css 61 .mnemonic-enabled .mnemonic {
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfoV4.td 217 class T_LD_abs_set<string mnemonic, RegisterClass RC>:
220 "$dst1 = "#mnemonic#"($dst2=##$addr)",
234 multiclass ld_idxd_shl_pbase<string mnemonic, RegisterClass RC, bit isNot,
240 ") ")#"$dst = "#mnemonic#"($src2+$src3<<#$offset)",
244 multiclass ld_idxd_shl_pred<string mnemonic, RegisterClass RC, bit PredNot> {
246 defm _c#NAME : ld_idxd_shl_pbase<mnemonic, RC, PredNot, 0>;
248 defm _cdn#NAME : ld_idxd_shl_pbase<mnemonic, RC, PredNot, 1>;
253 multiclass ld_idxd_shl<string mnemonic, string CextOp, RegisterClass RC> {
258 "$dst = "#mnemonic#"($src1+$src2<<#$offset)",
262 defm Pt_V4 : ld_idxd_shl_pred<mnemonic, RC, 0 >
    [all...]
  /external/iptables/extensions/
libxt_CONNMARK.man 32 Binary AND the ctmark with \fIbits\fP. (Mnemonic for \fB\-\-set\-xmark
36 Binary OR the ctmark with \fIbits\fP. (Mnemonic for \fB\-\-set\-xmark\fP
40 Binary XOR the ctmark with \fIbits\fP. (Mnemonic for \fB\-\-set\-xmark\fP
  /dalvik/vm/compiler/codegen/x86/
Lower.h 332 Mnemonic opCode;
340 Mnemonic opCode;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_shader_op.h 38 const char *mnemonic; member in struct:sh_opcode_info
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
ppc-xlate.pl 147 my $mnemonic = $2;
149 my $opcode = eval("\$$mnemonic");
152 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
  /external/llvm/lib/Target/X86/
X86Instr3DNow.td 19 class I3DNow_binop<bits<8> o, Format F, dag ins, string Mnemonic, list<dag> pat>
21 !strconcat(Mnemonic, "\t{$src2, $dst|$dst, $src2}"), pat>,
28 class I3DNow_conv<bits<8> o, Format F, dag ins, string Mnemonic, list<dag> pat>
30 !strconcat(Mnemonic, "\t{$src, $dst|$dst, $src}"), pat>,
  /external/llvm/test/MC/X86/
x86_errors.s 14 // 32: test.s:8:2: error: invalid instruction mnemonic 'movi'
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader_op.h 38 const char *mnemonic; member in struct:sh_opcode_info
  /external/openssl/crypto/perlasm/
ppc-xlate.pl 147 my $mnemonic = $2;
149 my $opcode = eval("\$$mnemonic");
152 elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
  /external/valgrind/main/VEX/priv/
host_s390_disasm.c 39 /* The format that is used to write out a mnemonic.
96 /* Build and return the extended mnemonic for the compare and branch
124 /* Common function used to construct a mnemonic based on a condition code
162 /* Return the special mnemonic for the BCR opcode */
173 /* Return the special mnemonic for the BC opcode */
184 /* Return the special mnemonic for the BRC opcode */
195 /* Return the special mnemonic for the BRCL opcode */
206 /* Return the special mnemonic for a conditional load/store opcode */
273 insn. It is understood that the mnemonic comes first and that arguments
336 /* mask == 0 has no special mnemonic */
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 116 bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
139 StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
142 void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
228 bool shouldOmitCCOutOperand(StringRef Mnemonic,
230 bool shouldOmitPredicateOperand(StringRef Mnemonic,
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 84 // 1. A operand match table is built, each entry contains a mnemonic, an
86 // class/mnemonic and target features to be checked while trying to match.
89 // mnemonic and will check if the target feature for this mnemonic also
415 /// Mnemonic - This is the first token of the matched instruction, its
416 /// mnemonic.
417 StringRef Mnemonic;
421 /// This directly corresponds to the tokenized AsmString after the mnemonic is
485 // The primary comparator is the instruction mnemonic.
486 if (Mnemonic != RHS.Mnemonic
    [all...]
  /external/bison/doc/
bison.x 46 supports both traditional single-letter options and mnemonic long
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netrom/
netrom.h 47 char mnemonic[7]; member in struct:nr_route_struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/netrom/
netrom.h 47 char mnemonic[7]; member in struct:nr_route_struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/netrom/
netrom.h 47 char mnemonic[7]; member in struct:nr_route_struct

Completed in 887 milliseconds

12 3 4 5 6 7 8 91011>>