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

123

/freebsd-10.0-release/contrib/libstdc++/include/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),
/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_mad_pool.c82 IN const uint32_t total_size,
89 CL_ASSERT(total_size);
98 osm_madw_init(p_madw, h_bind, total_size, p_mad_addr);
103 p_mad = osm_vendor_get(h_bind, total_size, &p_madw->vend_wrap);
125 IN const uint32_t total_size,
132 CL_ASSERT(total_size);
146 osm_madw_init(p_madw, h_bind, total_size, p_mad_addr);
80 osm_mad_pool_get(IN osm_mad_pool_t * const p_pool, IN osm_bind_handle_t h_bind, IN const uint32_t total_size, IN const osm_mad_addr_t * const p_mad_addr) argument
123 osm_mad_pool_get_wrapper(IN osm_mad_pool_t * const p_pool, IN osm_bind_handle_t h_bind, IN const uint32_t total_size, IN const ib_mad_t * const p_mad, IN const osm_mad_addr_t * const p_mad_addr) argument
/freebsd-10.0-release/usr.sbin/cpucontrol/
H A Dvia.h51 uint32_t total_size; member in struct:via_fw_header
H A Dintel.h51 uint32_t total_size; member in struct:intel_fw_header
H A Dintel.c94 size_t data_size, total_size; local
183 if (fw_header->total_size == 0)
184 total_size = data_size + sizeof(*fw_header);
186 total_size = fw_header->total_size;
187 if (total_size > (unsigned)st.st_size || st.st_size < 0) {
207 ext_size = total_size - payload_size;
220 if (ext_table_size + payload_size > total_size) {
H A Dvia.c89 size_t data_size, total_size; local
170 total_size = fw_header->total_size;
171 if (total_size > (unsigned)st.st_size || st.st_size < 0) {
/freebsd-10.0-release/sys/contrib/ia64/libuwx/src/
H A Duwx_env.c71 int uwx_init_env(struct uwx_env *env, size_t total_size) argument
80 if (sizeof(struct uwx_env) + sizeof(struct uwx_str_pool) > total_size)
82 total_size -= sizeof(struct uwx_env) + sizeof(struct uwx_str_pool);
130 for (i = 0; total_size >= sizeof(struct uwx_scoreboard); i++) {
132 total_size -= sizeof(struct uwx_scoreboard);
149 size_t total_size; local
151 total_size = sizeof(struct uwx_env) +
156 env = (struct uwx_env *) malloc(total_size);
158 env = (struct uwx_env *) (*uwx_allocate_cb)(total_size);
160 uwx_init_env(env, total_size);
[all...]
H A Duwx_env.h111 extern int uwx_init_env(struct uwx_env *env, size_t total_size);
/freebsd-10.0-release/contrib/ofed/management/opensm/include/opensm/
H A Dosm_mad_pool.h196 IN const uint32_t total_size,
207 * total_size
271 IN const uint32_t total_size,
284 * total_size
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dbcache.c80 long total_size; /* total number of bytes cached, including dups */ member in struct:bcache
214 bcache->total_size += length;
397 printf_filtered (" Total object size: %ld\n", c->total_size);
400 print_percentage (c->total_size - c->unique_size, c->total_size);
417 print_percentage (c->total_size - c->structure_size, c->total_size);
/freebsd-10.0-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_profile.c78 s64 total_size = 0; local
148 profile[i].start = mem_base + total_size;
149 total_size += profile[i].size;
151 if (total_size > mem_avail) {
154 (unsigned long long) total_size,
170 (int) (total_size >> 10));
173 (int) (total_size >> 10), (int) (mem_avail >> 10),
174 (int) ((mem_avail - total_size) >> 10));
284 return total_size;
/freebsd-10.0-release/sys/ofed/drivers/net/mlx4/
H A Dprofile.c83 u64 total_size = 0; local
143 profile[i].start = total_size;
144 total_size += profile[i].size;
147 if (total_size > dev_cap->max_icm_sz) {
150 (unsigned long long) total_size,
165 (int) (total_size >> 10));
247 return total_size;
/freebsd-10.0-release/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_mem.c173 u64 *total_size,
182 *total_size = 0;
189 *total_size += buffer_list[i].size;
201 if (*total_size > 0xFFFFFFFFULL)
234 (unsigned long long) mask, *shift, (unsigned long long) *total_size,
170 build_phys_page_list(struct ib_phys_buf *buffer_list, int num_phys_buf, u64 *iova_start, u64 *total_size, int *npages, int *shift, __be64 **page_list) argument
/freebsd-10.0-release/sys/ofed/include/rdma/
H A Dib_umem.h94 unsigned long total_size,
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read.c401 a->client.dataset[iindex].total_size = -1;
431 a->client.dataset[i].total_size = -1;
435 a->client.dataset[iindex].total_size = -1;
1536 client->dataset[cursor].total_size < 0 ||
1538 client->dataset[cursor].total_size - 1 > offset ||
1542 client->dataset[cursor].total_size;
1551 client->dataset[cursor].total_size = r;
1553 client->dataset[cursor].total_size - 1 > offset ||
1557 client->dataset[cursor].total_size;
1563 else if (offset > client->dataset[cursor].total_size
[all...]
H A Darchive_read_support_format_mtree.c1804 ssize_t total_size = 0; local
1825 if (total_size + bytes_read + 1 > limit) {
1832 total_size + bytes_read + 1) == NULL) {
1837 memcpy(mtree->line.s + total_size, t, bytes_read);
1839 total_size += bytes_read;
1841 mtree->line.s[total_size] = '\0';
1846 return total_size;
1852 return total_size;
1862 total_size - (u - mtree->line.s) + 1);
1863 --total_size;
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/include/private/
H A Dsvn_cache.h166 apr_uint64_t total_size;
264 * up to @a total_size bytes of data, using @a directory_size bytes
268 * the @a total_size should be allocated to the @a directory_size,
278 * If the number is 0, a default will be derived from @a total_size.
295 apr_size_t total_size,
165 apr_uint64_t total_size; member in struct:svn_cache__info_t
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dcache-membuffer.c1133 apr_size_t total_size,
1151 if (total_size > MAX_SEGMENT_SIZE * MAX_SEGMENT_COUNT)
1152 total_size = MAX_SEGMENT_SIZE * MAX_SEGMENT_COUNT;
1159 if (segment_count * MIN_SEGMENT_SIZE > total_size)
1160 segment_count = total_size / MIN_SEGMENT_SIZE;
1186 < total_size)
1196 while ( total_size / segment_count > MAX_SEGMENT_SIZE
1205 total_size /= segment_count;
1210 if (total_size < 2 * sizeof(entry_group_t))
1211 total_size
1132 svn_cache__membuffer_cache_create(svn_membuffer_t **cache, apr_size_t total_size, apr_size_t directory_size, apr_size_t segment_count, svn_boolean_t thread_safe, svn_boolean_t allow_blocking_writes, apr_pool_t *pool) argument
[all...]
/freebsd-10.0-release/sys/dev/cxgbe/iw_cxgbe/
H A Dmem.c308 u64 *total_size, int *npages,
315 *total_size = 0;
322 *total_size += buffer_list[i].size;
334 if (*total_size > 0xFFFFFFFFULL)
368 (unsigned long long)*total_size, *npages);
384 u64 total_size; local
414 &total_size, &npages,
432 mhp->attr.len = (u32) total_size;
445 u64 total_size; local
475 &total_size,
306 build_phys_page_list(struct ib_phys_buf *buffer_list, int num_phys_buf, u64 *iova_start, u64 *total_size, int *npages, int *shift, __be64 **page_list) argument
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dindex.c155 lzma_vli total_size; member in struct:lzma_index_s
386 i->total_size = 0;
521 return i->total_size;
529 return LZMA_STREAM_HEADER_SIZE + i->total_size
710 i->total_size += vli_ceil4(unpadded_size);
848 dest->total_size += src->total_size;
931 dest->total_size = src->total_size;
1059 iter->block.total_size
[all...]
/freebsd-10.0-release/contrib/openbsm/libauditd/
H A Dauditd_lib.c411 size_t expire_size, total_size = 0L; local
469 total_size += stbuf.st_size;
555 if ((expire_size && total_size > expire_size) &&
561 total_size -= at->at_size;
564 if ((expire_size && total_size > expire_size) ||
570 total_size -= at->at_size;
/freebsd-10.0-release/usr.bin/unzip/
H A Dunzip.c869 uintmax_t total_size, file_count, error_count; local
889 total_size = 0;
911 total_size += archive_entry_size(e);
919 total_size, file_count, file_count != 1 ? "s" : "");
923 total_size, total_size, file_count,
/freebsd-10.0-release/contrib/libyaml/tests/
H A Drun-dumper.c167 size_t total_size = 0; local
178 total_size += data_size;
182 printf("#### (length: %d)\n", total_size);
H A Drun-emitter.c193 size_t total_size = 0; local
204 total_size += data_size;
208 printf("#### (length: %d)\n", total_size);
/freebsd-10.0-release/contrib/diff/src/
H A Dutil.c99 size_t total_size = offsetof (struct msg, args);
109 total_size += size[i] = strlen (arg[i]) + 1;
111 new = xmalloc (total_size);
97 size_t total_size = offsetof (struct msg, args); local

Completed in 361 milliseconds

123