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

/haiku-fatelf/src/bin/coreutils/lib/
H A Dxvasprintf.c37 size_t totalsize; local
42 totalsize = 0;
47 totalsize = xsum (totalsize, strlen (next));
51 /* Test for overflow in the summing pass above or in (totalsize + 1) below.
54 if (totalsize == SIZE_MAX || totalsize > INT_MAX)
61 result = XNMALLOC (totalsize + 1, char);
/haiku-fatelf/src/add-ons/kernel/drivers/disk/norflash/
H A Dnorflash.cpp39 size_t totalsize; member in struct:nor_driver_info
57 info->totalsize = info->blocksize * 256;
59 info->id = map_physical_memory("NORFlash", NORFLASH_ADDR, info->totalsize, B_ANY_KERNEL_ADDRESS, B_READ_AREA, &info->mapped);
116 deviceGeometry->sectors_per_track = info->totalsize / info->blocksize;
142 if (position + *numbytes > info->totalsize)
143 *numbytes = info->totalsize - (position + *numbytes);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dfloatformat.c125 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
127 int_bit = get_field (ufrom, fmt->byteorder, fmt->totalsize,
290 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
307 if (get_field (ufrom, fmt->byteorder, fmt->totalsize,
324 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
360 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
380 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
461 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT);
466 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
479 put_field (uto, fmt->byteorder, fmt->totalsize, fm
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddoublest.c146 longswaps = fmt->totalsize / FLOATFORMAT_CHAR_BIT;
151 newfrom = (unsigned char *) xmalloc (fmt->totalsize);
171 exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize,
210 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
220 if (get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1))
353 memset (uto, 0, (fmt->totalsize + FLOATFORMAT_CHAR_BIT - 1)
360 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->exp_start,
363 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->man_start,
371 put_field (uto, fmt->byteorder, fmt->totalsize, fmt->sign_start, 1, 1);
378 put_field (uto, fmt->byteorder, fmt->totalsize, fm
[all...]
H A Dgdbtypes.c3579 init_type (TYPE_CODE_FLT, floatformat_ieee_single_big.totalsize / 8,
3583 init_type (TYPE_CODE_FLT, floatformat_ieee_single_little.totalsize / 8,
3587 = build_flt (floatformat_ieee_single_big.totalsize,
3591 = build_flt (floatformat_ieee_single_little.totalsize,
3595 init_type (TYPE_CODE_FLT, floatformat_ieee_double_big.totalsize / 8,
3599 init_type (TYPE_CODE_FLT, floatformat_ieee_double_little.totalsize / 8,
3603 = build_flt (floatformat_ieee_double_big.totalsize,
3607 = build_flt (floatformat_ieee_double_little.totalsize,
3611 init_type (TYPE_CODE_FLT, floatformat_ieee_double_littlebyte_bigword.totalsize / 8,
3615 init_type (TYPE_CODE_FLT, floatformat_i387_ext.totalsize /
[all...]
/haiku-fatelf/headers/libs/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
/haiku-fatelf/src/bin/gdb/include/
H A Dfloatformat.h57 unsigned int totalsize; /* Total size of number in bits */ member in struct:floatformat
/haiku-fatelf/src/add-ons/translators/jpeg2000/libjasper/
H A Djpc_enc.c465 cp->totalsize = UINT_FAST32_MAX;
579 &cp->totalsize)) {
607 if (cp->totalsize != UINT_FAST32_MAX) {
608 cp->totalsize = (cp->totalsize > jp2overhead) ?
609 (cp->totalsize - jp2overhead) : 0;
716 if (cp->totalsize == UINT_FAST32_MAX && (!cp->tcp.intmode)) {
772 if (cp->totalsize != UINT_FAST32_MAX && cp->totalsize > cp->rawsize) {
773 fprintf(stderr, "warning: specified rate is unreasonably large (%lu > %lu)\n", (unsigned long) cp->totalsize, (unsigne
[all...]
H A Djpc_enc.h298 uint_fast32_t totalsize; member in struct:__anon2820

Completed in 94 milliseconds