Searched refs:total_size (Results 1 - 25 of 102) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/sys/arch/ia64/stand/common/
H A Dcalloc.c11 u_int total_size = size1 * size2; local
14 if(( (ptr = alloc(total_size)) != NULL)) {
15 memset(ptr, 0, total_size);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/
H A Dtal-reent.c48 size_t total_size; local
52 total_size = size + HSIZ;
53 p = (*__gmp_allocate_func) (total_size);
54 P->size = total_size;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
H A Dcond_dtor.hpp45 cond_dtor(value_vector a_vec, iterator& r_last_it, Size_Type total_size) argument
46 : m_a_vec(a_vec), m_r_last_it(r_last_it), m_max_size(total_size),
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/pb_assoc/detail/ov_tree_map_/
H A Dcond_dtor.hpp48 cond_dtor(pointer a_vec, iterator& r_last_it, size_type total_size) : m_a_vec(a_vec), argument
50 m_max_size(total_size),
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/sparc64/
H A Ddivrem_1.c65 /* udivx is good for total_size==1, and no need to bother checking
78 mp_size_t size, xsize, total_size, adj; local
86 total_size = size + xsize;
104 total_size--;
118 total_size--;
119 if (total_size == 0)
169 mp_size_t size, xsize, total_size; local
177 total_size = total_size_limbs;
180 qp += total_size; /* above high limb */
193 total_size
[all...]
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/tests/
H A Dtest_index.c48 lzma_vli total_size = 0; local
57 total_size += (t + 3) & ~LZMA_VLI_C(3);
62 expect(lzma_index_total_size(i) == total_size);
119 || ra.block.total_size
120 != rb.block.total_size)
181 lzma_vli total_size = 0; local
190 total_size += r.block.total_size;
198 stream_offset += r.block.total_size;
202 expect(lzma_index_total_size(i) == total_size);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dbcache.c79 long total_size; /* total number of bytes cached, including dups */ member in struct:bcache
252 bcache->total_size += length;
447 printf_filtered (_(" Total object size: %ld\n"), c->total_size);
450 print_percentage (c->total_size - c->unique_size, c->total_size);
469 print_percentage (c->total_size - c->structure_size, c->total_size);
H A Dgcore.c515 bfd_size_type size, total_size = bfd_section_size (obfd, osec); local
528 size = min (total_size, MAX_COPY_BYTES);
532 while (total_size > 0)
534 if (size > total_size)
535 size = total_size;
553 total_size -= size;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dcrx-dis.c380 int inst_bit_size, total_size; local
437 total_size = a->size + 10; /* sizeof(rbase + ridx + scl2) = 10. */
438 p = makelongparameter (allWords, inst_bit_size - total_size,
439 inst_bit_size - (total_size - 4));
441 p = makelongparameter (allWords, inst_bit_size - (total_size - 4),
442 inst_bit_size - (total_size - 8));
444 p = makelongparameter (allWords, inst_bit_size - (total_size - 8),
445 inst_bit_size - (total_size - 10));
447 p = makelongparameter (allWords, inst_bit_size - (total_size - 10),
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dcrx-dis.c380 int inst_bit_size, total_size; local
437 total_size = a->size + 10; /* sizeof(rbase + ridx + scl2) = 10. */
438 p = makelongparameter (allWords, inst_bit_size - total_size,
439 inst_bit_size - (total_size - 4));
441 p = makelongparameter (allWords, inst_bit_size - (total_size - 4),
442 inst_bit_size - (total_size - 8));
444 p = makelongparameter (allWords, inst_bit_size - (total_size - 8),
445 inst_bit_size - (total_size - 10));
447 p = makelongparameter (allWords, inst_bit_size - (total_size - 10),
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/mt/
H A Dmt.c321 fprintf (stderr, "\ttotal_size = %d\n", info->total_size);
859 unsigned int total_size;
872 total_size = extra_size + pretend_size + args_size + var_size;
895 total_size += reg_size;
896 total_size = ((total_size + 3) & ~3);
898 frame_size = total_size;
906 current_frame_info.total_size = total_size;
911 return total_size;
858 unsigned int total_size; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/isc/
H A Dmemcluster.c250 size_t total_size; local
276 total_size = mem_target;
281 total_size = mem_target_fudge;
283 total_size = mem_target;
284 new = malloc(total_size);
291 frags = total_size / new_size;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dsun_map.c136 size_t total_size, first_half, second_half, sub_size; local
155 total_size = (first_half + sub_size + second_half + 1);
157 retval = (char*)xmalloc(total_size);
158 memset(retval, 0, total_size);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/lm32/
H A Dlm32.c56 HOST_WIDE_INT total_size; /* number of bytes of entire frame. */ member in struct:lm32_frame_info
355 if (current_frame_info.total_size > 0)
358 stack_adjust (-current_frame_info.total_size);
367 /* Load offset - Don't use total_size, as that includes pretend_size,
395 if (current_frame_info.total_size > 0)
405 stack_adjust (current_frame_info.total_size);
423 HOST_WIDE_INT total_size, locals_size, args_size, pretend_size, callee_size; local
455 total_size = pretend_size + args_size + locals_size + callee_size;
458 total_size = (total_size
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/audio/record/
H A Drecord.c59 static ssize_t total_size = -1; variable
289 total_size = 0;
342 total_size += bufsize;
450 else if (total_size != -1)
451 auh.data_size = htonl(total_size);
629 else if (total_size != -1)
630 datalen = total_size;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arc/
H A Darc.c985 unsigned int total_size; /* # bytes that the entire frame takes up. */
1081 unsigned int total_size, var_size, args_size, pretend_size, extra_size;
1091 total_size = extra_size + pretend_size + args_size + var_size;
1113 total_size += reg_size;
1118 if (total_size == extra_size
1120 total_size = extra_size = 0;
1122 total_size = ARC_STACK_ALIGN (total_size);
1125 current_frame_info.total_size = total_size;
974 unsigned int total_size; /* # bytes that the entire frame takes up. */ member in struct:arc_frame_info
1070 unsigned int total_size, var_size, args_size, pretend_size, extra_size; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arc/
H A Darc.c987 unsigned int total_size; /* # bytes that the entire frame takes up. */
1083 unsigned int total_size, var_size, args_size, pretend_size, extra_size;
1093 total_size = extra_size + pretend_size + args_size + var_size;
1115 total_size += reg_size;
1120 if (total_size == extra_size
1122 total_size = extra_size = 0;
1124 total_size = ARC_STACK_ALIGN (total_size);
1127 current_frame_info.total_size = total_size;
977 unsigned int total_size; /* # bytes that the entire frame takes up. */ member in struct:arc_frame_info
1073 unsigned int total_size, var_size, args_size, pretend_size, extra_size; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_format_mtree.c1236 ssize_t total_size = 0; local
1257 if (total_size + bytes_read + 1 > limit) {
1264 total_size + bytes_read + 1) == NULL) {
1269 memcpy(mtree->line.s + total_size, t, bytes_read);
1271 total_size += bytes_read;
1273 mtree->line.s[total_size] = '\0';
1278 return total_size;
1284 return total_size;
1294 total_size - (u - mtree->line.s) + 1);
1295 --total_size;
[all...]
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/common/
H A Dindex.c155 lzma_vli total_size; member in struct:lzma_index_s
386 i->total_size = 0;
518 return i->total_size;
526 return LZMA_STREAM_HEADER_SIZE + i->total_size
707 i->total_size += vli_ceil4(unpadded_size);
845 dest->total_size += src->total_size;
928 dest->total_size = src->total_size;
1056 iter->block.total_size
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/m32r/
H A Dm32r.c1396 unsigned int total_size; /* # bytes that the entire frame takes up. */
1439 unsigned int total_size, var_size, args_size, pretend_size, extra_size;
1451 total_size = extra_size + pretend_size + args_size + var_size;
1476 total_size += reg_size;
1479 handler will do the right thing if this changes total_size. */
1480 total_size = M32R_STACK_ALIGN (total_size);
1482 frame_size = total_size - (pretend_size + reg_size);
1485 current_frame_info.total_size = total_size;
1382 unsigned int total_size; /* # bytes that the entire frame takes up. */ member in struct:m32r_frame_info
1425 unsigned int total_size, var_size, args_size, pretend_size, extra_size; local
1665 int total_size; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/m32r/
H A Dm32r.c1244 unsigned int total_size; /* # bytes that the entire frame takes up. */
1287 unsigned int total_size, var_size, args_size, pretend_size, extra_size;
1299 total_size = extra_size + pretend_size + args_size + var_size;
1324 total_size += reg_size;
1327 handler will do the right thing if this changes total_size. */
1328 total_size = M32R_STACK_ALIGN (total_size);
1330 frame_size = total_size - (pretend_size + reg_size);
1333 current_frame_info.total_size = total_size;
1231 unsigned int total_size; /* # bytes that the entire frame takes up. */ member in struct:m32r_frame_info
1274 unsigned int total_size, var_size, args_size, pretend_size, extra_size; local
1492 int total_size; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/unzip/
H A Dunzip.c888 uintmax_t total_size, file_count, error_count; local
908 total_size = 0;
925 total_size += archive_entry_size(e);
932 total_size, y_str, file_count, file_count != 1 ? "s" : "");
936 total_size, total_size, y_str, file_count,
/netbsd-6-1-5-RELEASE/sys/arch/atari/dev/
H A Dgrfabs_tt.c323 u_long total_size, bm_size; local
340 total_size = bm_size + sizeof(bmap_t) + PAGE_SIZE;
342 if ((bm = (bmap_t*)alloc_stmem(total_size, &hw_address)) == NULL)
/netbsd-6-1-5-RELEASE/sys/dev/ebus/
H A Dcs4231_ebus.c152 int len, total_size; local
159 if (prom_getprop(ea->ea_node, "compatible", 1, &total_size, &compat) == 0) {
170 total_size -= len;
172 } while (total_size > 0);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dlto-section-out.c293 obs->total_size++;
321 obs->total_size += copy;
545 header.main_size = ob->main_stream->total_size;

Completed in 321 milliseconds

12345