Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 25 of 26) sorted by relevance

12

/xen-4.10.0-shim-comet/tools/libfsimage/zfs/zfs-include/
A Dspa.h200 #define BP_GET_COMPRESS(bp) BF64_GET((bp)->blk_prop, 32, 8) argument
203 #define BP_GET_CHECKSUM(bp) BF64_GET((bp)->blk_prop, 40, 8) argument
206 #define BP_GET_TYPE(bp) BF64_GET((bp)->blk_prop, 48, 8) argument
207 #define BP_SET_TYPE(bp, x) BF64_SET((bp)->blk_prop, 48, 8, x) argument
209 #define BP_GET_LEVEL(bp) BF64_GET((bp)->blk_prop, 56, 5) argument
215 #define BP_GET_DEDUP(bp) BF64_GET((bp)->blk_prop, 62, 1) argument
222 ((bp)->blk_phys_birth ? (bp)->blk_phys_birth : (bp)->blk_birth)
236 BP_GET_PSIZE(bp) : BP_GET_LSIZE(bp));
274 #define BP_IDENTITY(bp) (&(bp)->blk_dva[0]) argument
275 #define BP_IS_GANG(bp) DVA_GET_GANG(BP_IDENTITY(bp)) argument
[all …]
/xen-4.10.0-shim-comet/tools/libfsimage/zfs/
A Dfsys_zfs.c231 blkptr_t bp; in uberblock_verify() local
233 BP_ZERO(&bp); in uberblock_verify()
340 psize = BP_GET_PSIZE(bp); in zio_read_data()
351 if (zio_read_gang(bp, &bp->blk_dva[i], buf, stack) == 0) in zio_read_data()
380 lsize = BP_GET_LSIZE(bp); in zio_read()
381 psize = BP_GET_PSIZE(bp); in zio_read()
431 blkptr_t *bp, *tmpbuf; in dmu_read() local
433 bp = (blkptr_t *)stack; in dmu_read()
441 *bp = bp_array[idx]; in dmu_read()
444 if (BP_IS_HOLE(bp)) { in dmu_read()
[all …]
/xen-4.10.0-shim-comet/xen/common/
A Dbitmap.c47 static void clamp_last_byte(uint8_t *bp, unsigned int nbits) in clamp_last_byte() argument
52 bp[nbits/8] &= (1U << remainder) - 1; in clamp_last_byte()
493 void bitmap_long_to_byte(uint8_t *bp, const unsigned long *lp, int nbits) in bitmap_long_to_byte() argument
501 bp[b+j] = l; in bitmap_long_to_byte()
506 clamp_last_byte(bp, nbits); in bitmap_long_to_byte()
509 void bitmap_byte_to_long(unsigned long *lp, const uint8_t *bp, int nbits) in bitmap_byte_to_long() argument
517 l |= (unsigned long)bp[b+j] << (j*8); in bitmap_byte_to_long()
526 void bitmap_long_to_byte(uint8_t *bp, const unsigned long *lp, int nbits) in bitmap_long_to_byte() argument
528 memcpy(bp, lp, (nbits+7)/8); in bitmap_long_to_byte()
529 clamp_last_byte(bp, nbits); in bitmap_long_to_byte()
[all …]
/xen-4.10.0-shim-comet/tools/debugger/gdbsx/gx/
A Dgx_comm.c189 char *bp; in gx_getpkt() local
207 bp = buf; in gx_getpkt()
214 *bp++ = c; in gx_getpkt()
217 *bp = 0; in gx_getpkt()
244 return bp - buf; in gx_getpkt()
/xen-4.10.0-shim-comet/tools/firmware/vgabios/
A Dvgabios.c575 mov bp,si in display_string()
3411 push bp
3437 pop bp
3449 push bp
3475 pop bp
3488 push bp
3521 pop bp
3534 push bp
3567 pop bp
3584 push bp
[all …]
A Dclext.c442 push bp
451 pop bp
459 pop bp
506 push bp
523 push bp
576 push bp
589 push bp
594 pop bp
787 mov bp, di
814 mov di, bp
[all …]
A Dvbe.c247 push bp
248 mov bp, sp local
256 mov ax, 4[bp] ; xres
261 pop bp
746 push bp
747 mov bp, sp
752 mov ax, 8[bp]
753 mul word 6[bp]
754 mul word 4[bp]
762 pop bp
/xen-4.10.0-shim-comet/tools/firmware/rombios/
A Drombios.c330 pop bp
377 pop bp
424 pop bp
1153 push bp
1161 pop bp
1171 push bp
1179 pop bp
1190 push bp
1201 pop bp
1212 push bp
[all …]
/xen-4.10.0-shim-comet/xen/arch/x86/acpi/
A Dwakeup_prot.S28 SAVE_GREG(bp)
101 LOAD_GREG(bp)
128 DECLARE_GREG(bp)
/xen-4.10.0-shim-comet/xen/arch/x86/
A Ddmi_scan.c116 char *bp=(char *)dm; in dmi_string() local
117 bp+=dm->length; in dmi_string()
121 while(s>0 && *bp) in dmi_string()
123 bp+=strlen(bp); in dmi_string()
124 bp++; in dmi_string()
127 return bp; in dmi_string()
A Dmpparse.c652 unsigned int *bp = maddr_to_virt(base); in smp_scan_config() local
655 Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length); in smp_scan_config()
660 mpf = (struct intel_mp_floating *)bp; in smp_scan_config()
661 if ((*bp == SMP_MAGIC_IDENT) && in smp_scan_config()
663 !mpf_checksum((unsigned char *)bp, 16) && in smp_scan_config()
692 bp += 4; in smp_scan_config()
A Dtraps.c395 static void _show_trace(unsigned long sp, unsigned long __maybe_unused bp) in _show_trace() argument
411 static void _show_trace(unsigned long sp, unsigned long bp) in _show_trace() argument
419 next = bp; in _show_trace()
/xen-4.10.0-shim-comet/xen/include/xen/
A Dbitmap.h259 void bitmap_long_to_byte(uint8_t *bp, const unsigned long *lp, int nbits);
260 void bitmap_byte_to_long(unsigned long *lp, const uint8_t *bp, int nbits);
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/
A Dioreq.c1268 buf_ioreq_t bp = { .data = p->data, in hvm_send_buffered_ioreq() local
1298 bp.size = 0; in hvm_send_buffered_ioreq()
1301 bp.size = 1; in hvm_send_buffered_ioreq()
1304 bp.size = 2; in hvm_send_buffered_ioreq()
1307 bp.size = 3; in hvm_send_buffered_ioreq()
1325 pg->buf_ioreq[pg->ptrs.write_pointer % IOREQ_BUFFER_SLOT_NUM] = bp; in hvm_send_buffered_ioreq()
1329 bp.data = p->data >> 32; in hvm_send_buffered_ioreq()
1330 pg->buf_ioreq[(pg->ptrs.write_pointer+1) % IOREQ_BUFFER_SLOT_NUM] = bp; in hvm_send_buffered_ioreq()
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_private.c606 void bitmap_64_to_byte(uint8_t *bp, const uint64_t *lp, int nbits) in bitmap_64_to_byte() argument
614 bp[b+j] = l; in bitmap_64_to_byte()
621 void bitmap_byte_to_64(uint64_t *lp, const uint8_t *bp, int nbits) in bitmap_byte_to_64() argument
629 l |= (uint64_t)bp[b+j] << (j*8); in bitmap_byte_to_64()
A Dxc_private.h367 void bitmap_64_to_byte(uint8_t *bp, const uint64_t *lp, int nbits);
368 void bitmap_byte_to_64(uint64_t *lp, const uint8_t *bp, int nbits);
/xen-4.10.0-shim-comet/tools/firmware/rombios/32bit/
A Drombios_compat.h40 Bit16u di, filler1, si, filler2, bp, filler3, sp, filler4; member
/xen-4.10.0-shim-comet/xen/include/public/arch-x86/
A Dxen-x86_32.h140 __DECL_REG_LO16(bp);
A Dxen-x86_64.h184 __DECL_REG_LO8(bp);
/xen-4.10.0-shim-comet/stubdom/grub.patches/
A D99minios419 char *bp = buffer;
438 *bp++ = *(ptr++); /* putchar(*(ptr++)); */
442 - case 'c': *bp++ = (*(dataptr++))&0xff;
446 + *bp++ = c&0xff;
456 *bp++ = c; /* putchar(c); */
463 *bp = 0;
464 return bp - buffer;
/xen-4.10.0-shim-comet/xen/arch/x86/boot/
A Dvideo.S702 movw %di, %bp # BP=original mode table end
707 movw %bp, %di
/xen-4.10.0-shim-comet/tools/debugger/kdd/
A Dkdd.c580 s->rxp.cmd.sbp.bp, s->rxp.cmd.sbp.u1, s->rxp.cmd.sbp.u2); in kdd_handle_soft_breakpoint()
586 s->txp.cmd.sbp.bp = s->rxp.cmd.sbp.bp; in kdd_handle_soft_breakpoint()
A Dkdd.h158 uint32_t bp; /* IN: ID of breakpoint to operate on */ member
/xen-4.10.0-shim-comet/xen/include/asm-x86/
A Dasm_defns.h377 LOAD_ONE_REG(bp, \compat)
/xen-4.10.0-shim-comet/xen/arch/x86/x86_emulate/
A Dx86_emulate.c1951 case 5: p = (highbyte_regs ? &regs->ch : (void *)&regs->r(bp)); break; in decode_register()
2736 ea.mem.off = state->regs->bp + state->regs->si; in x86_decode()
2740 ea.mem.off = state->regs->bp + state->regs->di; in x86_decode()
2752 ea.mem.off = state->regs->bp; in x86_decode()
2799 ea.mem.off += state->regs->r(bp); in x86_decode()
3946 dst.reg = (unsigned long *)&_regs.r(bp); in x86_emulate()
3949 &_regs.r(bp), dst.bytes, ctxt)) ) in x86_emulate()
3959 ebp = truncate_word(_regs.r(bp) - i*dst.bytes, ctxt->sp_size/8); in x86_emulate()
3978 _regs.sp = _regs.bp; in x86_emulate()
3980 _regs.r(sp) = dst.bytes == 4 ? _regs.ebp : _regs.r(bp); in x86_emulate()
[all …]

Completed in 73 milliseconds

12