Searched refs:where (Results 76 - 100 of 322) sorted by relevance

1234567891011>>

/freebsd-11.0-release/sys/dev/drm2/
H A Ddrm_os_freebsd.h640 pci_read_config_byte(device_t kdev, int where, u8 *val) argument
643 *val = (u8)pci_read_config(kdev, where, 1);
648 pci_write_config_byte(device_t kdev, int where, u8 val) argument
651 pci_write_config(kdev, where, val, 1);
656 pci_read_config_word(device_t kdev, int where, uint16_t *val) argument
659 *val = (uint16_t)pci_read_config(kdev, where, 2);
664 pci_write_config_word(device_t kdev, int where, uint16_t val) argument
667 pci_write_config(kdev, where, val, 2);
672 pci_read_config_dword(device_t kdev, int where, uint32_t *val) argument
675 *val = (uint32_t)pci_read_config(kdev, where,
680 pci_write_config_dword(device_t kdev, int where, uint32_t val) argument
[all...]
/freebsd-11.0-release/sys/dev/vxge/
H A Dvxge-osdep.h412 #define vxge_os_pci_read8(pdev, cfgh, where, val) \
413 (*(val) = pci_read_config(pdev->ndev, where, 1))
415 #define vxge_os_pci_write8(pdev, cfgh, where, val) \
416 pci_write_config(pdev->ndev, where, val, 1)
418 #define vxge_os_pci_read16(pdev, cfgh, where, val) \
419 (*(val) = pci_read_config(pdev->ndev, where, 2))
421 #define vxge_os_pci_write16(pdev, cfgh, where, val) \
422 pci_write_config(pdev->ndev, where, val, 2)
424 #define vxge_os_pci_read32(pdev, cfgh, where, val) \
425 (*(val) = pci_read_config(pdev->ndev, where,
[all...]
/freebsd-11.0-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S50 .set MEM_BTX_ADDRESS,0x9000 # where BTX lives
51 .set MEM_BTX_ENTRY,0x9010 # where BTX starts to execute
53 .set MEM_BTX_CLIENT,0xa000 # where BTX clients live
175 movl $MEM_BTX_ADDRESS, %edi # %edi -> where BTX needs to go
202 * Copy the boot[12] args to where the BTX client can see them
204 movw $MEM_ARG, %si # where the args are at now
205 movw $MEM_ARG_BTX, %di # where the args are moving to
/freebsd-11.0-release/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h376 pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val) argument
379 *val = (u8)pci_read_config(pdev->dev.bsddev, where, 1);
384 pci_read_config_word(struct pci_dev *pdev, int where, u16 *val) argument
387 *val = (u16)pci_read_config(pdev->dev.bsddev, where, 2);
392 pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val) argument
395 *val = (u32)pci_read_config(pdev->dev.bsddev, where, 4);
400 pci_write_config_byte(struct pci_dev *pdev, int where, u8 val) argument
403 pci_write_config(pdev->dev.bsddev, where, val, 1);
408 pci_write_config_word(struct pci_dev *pdev, int where, u16 val) argument
411 pci_write_config(pdev->dev.bsddev, where, va
416 pci_write_config_dword(struct pci_dev *pdev, int where, u32 val) argument
[all...]
/freebsd-11.0-release/usr.bin/mkimg/
H A Dbsd.c56 bsd_metadata(u_int where, lba_t blk) argument
59 if (where == SCHEME_META_IMG_START)
61 else if (where == SCHEME_META_IMG_END)
H A Dapm.c61 apm_metadata(u_int where, lba_t blk) argument
64 blk += (where == SCHEME_META_IMG_START) ? nparts + 2 : 0;
H A Debr.c57 ebr_metadata(u_int where, lba_t blk) argument
60 blk += (where == SCHEME_META_PART_BEFORE) ? 1 : 0;
H A Dmbr.c67 mbr_metadata(u_int where, lba_t blk) argument
70 blk += (where == SCHEME_META_IMG_START) ? 1 : 0;
H A Dpc98.c63 pc98_metadata(u_int where, lba_t blk) argument
65 if (where == SCHEME_META_IMG_START)
H A Dscheme.c179 scheme_metadata(u_int where, lba_t start) argument
182 return ((scheme == NULL) ? start : scheme->metadata(where, start));
H A Dvtoc8.c57 vtoc8_metadata(u_int where, lba_t blk) argument
60 blk += (where == SCHEME_META_IMG_START) ? 1 : 0;
/freebsd-11.0-release/contrib/bmake/mk/
H A Dcython.mk23 # this is where we save generated src
26 # pyprefix is where python bits are
27 # which may not be where we want to put ours (prefix)
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dremote-e7000.c1060 stickbyte (char *where, unsigned int what) argument
1064 where[0] = digs[(what >> 4) & 0xf];
1065 where[1] = digs[(what & 0xf) & 0xf];
1134 int where = 0; local
1141 compose[where++] = 'S';
1150 compose[where++] = alen - 1 + '0';
1152 check_sum += stickbyte (compose + where, alen + stride + 1);
1153 where += 2;
1157 check_sum += stickbyte (compose + where, address >> (8 * (alen)));
1158 where
[all...]
H A Dcoff-pe-read.c158 pe_get16 (bfd *abfd, int where)
162 bfd_seek (abfd, (file_ptr) where, SEEK_SET);
168 pe_get32 (bfd *abfd, int where)
172 bfd_seek (abfd, (file_ptr) where, SEEK_SET);
155 pe_get16(bfd *abfd, int where) argument
165 pe_get32(bfd *abfd, int where) argument
/freebsd-11.0-release/contrib/binutils/binutils/
H A Dcoffgrok.h83 /* Vector which maps where in each output section
161 int offset; /* where */
204 } where; member in struct:coff_where
216 struct coff_where *where; member in struct:coff_symbol
/freebsd-11.0-release/sys/boot/userboot/userboot/
H A Dhost.c88 host_seek(struct open_file *f, off_t offset, int where) argument
91 return (CALLBACK(seek, f->f_fsdata, offset, where));
/freebsd-11.0-release/contrib/gcc/config/ia64/
H A Dunwind-ia64.c128 enum unw_where where; /* where the register gets saved */ member in struct:unw_reg_info
469 set_reg (struct unw_reg_info *reg, enum unw_where where,
473 reg->where = where;
486 if (reg->where == UNW_WHERE_SPILL_HOME)
488 reg->where = UNW_WHERE_PSPREL;
503 if (reg->where == UNW_WHERE_SPILL_HOME)
527 if (reg->where == UNW_WHERE_GR_SAVE)
529 reg->where
467 set_reg(struct unw_reg_info *reg, enum unw_where where, int when, unsigned long val) argument
892 enum unw_where where = UNW_WHERE_GR; local
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/stack/
H A Dstack.h87 int sk_insert(_STACK *sk, void *data, int where);
/freebsd-11.0-release/contrib/apr-util/
H A Dapu-config.in53 --bindir print location where binaries are installed
55 --includedir print location where headers are installed
175 # If the LA_FILE exists where we think it should be, use it. If we're
/freebsd-11.0-release/libexec/rtld-elf/aarch64/
H A Drtld_machdep.h50 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
/freebsd-11.0-release/libexec/rtld-elf/arm/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
/freebsd-11.0-release/libexec/rtld-elf/mips/
H A Drtld_machdep.h41 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
/freebsd-11.0-release/libexec/rtld-elf/powerpc/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
/freebsd-11.0-release/libexec/rtld-elf/powerpc64/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
/freebsd-11.0-release/libexec/rtld-elf/riscv/
H A Drtld_machdep.h57 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,

Completed in 281 milliseconds

1234567891011>>