Searched refs:sib (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.0-release/contrib/tcpdump/
H A Dmakemib207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
208 if (oid[sib] == value) {
209 if (new != sib)
214 sib, value
/freebsd-10.0-release/contrib/ofed/libibverbs/src/
H A Dmemory.c313 struct ibv_mem_node *child, *parent, *sib, *tmp; local
371 sib = parent->right;
373 if (sib->color == IBV_RED) {
375 sib->color = IBV_BLACK;
377 sib = parent->right;
380 if ((!sib->left || sib->left->color == IBV_BLACK) &&
381 (!sib->right || sib->right->color == IBV_BLACK)) {
382 sib
[all...]
/freebsd-10.0-release/sys/x86/x86/
H A Dmsi.c203 struct msi_intsrc *sib, *msi = (struct msi_intsrc *)isrc; local
240 sib = (struct msi_intsrc *)intr_lookup_source(msi->msi_irqs[i]);
241 sib->msi_cpu = apic_id;
242 sib->msi_vector = vector + i;
243 if (sib->msi_intsrc.is_handlers > 0)
244 apic_enable_vector(sib->msi_cpu, sib->msi_vector);
248 sib->msi_irq, sib->msi_cpu, sib
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h40 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
41 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
42 #define baseFromSIB(sib) ((sib) & 0x7)
129 ENTRY(sib) \
313 * sib is synonymous with NONE.
507 uint8_t sib; member in struct:InternalInstruction
H A DX86DisassemblerDecoder.c963 if (consumeByte(insn, &insn->sib))
966 index = indexFromSIB(insn->sib) | (xFromREX(insn->rexPrefix) << 3);
980 switch (scaleFromSIB(insn->sib)) {
995 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
H A DX86Disassembler.cpp62 sib = 504, enumerator in enum:llvm::X86::__anon2512
591 // sib and sib64 were handled in the top-level if, so they're only
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/intel/dtrace/
H A Dfasttrap_isa.c142 #define FASTTRAP_SIB_SCALE(sib) (((sib) >> 6) & 0x3)
143 #define FASTTRAP_SIB_INDEX(sib) (((sib) >> 3) & 0x7)
144 #define FASTTRAP_SIB_BASE(sib) ((sib) & 0x7)
460 uint8_t sib = instr[start + 2]; local
461 uint_t index = FASTTRAP_SIB_INDEX(sib);
462 uint_t base = FASTTRAP_SIB_BASE(sib);
464 tp->ftt_scale = FASTTRAP_SIB_SCALE(sib);
[all...]
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dtc-i386.c162 /* RM and SIB are the modrm byte and the sib byte where the
167 sib_byte sib; member in struct:_i386_insn
1365 fprintf (stdout, " sib: base %x index %x scale %x\n",
1366 x->sib.base, x->sib.index, x->sib.scale);
3558 i.sib.base = NO_BASE_REGISTER;
3559 i.sib.index = NO_INDEX_REGISTER;
3577 i.sib.index = i.index_reg->reg_num;
3578 i.sib
[all...]
/freebsd-10.0-release/sys/amd64/amd64/
H A Ddb_disasm.c1004 int mod, rm, sib, index, disp, size, have_sib; local
1023 get_value_inc(sib, loc, 1, FALSE);
1024 rm = sib_base(rex, sib);
1025 index = sib_index(rex, sib);
1028 addrp->ss = sib_ss(rex, sib);
/freebsd-10.0-release/sys/i386/i386/
H A Ddb_disasm.c925 int mod, rm, sib, index, disp; local
968 get_value_inc(sib, loc, 1, FALSE);
969 rm = sib_base(sib);
970 index = sib_index(sib);
973 addrp->ss = sib_ss(sib);
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c282 Dwarf_Die sib; local
285 if ((rc = dwarf_siblingof(dw->dw_dw, die, &sib, &dw->dw_err)) ==
287 return (sib);
/freebsd-10.0-release/sys/contrib/x86emu/
H A Dx86emu.c805 decode_sib_address(struct x86emu *emu, int sib, int mod) argument
809 switch (sib & 0x07) {
842 switch ((sib >> 3) & 0x07) {
868 scale = 1 << ((sib >> 6) & 0x03);
887 uint32_t offset, sib; local
903 sib = fetch_byte_imm(emu);
904 offset = decode_sib_address(emu, sib, 0);

Completed in 223 milliseconds