Searched refs:space (Results 151 - 175 of 345) sorted by relevance

1234567891011>>

/freebsd-12-stable/sys/fs/ext2fs/
H A Dext2_htree.c222 uint32_t space; local
225 space = ip->i_e2fs->e2fs_bsize - EXT2_DIR_REC_LEN(1) -
229 space -= sizeof(struct ext2fs_htree_tail);
231 return (space / sizeof(struct ext2fs_htree_entry));
238 uint32_t space; local
241 space = fs->e2fs_bsize - EXT2_DIR_REC_LEN(0);
244 space -= sizeof(struct ext2fs_htree_tail);
246 return (space / sizeof(struct ext2fs_htree_entry));
/freebsd-12-stable/sys/mips/mips/
H A Dlocore.S78 .space 4 # Assumes mips32? Is that OK?
/freebsd-12-stable/sys/xen/interface/
H A Dmemory.h178 * any large discontiguities in the machine address space, 2MB gaps in
202 * Returns the location in virtual address space of the machine_to_phys
204 * map it by default into guest address space, do not implement this command.
215 /* Source mapping space. */
227 * pseudophysical address space.
238 unsigned int space; /* => enum phys_map_space */ member in struct:xen_add_to_physmap
242 /* Index into space being mapped. */
257 uint16_t space; /* => enum phys_map_space */ member in struct:xen_add_to_physmap_batch
263 /* Indexes into space being mapped. */
286 * pseudophysical address space
[all...]
/freebsd-12-stable/sys/i386/i386/
H A Dlocore.s57 * PTmap is recursive pagemap at top of virtual address space.
79 .space 0x2000 /* space for tmpstk - temporary stack */
83 bootinfo: .space BOOTINFO_SIZE /* bootinfo that we can handle */
/freebsd-12-stable/contrib/gcc/doc/include/
H A Dtexinfo.tex113 \def\linenumber{l.\the\inputlineno:\space}
193 stand-alone strong-est time-stamp time-stamps which-ever white-space
231 % This is the space between the bar and the text.
265 % we did was a \nobreak, we don't want to insert more space.
343 % Only leave this space if the footline is nonempty.
386 % offset so that the space between them is truly \outerhsize or \outervsize
421 % Each occurence of `\^^M' or `<space>\^^M' is replaced by a single space.
423 % \argremovec might leave us with trailing space, e.g.,
425 % This space toke
[all...]
/freebsd-12-stable/contrib/binutils/bfd/
H A Decofflink.c855 of space required by debugging information. We don't do
1571 PTR space));
1574 ecoff_write_shuffle (abfd, swap, shuffle, space)
1578 PTR space;
1595 || bfd_bread (space, (bfd_size_type) l->size,
1597 || bfd_bwrite (space, (bfd_size_type) l->size, abfd) != l->size)
1637 PTR space = NULL;
1644 space = (PTR) bfd_malloc (amt);
1645 if (space == NULL && ainfo->largest_file_shuffle != 0)
1648 if (! ecoff_write_shuffle (abfd, swap, ainfo->line, space)
1634 PTR space = NULL; local
[all...]
/freebsd-12-stable/tools/bus_space/
H A Dbusdma.c468 bd_md_first_seg(int mdid, int space) argument
476 if (space != BUSDMA_MD_BUS && space != BUSDMA_MD_PHYS &&
477 space != BUSDMA_MD_VIRT) {
481 seg = md->u.md.seg[space];
/freebsd-12-stable/stand/kshim/
H A Dbsd_kernel.h483 void bus_space_read_region_1(bus_space_tag_t space, bus_space_handle_t handle, bus_size_t offset, uint8_t *datap, bus_size_t count);
484 void bus_space_write_region_1(bus_space_tag_t space, bus_space_handle_t handle, bus_size_t offset, uint8_t *datap, bus_size_t count);
485 void bus_space_read_region_4(bus_space_tag_t space, bus_space_handle_t handle, bus_size_t offset, uint32_t *datap, bus_size_t count);
486 void bus_space_write_region_4(bus_space_tag_t space, bus_space_handle_t handle, bus_size_t offset, uint32_t *datap, bus_size_t count);
488 void bus_space_barrier(bus_space_tag_t space, bus_space_handle_t handle, bus_size_t offset, bus_size_t length, int flags);
/freebsd-12-stable/usr.sbin/pmcstat/
H A Dpmcpl_callgraph.c258 const char *space; local
262 space = " ";
265 (void) fprintf(args.pa_graphfile, "%*s", depth, space);
277 (void) fprintf(args.pa_graphfile, "%*s", 12 - n, space);
280 (void) fprintf(args.pa_graphfile, "%*s", depth, space);
/freebsd-12-stable/sys/ufs/ffs/
H A Dffs_snapshot.c218 void *space; local
387 space = malloc(len, M_DEVBUF, M_WAITOK | M_ZERO);
389 fs->fs_active = space;
484 space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
485 copy_fs->fs_csp = space;
487 space = (char *)space + fs->fs_cssize;
497 bcopy(bp->b_data, space, (u_int)len);
498 space = (char *)space
[all...]
/freebsd-12-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_sdhost.c1225 bus_size_t space; local
1234 space = HC_FIFO_SIZE - ((edm >> 4) & 0x1f);
1235 if (i + space > count)
1236 space = count - i;
1237 if (space > 0)
1239 HC_DATAPORT, data + i, space);
1240 i += space;
/freebsd-12-stable/contrib/gcc/
H A Dvec.h56 occupy minimal space in the structure containing them.
60 there is sufficient allocated space for the operation to succeed
93 the 'space' predicate will tell you whether there is spare capacity
194 Allocate a new vector with space for RESERVE objects. If RESERVE
229 If V has space for RESERVE additional entries, return nonzero. You
236 (VEC_OP(T,base,space)(VEC_BASE(V),R VEC_CHECK_INFO))
238 /* Reserve space.
249 /* Reserve space exactly.
268 be sufficient space in the vector. */
336 place. There must be sufficient space
[all...]
H A Dc-lex.c282 const unsigned char *space, *name;
293 space = name = (const unsigned char *) "";
297 space = cpp_token_as_text (pfile, s);
304 &fe_loc, space, name);
281 const unsigned char *space, *name; local
H A Dgengtype-lex.l56 WS [[:space:]]+
65 [^[:alnum:]_]typedef{WS}(struct|union){WS}{ID}{WS}?[*[:space:]]{WS}?{ID}{WS}?";" {
558 /* Remove inserted space? */
570 /* Skip next space? */
/freebsd-12-stable/sys/kern/
H A Dkern_intr.c190 int missed, space; local
197 space = 1;
205 space = 0;
219 if (missed == 1 && space == 1) {
235 } else if (space) {
237 space = 0;
630 size_t space; local
662 space = sizeof(ih->ih_name) - (start - ih->ih_name) - 1;
663 if (strlen(descr) + 1 > space) {
/freebsd-12-stable/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c348 panic("Unknown color space depth %d", sc->fb.fb_bpp);
366 int space; local
431 * into our memory space. If the MMU is not yet up, it will be
443 OF_decode_addr(node, 0, &space, &phys);
446 sparc64_fake_bustag(space, fb_phys, sc->sc_memt);
/freebsd-12-stable/contrib/amd/doc/
H A Dtexinfo.tex114 \def\linenumber{l.\the\inputlineno:\space}
158 % Since the category of space is not known, we have to be careful.
192 stand-alone strong-est time-stamp time-stamps which-ever white-space
242 % we did was a \nobreak, we don't want to insert more space.
369 % Only leave this space if the footline is nonempty.
412 % offset so that the space between them is truly \outerhsize or \outervsize
447 % Each occurrence of `\^^M' or `<space>\^^M' is replaced by a single space.
449 % \argremovec might leave us with trailing space, e.g.,
451 % This space toke
[all...]
/freebsd-12-stable/contrib/libstdc++/config/locale/generic/
H A Dctype_members.cc60 case space:
61 __ret = wctype("space");
/freebsd-12-stable/contrib/libstdc++/src/
H A Distream.cc217 && !__ct.is(ctype_base::space,
226 __size = (__ct.scan_is(ctype_base::space,
293 && !__ct.is(ctype_base::space,
301 __size = (__ct.scan_is(ctype_base::space,
/freebsd-12-stable/contrib/bmake/unit-tests/
H A Dmodword.mk11 EMPTY= # the space should be ignored
12 ESCAPEDSPACE=\ # escaped space before the '#'
/freebsd-12-stable/sys/dev/pci/
H A Dpcivar.h57 uint8_t pp_status; /* conf. space addr. of PM control/status reg */
58 uint8_t pp_bse; /* conf. space addr. of PM BSE reg */
59 uint8_t pp_data; /* conf. space addr. of PM data reg */
210 uint8_t bus; /* config space bus address */
211 uint8_t slot; /* config space slot address */
212 uint8_t func; /* config space function number */
392 * Operations on configuration space.
436 * configuration space.
451 pci_enable_io(device_t dev, int space) argument
453 return(PCI_ENABLE_IO(device_get_parent(dev), dev, space));
457 pci_disable_io(device_t dev, int space) argument
[all...]
H A Dvga_pci.c553 vga_pci_enable_io(device_t dev, device_t child, int space) argument
558 return (pci_enable_io(dev, space));
562 vga_pci_disable_io(device_t dev, device_t child, int space) argument
567 return (pci_disable_io(dev, space));
/freebsd-12-stable/stand/libsa/
H A Dtftp.c146 u_char space[63]; /* +1 from t */ member in struct:__anon9265
152 if (len > sizeof(wbuf.space))
153 len = sizeof(wbuf.space);
297 u_char space[FNAME_SIZE + 6]; member in struct:__anon9267
/freebsd-12-stable/crypto/openssl/crypto/bio/
H A Dbss_bio.c74 * more than buffer space (size-len)
342 * bio_nwrite0: check how much space is available
398 ossl_ssize_t num, space; local
405 space = bio_nwrite0(bio, buf);
406 if (num > space)
407 num = space;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc166 bool allocate; // allocate space ("m")

Completed in 404 milliseconds

1234567891011>>