HomeSort by relevance Sort by last modified time
    Searched refs:sib (Results 1 - 25 of 52) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/include/opcode/
i386.h 111 /* Extract fields from the sib byte. */
112 #define SIB_SCALE_FIELD(sib) (((sib) >> 6) & 3)
113 #define SIB_INDEX_FIELD(sib) (((sib) >> 3) & 7)
114 #define SIB_BASE_FIELD(sib) (((sib) >> 0) & 7)
126 /* High extension to SIB index field. */
128 /* High extension to base field of modrm or SIB, or reg field of opcode. */
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
PCCTSAST.cpp 147 PCCTS_AST *sib; local
154 if ( *cursor!=this ) sib = *cursor;
158 sib = this;
164 if ( sib==NULL ) /* hit end of sibling list */
166 sib = _pop(template_stack, &tsp);
167 if ( sib == NULL ) { *cursor = NULL; return NULL; }
170 if ( sib->type() != u->type() )
173 if ( sib->down()!=NULL )
175 if ( sib->right()!=NULL ) _push(template_stack, &tsp, sib->right());
213 PCCTS_AST *sib; local
230 PCCTS_AST *sib; local
254 ScanAST *sib; local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
PCCTSAST.cpp 147 PCCTS_AST *sib; local
153 if ( *cursor!=this ) sib = *cursor;
157 sib = this;
163 if ( sib==NULL ) /* hit end of sibling list */
165 sib = _pop(template_stack, &tsp);
166 if ( sib == NULL ) { *cursor = NULL; return NULL; }
169 if ( sib->type() != u->type() )
172 if ( sib->down()!=NULL )
174 if ( sib->right()!=NULL ) _push(template_stack, &tsp, sib->right());
212 PCCTS_AST *sib; local
229 PCCTS_AST *sib; local
249 ScanAST *sib; local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
astlib.c 217 SORAST *sib; local
222 for (sib=t; sib!=NULL&&u!=NULL; sib=sib->ast_right, u=u->ast_right)
224 if ( sib->token != u->token ) return 0;
225 if ( sib->ast_down!=NULL )
226 if ( !ast_match_partial(sib->ast_down, u->ast_down) ) return 0;
243 SORAST *sib; local
248 if ( *cursor!=t ) sib = *cursor;
311 SORAST *sib; local
336 ScanAST *sib; local
    [all...]
  /external/tcpdump/
makemib 205 for (sib = child[parent]; sib != ""; sib = sibling[sib])
206 if (oid[sib] == value) {
207 if (new != sib)
212 sib, value
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBlur.java 50 ScriptIntrinsicBlur sib = new ScriptIntrinsicBlur(id, rs); local
51 sib.setRadius(5.f);
52 return sib;
ScriptIntrinsicHistogram.java 52 ScriptIntrinsicHistogram sib = new ScriptIntrinsicHistogram(id, rs); local
53 return sib;
  /external/google-breakpad/src/third_party/libdisasm/
ia32_modrm.c 5 /* NOTE: when decoding ModR/M and SIB, we have to add 1 to all register
6 * values obtained from decoding the ModR/M or SIB byte, since they
12 /* -------------------------------- ModR/M, SIB */
38 /* SIB flags */
50 /* Convenience struct for SIB bitfield */
105 * according to the contents of the SIB byte.
106 * b points to the SIB byte in the instruction-stream buffer; the
107 * byte after b[0] is therefore the byte after the SIB
108 * returns number of bytes 'used', including the SIB byte */
109 size_t size = 1; /* start at 1 for SIB byte *
110 struct SIB_byte sib; local
    [all...]
ia32_invariant.c 16 /* -------------------------------- ModR/M, SIB */
44 /* SIB flags */
56 /* Convenience struct for SIB bitfield */
77 struct SIB_byte sib; local
97 byte_decode(*cin, (struct modRM_byte *)(void*)&sib);
99 out[1] = in[1]; /* save sib byte */
105 if ( sib.base == SIB_BASE_EBP && ! modrm.mod ) {
  /external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 40 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
41 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
42 #define baseFromSIB(sib) ((sib) & 0x7)
129 ENTRY(sib) \
311 * SIBIndex - All possible values of the SIB index field.
313 * sib is synonymous with NONE.
324 * SIBBase - All possible values of the SIB base field
499 uint8_t sib; member in struct:InternalInstruction
    [all...]
X86DisassemblerDecoder.c 899 * readSIB - Consumes the SIB byte to determine addressing information for an
902 * @param insn - The instruction whose SIB byte is to be read.
903 * @return - 0 if the SIB byte was successfully read; nonzero otherwise.
919 dbgprintf(insn, "SIB-based addressing doesn't work in 16-bit mode");
932 if (consumeByte(insn, &insn->sib))
935 index = indexFromSIB(insn->sib) | (xFromREX(insn->rexPrefix) << 3);
949 switch (scaleFromSIB(insn->sib)) {
964 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
984 debug("Cannot have Mod = 0b11 and a SIB byte");
1041 * readModRM - Consumes all addressing information (ModR/M byte, SIB byte, an
    [all...]
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 1098 int sib = 0;
1104 for ( ; sib < self->sibling_count; ++sib) {
1105 struct tsync_sibling *s = &self->sibling[sib];
1154 long ret, sib;
1168 /* Check prctl failure detection by requesting sib 0 diverge. */
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 29 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
30 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
31 #define baseFromSIB(sib) ((sib) & 0x7)
139 ENTRY(sib) \
418 /// \brief All possible values of the SIB index field.
420 /// sib is synonymous with NONE.
421 /// Vector SIB: index can be XMM or YMM
610 uint8_t sib; member in struct:llvm::X86Disassembler::InternalInstruction
    [all...]
  /libcore/ojluni/src/main/java/java/util/
TreeMap.java 2409 TreeMapEntry<K,V> sib = rightOf(parentOf(x)); local
2436 TreeMapEntry<K,V> sib = leftOf(parentOf(x)); local
    [all...]
  /external/elfutils/libcpu/
i386_data.h 286 /* SIB */
287 uint_fast8_t sib = data[1]; local
292 || ((modrm & 0xc7) == 0x4 && (sib & 0x7) == 0x5))
304 if ((modrm & 0xc0) != 0 || (sib & 0x3f) != 0x25
319 if ((modrm & 0xc7) != 0x4 || (sib & 0x7) != 0x5)
324 (prefixes & has_rex_b) ? hiregs[sib & 7] :
325 (prefixes & has_addr16) ? dregs[sib & 7] :
327 aregs[sib & 7]);
335 if ((sib & 0x38) != 0x20
346 ? hiregs[(sib >> 3) & 7]
    [all...]
  /prebuilts/go/darwin-x86/test/
index.go 87 var sib []int = make([]int, 100000)
103 sib []int
111 var t = T{si, ai, pai, sq, aq, paq, sib, aib, paib, sqb, aqb, paqb}
113 var pt = &T{si, ai, pai, sq, aq, paq, sib, aib, paib, sqb, aqb, paqb}
  /prebuilts/go/linux-x86/test/
index.go 87 var sib []int = make([]int, 100000)
103 sib []int
111 var t = T{si, ai, pai, sq, aq, paq, sib, aib, paib, sqb, aqb, paqb}
113 var pt = &T{si, ai, pai, sq, aq, paq, sib, aib, paib, sqb, aqb, paqb}
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
nops.s 28 # with sib and imm32
x86-64-nops.s 28 # with sib and imm32
sib-intel.d 1 #source: sib.s
3 #name: i386 SIB (Intel mode)
  /external/seccomp-tests/linux/
seccomp_bpf.c 1698 int sib = 0; local
1973 long ret, sib; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_bpf.c 1884 int sib = 0; local
2151 long ret, sib; local
    [all...]
  /external/libcups/cups/
tls-sspi.c 429 CERT_NAME_BLOB sib; /* Arbitrary array of bytes */ local
497 sib.cbData = dwSize;
498 sib.pbData = p;
500 storedContext = CertFindCertificateInStore(store, X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, 0, CERT_FIND_SUBJECT_NAME, &sib, NULL);
1685 CERT_NAME_BLOB sib; \/* Arbitrary array of bytes *\/ local
1885 CERT_NAME_BLOB sib; \/* Arbitrary array of bytes *\/ local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/
x86-64-sib-intel.d 1 #source: ../x86-64-sib.s
4 #name: x86-64 (ILP32) SIB (Intel mode)
x86-64-sib.d 1 #source: ../x86-64-sib.s
4 #name: x86-64 (ILP32) SIB

Completed in 937 milliseconds

1 2 3