Searched refs:totalsize (Results 1 - 17 of 17) sorted by relevance

/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dfloatformat.c157 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
159 int_bit = get_field (ufrom, fmt->byteorder, fmt->totalsize,
314 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
331 if (get_field (ufrom, fmt->byteorder, fmt->totalsize,
355 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
391 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
411 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
477 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT);
482 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
495 put_field (uto, fmt->byteorder, fmt->totalsize, fm
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dfloatformat.c157 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
159 int_bit = get_field (ufrom, fmt->byteorder, fmt->totalsize,
314 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
331 if (get_field (ufrom, fmt->byteorder, fmt->totalsize,
355 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
391 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
411 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
477 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT);
482 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
495 put_field (uto, fmt->byteorder, fmt->totalsize, fm
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddoublest.c139 longswaps = fmt->totalsize / FLOATFORMAT_CHAR_BIT;
144 newfrom = (unsigned char *) xmalloc (fmt->totalsize);
164 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
203 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
213 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
346 memset (uto, 0, (fmt->totalsize + FLOATFORMAT_CHAR_BIT - 1)
353 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start,
356 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->man_start,
364 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
371 put_field (uto, fmt->byteorder, fmt->totalsize, fm
[all...]
H A Dgdbtypes.c3436 init_type (TYPE_CODE_FLT, floatformat_ieee_single_big.totalsize / 8,
3440 init_type (TYPE_CODE_FLT, floatformat_ieee_single_little.totalsize / 8,
3444 init_type (TYPE_CODE_FLT, floatformat_ieee_double_big.totalsize / 8,
3448 init_type (TYPE_CODE_FLT, floatformat_ieee_double_little.totalsize / 8,
3452 init_type (TYPE_CODE_FLT, floatformat_ieee_double_littlebyte_bigword.totalsize / 8,
3456 init_type (TYPE_CODE_FLT, floatformat_i387_ext.totalsize / 8,
3460 init_type (TYPE_CODE_FLT, floatformat_m68881_ext.totalsize / 8,
3464 init_type (TYPE_CODE_FLT, floatformat_i960_ext.totalsize / 8,
3468 init_type (TYPE_CODE_FLT, floatformat_m88110_ext.totalsize / 8,
3472 init_type (TYPE_CODE_FLT, floatformat_m88110_harris_ext.totalsize /
[all...]
/freebsd-9.3-release/contrib/dtc/
H A Dflattree.c353 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize);
391 * If the user asked for more space than is used, adjust the totalsize.
394 padlen = minsize - fdt32_to_cpu(fdt.totalsize);
398 fdt32_to_cpu(fdt.totalsize), minsize);
405 int tsize = fdt32_to_cpu(fdt.totalsize);
407 fdt.totalsize = cpu_to_fdt32(tsize);
478 fprintf(f, "\t/* totalsize */\n");
801 uint32_t magic, totalsize, version, size_dt, boot_cpuid_phys; local
832 rc = fread(&totalsize, sizeof(totalsize),
[all...]
H A Dftdump.c80 uint32_t totalsize = fdt32_to_cpu(bph->totalsize); local
92 printf("// totalsize:\t\t0x%x (%d)\n", totalsize, totalsize);
/freebsd-9.3-release/contrib/binutils/include/
H A Dfloatformat.h59 unsigned int totalsize; /* Total size of number in bits */ member in struct:floatformat
/freebsd-9.3-release/contrib/dtc/libfdt/
H A Dfdt.h8 uint32_t totalsize; /* total size of DT block */ member in struct:fdt_header
H A Dlibfdt.h146 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize))
163 __fdt_set_hdr(totalsize); variable
/freebsd-9.3-release/contrib/gcclibs/include/
H A Dfloatformat.h59 unsigned int totalsize; /* Total size of number in bits */ member in struct:floatformat
/freebsd-9.3-release/contrib/gdb/include/
H A Dfloatformat.h57 unsigned int totalsize; /* Total size of number in bits */ member in struct:floatformat
/freebsd-9.3-release/sys/contrib/libfdt/
H A Dfdt.h8 uint32_t totalsize; /* total size of DT block */ member in struct:fdt_header
H A Dlibfdt.h146 #define fdt_totalsize(fdt) (fdt_get_header(fdt, totalsize))
163 __fdt_set_hdr(totalsize); variable
/freebsd-9.3-release/libexec/bootpd/
H A Dhash.c84 register unsigned totalsize;
87 totalsize = sizeof(hash_tbl)
89 hashtblptr = (hash_tbl *) malloc(totalsize);
91 bzero((char *) hashtblptr, totalsize);
83 register unsigned totalsize; local
H A Dreadfile.c1630 unsigned addrcount, totalsize;
1648 totalsize = sizeof(struct in_addr_list)
1650 result = (struct in_addr_list *) smalloc(totalsize);
1615 unsigned addrcount, totalsize; local
/freebsd-9.3-release/usr.bin/truss/
H A Dsyscalls.c529 int diff, i, size, totalsize; local
532 totalsize = size = max ? (max + 1) : BLOCKSIZE;
533 buf = malloc(totalsize);
537 diff = totalsize - size;
550 if (totalsize < MAXSIZE - BLOCKSIZE && max == 0) {
551 totalsize += BLOCKSIZE;
552 buf = realloc(buf, totalsize);
555 buf[totalsize - 1] = '\0';
/freebsd-9.3-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex161 \texttt{0x04} & \emph{totalsize} \\\cline{2-2}
197 \multicolumn{1}{r}{\emph{totalsize}} \\

Completed in 293 milliseconds