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

123

/macosx-10.10.1/CPANInternal-159.1/Graph-0.94/util/
H A Dsize.pl3 use Devel::Size qw(size total_size);
12 my $s0 = total_size($g0);
19 my $s = total_size($g0);
32 my $s = total_size($g1);
/macosx-10.10.1/CPANInternal-159.1/Graph-0.96/util/
H A Dsize.pl3 use Devel::Size qw(size total_size);
12 my $s0 = total_size($g0);
19 my $s = total_size($g0);
32 my $s = total_size($g1);
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_/
H A Dcond_dtor.hpp51 cond_dtor(value_vector a_vec, iterator& r_last_it, Size_Type total_size) argument
52 : m_a_vec(a_vec), m_r_last_it(r_last_it), m_max_size(total_size),
/macosx-10.10.1/curl-83.1.2/curl/tests/unit/
H A Dunit1308.c47 size_t total_size = 0; variable
70 rc = curl_formget(post, &total_size, print_httppost_callback);
74 fail_unless(total_size == 486, "curl_formget got wrong size back");
89 rc = curl_formget(post, &total_size, print_httppost_callback);
91 fail_unless(total_size == 847, "curl_formget got wrong size back");
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Ducode.h18 uint32_t total_size; member in struct:intel_ucupdate
H A Ducode.c97 size = update_header.total_size;
/macosx-10.10.1/dtrace-147/libdwarf/
H A Dpro_reloc_stream.c195 unsigned long total_size = 0; local
220 total_size = ct * len;
266 GET_CHUNK(dbg, sec_index, data, total_size, &err);
288 /* ASSERT: sum of len copied == total_size */
/macosx-10.10.1/BerkeleyDB-21/db/repmgr/
H A Drepmgr_stat.c235 size_t array_size, total_size; local
258 total_size = array_size;
263 total_size += strlen(site->net_addr.host) + 1;
266 if ((ret = __os_umalloc(env, total_size, &status)) != 0)
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dcrx-dis.c379 int inst_bit_size, total_size; local
436 total_size = a->size + 10; /* sizeof(rbase + ridx + scl2) = 10. */
437 p = makelongparameter (allWords, inst_bit_size - total_size,
438 inst_bit_size - (total_size - 4));
440 p = makelongparameter (allWords, inst_bit_size - (total_size - 4),
441 inst_bit_size - (total_size - 8));
443 p = makelongparameter (allWords, inst_bit_size - (total_size - 8),
444 inst_bit_size - (total_size - 10));
446 p = makelongparameter (allWords, inst_bit_size - (total_size - 10),
/macosx-10.10.1/rsync-45/rsync/
H A Dmain.c193 write_longint(f, stats.total_size);
211 stats.total_size = read_longint(f);
221 write_longint(batch_fd, stats.total_size);
237 human_num(stats.total_size));
266 human_num(stats.total_size),
267 (double)stats.total_size / (total_written+total_read));
H A Dreceiver.c137 char *fname, int fd, OFF_T total_size)
171 show_progress(offset, total_size);
179 show_progress(offset, total_size);
192 show_progress(offset, total_size);
262 end_progress(total_size);
136 receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r, char *fname, int fd, OFF_T total_size) argument
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_backtrace.rb44 total_size = caller(0).size
47 assert_equal(total_size - i, caller(i).size, "[ruby-dev:45673]")
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dkern_event.h109 @field total_size Total size of the kernel event message including the
123 using total_size - KEV_MSG_HEADER_SIZE.
126 u_int32_t total_size; /* Size of entire event msg */ member in struct:kern_event_msg
149 @field total_size Total size of the kernel event message including the
/macosx-10.10.1/ksh-23/ksh/src/lib/libsum/
H A Dsumlib.c33 uintmax_t total_size; \
129 z = (flags & SUM_TOTAL) ? x->total_size : x->size;
322 p->total_size += p->size;
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dmach_loader.c198 uint32_t total_size
205 uint32_t total_size,
214 uint32_t total_size,
1286 uint32_t total_size
1303 while (total_size > 0) {
1310 if (thread_size > total_size)
1312 total_size -= thread_size;
1332 uint32_t total_size,
1342 while (total_size > 0) {
1349 if (stack_size > total_size)
1329 load_threadstack( thread_t thread, uint32_t *ts, uint32_t total_size, mach_vm_offset_t *user_stack, int *customstack ) argument
1369 load_threadentry( thread_t thread, uint32_t *ts, uint32_t total_size, mach_vm_offset_t *entry_point ) argument
[all...]
H A Dposix_shm.c667 mach_vm_size_t total_size, alloc_size; local
704 total_size = vm_map_round_page(length,
709 alloc_size < total_size;
714 mosize = MIN(total_size - alloc_size, ANON_MAX_SIZE);
746 pinfo->pshm_length = total_size;
H A Dsysv_shm.c718 mach_vm_size_t total_size, size, alloc_size; local
727 total_size = mach_vm_round_page(uap->size);
728 if ((user_ssize_t)(shm_committed + btoc(total_size)) > shminfo.shmall)
754 alloc_size < total_size;
756 size = MIN(total_size - alloc_size, ANON_MAX_SIZE);
/macosx-10.10.1/configd-699.1.5/Plugins/KernelEventMonitor/
H A Deventmon.c235 ev_msg->total_size,
241 for (i = 0, j = KEV_MSG_HEADER_SIZE; j < ev_msg->total_size; i++, j+=4) {
286 int dataLen = (ev_msg->total_size - KEV_MSG_HEADER_SIZE);
598 if ((offset + ev_msg->total_size) > status) {
626 offset += ev_msg->total_size;
/macosx-10.10.1/libarchive-30/libarchive/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...]
/macosx-10.10.1/gnudiff-19/diffutils/src/
H A Dutil.c100 size_t total_size = offsetof (struct msg, args);
110 total_size += size[i] = strlen (arg[i]) + 1;
112 new = xmalloc (total_size);
98 size_t total_size = offsetof (struct msg, args); local
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngmem.c176 png_uint_32 total_size; local
196 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
198 table = farmalloc(total_size);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dauxprop.c90 size_t total_size = sizeof(struct proppool) + size - 1; local
91 ret = sasl_ALLOC(total_size);
94 memset(ret, 0, total_size);
167 unsigned total_size = 0; local
175 total_size += (unsigned) pool->size;
180 retval = prop_new(total_size);
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_xattr.c1377 u_int32_t total_size; /* file offset of end of attribute header + entries + data */ member in struct:attr_header
1957 datafreespace = header->total_size - (header->data_start + header->data_length);
1966 if (!splitdata && (header->total_size + growsize) > ATTR_MAX_HDR_SIZE) {
1967 growsize = ATTR_MAX_HDR_SIZE - header->total_size;
1991 header->total_size += growsize;
2893 attrhdr->total_size = filehdr->entries[1].offset;
2983 xah->total_size = SWAP32 (ATTR_BUF_SIZE - rsrcforksize);
3088 ah->total_size = SWAP32 (ah->total_size);
3129 ah->total_size
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/mp/
H A Dmp_resize.c479 roff_t reg_size, total_size; local
484 total_size = (roff_t)gbytes * GIGABYTE + bytes;
485 ncache = (u_int32_t)((total_size + reg_size / 2) / reg_size);
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dpex-win32.c556 int total_size = 1; /* 1 is for the final null. */ local
566 total_size += strlen (env[var]) + 1;
568 env_block = XNEWVEC (char, total_size);

Completed in 177 milliseconds

123