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

1 2 3

  /onnv/onnv-gate/usr/src/cmd/sgs/tools/common/
leb128.c 203 uint_t fsize; local
220 fsize = wordsize;
224 fsize = 8;
228 fsize = 4;
232 fsize = 2;
249 for (cnt = 0; cnt < fsize;
261 for (cnt = 0; cnt < fsize;
265 result |= val << ((fsize - cnt - 1) * 8);
272 (fsize < sizeof (uint64_t))) {
276 bitshift = (sizeof (uint64_t) - fsize) * 8
    [all...]
  /onnv/onnv-gate/usr/src/cmd/msgfmt/
check_header.c 52 get_one_line(char **bufhead, char **mbuf, size_t *fsize)
63 if (*fsize == 0) {
69 while (((*fsize) != 0) && (*p++ != '\n')) {
70 (*fsize)--;
85 check_gnu(char *addr, size_t fsize)
94 size_t size = fsize;
314 (void) munmap(addr, fsize);
326 (void) munmap(addr, fsize);
msgfmt.c 207 size_t fsize, ln_size, ll; local
244 fsize = (size_t)statbuf.st_size;
245 if (fsize == 0) {
256 addr = mmap(NULL, fsize, PROT_READ, MAP_SHARED, fd, 0);
264 check_gnu(addr, fsize);
272 ln_size = _mbsntowcs(&linebufhead, &mbuf, &fsize);
1014 * **fsize - address of a size_t variable that contains
1023 * **fsize - *fsize will be set to the size of the unread
1027 _mbsntowcs(wchar_t **bufhead, char **mbuf, size_t *fsize)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cdrw/
write_audio.c 80 off_t fsize; local
93 (void) (h_ptr[i])->bstr_size(h_ptr[i], &fsize);
96 blks_req += 150 + fsize/2352; /* 2 sec gap per track */
97 if (fsize % 2352)
  /onnv/onnv-gate/usr/src/uts/common/sys/
bootstat.h 75 size_t fsize; member in struct:compinfo
  /onnv/onnv-gate/usr/src/ucbcmd/ls/
ls.c 53 off_t fsize; /* file size */ member in struct:afile
350 fp->fsize = stb.st_size;
357 fp->ftype = 'b'; fp->fsize = (off_t)stb.st_rdev; break;
359 fp->ftype = 'c'; fp->fsize = (off_t)stb.st_rdev; break;
361 fp->ftype = 's'; fp->fsize = 0LL; break;
363 fp->ftype = 'p'; fp->fsize = 0LL; break;
413 fp->fsize = stb.st_size;
685 char gname[32], uname[32], fsize[32], ftime[32]; local
688 /* type mode uname gname fsize ftime */
699 /* get fsize */
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/mp/
mp_region.c 61 size_t fsize, total; local
110 total += fsize = __db_shsizeof(bhp);
111 if (fsize >= len || total >= 3 * len)
168 total += fsize = __db_shsizeof(bhp);
169 if (fsize == len) {
186 if (fsize >= len || total >= 3 * len)
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/
RootDialog.java 115 Dimension fsize = frame.size(); local
118 p.x += (fsize.width - dsize.width)/2;
119 p.y += (fsize.height - dsize.height)/2;
  /onnv/onnv-gate/usr/src/cmd/fs.d/hsfs/fstyp/
iso_impl.h 88 int fsize; /* size of file in byte */ member in struct:ufname
116 int fsize; /* size of the data */ member in struct:dlist
  /onnv/onnv-gate/usr/src/cmd/fs.d/hsfs/labelit/
iso_impl.h 88 int fsize; /* size of file in byte */ member in struct:ufname
116 int fsize; /* size of the data */ member in struct:dlist
  /onnv/onnv-gate/usr/src/uts/common/io/hxge/
hpi_vmac.c 132 uint16_t fsize; local
141 fsize = 1;
143 fsize = max_frame_length;
145 cfg.bits.rx_max_frame_length = fsize;
  /onnv/onnv-gate/usr/src/uts/common/inet/sctp/
sctp_conn.c 292 size_t fsize; local
295 fsize = sizeof (in6_addr_t) * eager->sctp_nfaddrs;
298 flist = kmem_alloc(fsize, KM_NOSLEEP);
303 kmem_free(flist, fsize);
311 sctp_get_faddr_list(eager, flist, fsize);
628 size_t fsize; local
630 fsize = sizeof (in6_addr_t) * sctp->sctp_nfaddrs;
633 flist = kmem_alloc(fsize, KM_SLEEP);
636 sctp_get_faddr_list(sctp, flist, fsize);
sctp_hash.c 171 size_t fsize; local
186 fsize = sizeof (in6_addr_t) * sctp->sctp_nfaddrs;
189 flist = kmem_alloc(fsize, cansleep ? KM_SLEEP : KM_NOSLEEP);
195 kmem_free(flist, fsize);
201 sctp_get_faddr_list(sctp, flist, fsize);
218 kmem_free(flist, fsize);
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
spa_config.c 80 uint64_t fsize; local
97 if (kobj_get_filesize(file, &fsize) != 0)
100 buf = kmem_alloc(fsize, KM_SLEEP);
105 if (kobj_read_file(file, buf, fsize, 0) < 0)
111 if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
136 kmem_free(buf, fsize);
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
fastboot.c 104 #define FASTBOOT_PTE_LIST_SIZE(fsize) \
105 P2ROUNDUP((((fsize) >> PAGESHIFT) + 1) * sizeof (x86pte_t), PAGESIZE)
940 uint64_t fsize; local
957 if (kobj_get_filesize(file, &fsize) != 0) {
964 fsize_roundup = P2ROUNDUP_TYPED(fsize, PAGESIZE, size_t);
1012 dma_attr.dma_attr_sgllen = (fsize / PAGESIZE) +
1013 (((fsize % PAGESIZE) == 0) ? 0 : 1);
1015 if ((buf = contig_alloc(fsize, &dma_attr, PAGESIZE, 0))
1017 cmn_err(CE_NOTE, fastboot_enomem_msg, fsize, "64G");
1023 if (kobj_read_file(file, (char *)va, fsize, 0) < 0)
    [all...]
  /onnv/onnv-gate/usr/src/psm/promif/ieee1275/sun4/
prom_fio.c 223 prom_compinfo(ihandle_t fsih, int fd, int *iscmp, size_t *fsize, size_t *bsize)
244 *fsize = p1275_cell2uint(ci[8]); /* Res3: fsize */
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
arith.c 160 int fsize = str- (char*)(*ptr); local
164 if(fsize<=(sizeof(tp->fname)-2)) for(tp=shtab_math; *tp->fname; tp++)
168 if(tp->fname[1]==c && tp->fname[fsize+1]==0 && strncmp(&tp->fname[1],*ptr,fsize)==0)
  /onnv/onnv-gate/usr/src/cmd/fs.d/ufs/newfs/
newfs.c 114 static int fsize = 0; /* fragment size */ variable
262 fsize = number("fragsize", optarg, NR_NONE,
266 if (fsize < DEV_BSIZE)
301 /* xxx ought to test against fsize */
511 fsize = bsize;
514 if (fsize == 0)
515 fsize = DESFRAGSIZE;
518 if (!POWEROF2(fsize)) {
520 "newfs: fragment size must a power of 2, not %d\n"), fsize);
521 fsize = bsize/8
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbsm/common/
devalloc.c 77 int nlen, plen, slen, lineno, fsize; local
95 fsize = f_stat.st_size;
96 if ((fbuf = (char *)malloc(fsize)) == NULL) {
128 if (slen >= fsize) {
180 int fsize = 0; local
194 fsize = f_stat.st_size;
214 if ((*fbuf = malloc(fsize)) == NULL) {
219 if (read(fd, *fbuf, fsize) < fsize) {
240 fsize = f_stat.st_size
    [all...]
  /onnv/onnv-gate/usr/src/cmd/compress/
compress.c 146 static off_t fsize; /* file size of input file */ variable
710 fsize = (off_t)statbuf.st_size;
720 if (fsize < (1 << 12))
722 else if (fsize < (1 << 13))
724 else if (fsize < (1 << 14))
726 else if (fsize < (1 << 15))
728 else if (fsize < 47000)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/bnu/
cntrl.c 265 char fsize[NAMESIZE]; /* holds file size/checkpoint string */ local
358 (void) sprintf(fsize, "0x%lx", stbuf.st_size);
359 W_FSIZE = fsize; /* set file size in vector */
507 sprintf(fsize, "0x%lx", startp);
508 W_POINT = fsize; /* set start point in vector */
1030 *fsize = '\0';
1031 sscanf(&msg[2], "%*o %s", fsize);
1032 if (*fsize != '\0') {
1033 actualsize = strtol(fsize, (char **) 0, FLENRADIX);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mailx/
edit.c 220 size = fsize(otf);
send.c 429 if (fsize(mtf) == 0 && hp->h_subject == NOSTR) {
539 puthead(hp, fp, GMASK|GCLEN, fsize(mtf) - textpos);
629 puthead(hp, nfo, (GMASK & ~GBCC) | GCLEN, fsize(fi));
754 puthead(hp, fo, GMASK|GCLEN, fsize(fi) - textpos);
  /onnv/onnv-gate/usr/src/lib/libc/port/i18n/
gettext.h 100 size_t fsize; /* size of the GNU mo file */ member in struct:__anon3334
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/sys/
dsl_dir.h 121 uint64_t asize, uint64_t fsize, uint64_t usize, void **tr_cookiep,

Completed in 600 milliseconds

1 2 3