Searched refs:size (Results 226 - 250 of 6289) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/xz/src/liblzma/simple/
H A Dsimple_private.h35 bool is_encoder, uint8_t *buffer, size_t size);
59 size_t size; member in struct:__anon478
70 bool is_encoder, uint8_t *buffer, size_t size),
/freebsd-10-stable/lib/libc/gen/
H A Dgetpagesize.c58 size_t size; local
70 size = sizeof value;
71 if (sysctl(mib, nitems(mib), &value, &size, NULL, 0) == -1)
H A Dfmtmsg.c38 /* Maximum valid size for a MSGVERB. */
100 strlcat(output, ": ", size)
103 strlcat(output, "\n", size)
106 strlcat(output, " ", size)
116 size_t size; local
120 size = 32;
122 size += strlen(label);
124 size += strlen(sevname);
126 size += strlen(text);
128 size
[all...]
/freebsd-10-stable/tools/tools/bus_autoconf/
H A Dbus_usb.c159 const char *module, const uint8_t *ptr, uint16_t size)
175 if (format_get_field(type, "mfl_vendor", ptr, size))
177 if (format_get_field(type, "mfl_product", ptr, size))
179 if (format_get_field(type, "mfl_dev_lo", ptr, size))
181 if (format_get_field(type, "mfl_dev_hi", ptr, size))
183 if (format_get_field(type, "mfl_dev_class", ptr, size))
185 if (format_get_field(type, "mfl_dev_subclass", ptr, size))
187 if (format_get_field(type, "mfl_dev_protocol", ptr, size))
189 if (format_get_field(type, "mfl_int_class", ptr, size))
191 if (format_get_field(type, "mfl_int_subclass", ptr, size))
158 usb_import_entry(struct usb_device_id *id, const char *type, const char *module, const uint8_t *ptr, uint16_t size) argument
[all...]
/freebsd-10-stable/lib/libc/inet/
H A Dinet_net_ntop.c45 size_t size);
47 size_t size);
51 * inet_net_ntop(af, src, bits, dst, size)
60 inet_net_ntop(af, src, bits, dst, size)
65 size_t size;
69 return (inet_net_ntop_ipv4(src, bits, dst, size));
71 return (inet_net_ntop_ipv6(src, bits, dst, size));
80 * inet_net_ntop_ipv4(src, bits, dst, size)
92 inet_net_ntop_ipv4(src, bits, dst, size)
96 size_t size;
171 inet_net_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/freebsd-10-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Darena.c53 size_t size; /* Current size in bytes. */ member in struct:_heap_info
180 fprintf(stderr, "Heap %p, size %10lx:\n", heap, (long)heap->size);
186 fprintf(stderr, "chunk %p size %10lx", p, (long)p->size);
190 } else if(p->size == (0|PREV_INUSE)) {
203 static mstate cvmx_new_arena(void *addr, size_t size) argument
211 debug_printf("cvmx_new_arena called, addr: %p, size %ld\n", addr, size);
243 cvmx_add_arena(cvmx_arena_list_t *arena_list, void *ptr, size_t size) argument
[all...]
/freebsd-10-stable/contrib/libarchive/libarchive/test/
H A Dread_open_memory.c57 size_t size, size_t read_size, int fullapi);
61 read_open_memory(struct archive *a, const void *buff, size_t size, size_t read_size) argument
63 return read_open_memory_internal(a, buff, size, read_size, 2);
71 read_open_memory_minimal(struct archive *a, const void *buff, size_t size, size_t read_size) argument
73 return read_open_memory_internal(a, buff, size, read_size, 1);
80 read_open_memory_seek(struct archive *a, const void *buff, size_t size, size_t read_size) argument
82 return read_open_memory_internal(a, buff, size, read_size, 3);
87 size_t size, size_t read_size, int level)
107 mine->end = mine->start + size;
142 ssize_t size; local
86 read_open_memory_internal(struct archive *a, const void *buff, size_t size, size_t read_size, int level) argument
[all...]
H A Dtest_read_disk_directory_traversals.c89 size_t size; local
124 archive_read_data_block(a, &p, &size, &offset));
125 assertEqualInt((int)size, 10);
129 archive_read_data_block(a, &p, &size, &offset));
130 assertEqualInt((int)size, 0);
138 archive_read_data_block(a, &p, &size, &offset));
139 assertEqualInt((int)size, 11);
143 archive_read_data_block(a, &p, &size, &offset));
144 assertEqualInt((int)size, 0);
156 archive_read_data_block(a, &p, &size,
581 size_t size; local
738 size_t size; local
968 size_t size; local
1047 size_t size; local
1332 size_t size; local
1463 size_t size; local
1599 size_t size; local
[all...]
/freebsd-10-stable/crypto/heimdal/lib/krb5/
H A Dstore_emem.c39 size_t size; member in struct:emem_storage
45 emem_fetch(krb5_storage *sp, void *data, size_t size) argument
48 if((size_t)(s->base + s->len - s->ptr) < size)
49 size = s->base + s->len - s->ptr;
50 memmove(data, s->ptr, size);
51 sp->seek(sp, size, SEEK_CUR);
52 return size;
56 emem_store(krb5_storage *sp, const void *data, size_t size) argument
59 if(size > (size_t)(s->base + s->size
[all...]
/freebsd-10-stable/lib/libc/db/btree/
H A Dbt_utils.c82 &key->size, &rkey->data, &rkey->size))
86 if (bl->ksize > rkey->size) {
91 rkey->size = bl->ksize;
94 key->size = bl->ksize;
97 key->size = bl->ksize;
107 &data->size, &rdata->data, &rdata->size))
112 if (bl->dsize + 1 > rdata->size) {
117 rdata->size
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
H A Dtcpwdist.d6 * This measures the size of writes from applications to the TCP level, which
7 * may well be much larger than the MTU size (this is application writes not
9 * traffic, and the size of the writes by that application. It uses a simple
28 * value TCP write payload size in bytes
70 this->size = msgdsize(args[1]);
73 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Net/
H A Dtcpwdist.d6 * This measures the size of writes from applications to the TCP level, which
7 * may well be much larger than the MTU size (this is application writes not
9 * traffic, and the size of the writes by that application. It uses a simple
28 * value TCP write payload size in bytes
70 this->size = msgdsize(args[1]);
73 @Size[pid, curpsinfo->pr_psargs] = quantize(this->size);
/freebsd-10-stable/contrib/groff/src/roff/troff/
H A Ddictionary.cpp26 // is `p' a good size for a hash table
41 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5)
52 for (i = int(s.hash() % size);
54 i == 0 ? i = size - 1: --i)
69 if ((double)used/(double)size >= threshold || used + 1 >= size) {
70 int old_size = size;
71 size = int(size*factor);
72 while (!is_good_size(size))
[all...]
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
H A Dinfo_fn_imps.hpp58 size() const function in class:PB_DS_CLASS_C_DEC
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dinfo_fn_imps.hpp58 size() const function in class:PB_DS_CLASS_C_DEC
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dinfo_fn_imps.hpp51 size() const function in class:PB_DS_CLASS_C_DEC
64 { return (size() == 0); }
79 if (size() != other.size())
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/hash_fn/
H A Dmask_based_range_hashing.hpp68 notify_resized(size_type size);
92 notify_resized(size_type size) argument
95 while (size ^ s_highest_bit_1)
97 size <<= 1;
H A Dsample_range_hashing.hpp73 // Notifies the policy object that the container's __size has changed to size.
75 notify_resized(size_type size);
H A Dsample_ranged_hash_fn.hpp73 // Notifies the policy object that the container's __size has changed to size.
75 notify_resized(size_type size);
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dinfo_fn_imps.hpp58 size() const function in class:PB_DS_CLASS_C_DEC
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dinfo_fn_imps.hpp56 size() const function in class:PB_DS_CLASS_C_DEC
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/
H A Dhash_exponential_size_policy_imp.hpp44 * Contains a resize size policy implementation.
66 get_nearest_larger_size(size_type size) const
69 while (ret <= size)
82 get_nearest_smaller_size(size_type size) const
90 if (next_ret >= size)
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DUniqueVector.h44 Val = static_cast<unsigned>(Vector.size()) + 1;
67 assert(ID-1 < size() && "ID is 0 or out of range!");
71 /// size - Returns the number of entries in the vector.
73 size_t size() const { return Vector.size(); } function in class:llvm::UniqueVector
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DDelayedDiagnostic.cpp35 if (Msg.size()) {
36 MessageData = new char [Msg.size()];
37 memcpy(MessageData, Msg.data(), Msg.size());
41 DD.DeprecationData.MessageLen = Msg.size();
/freebsd-10-stable/contrib/pjdfstest/tests/ftruncate/
H A D12.t4 desc="truncate returns EFBIG or EINVAL if the length argument was greater than the maximum file size"
17 expect 0 stat ${n0} size
20 expect 999999999999999 stat ${n0} size

Completed in 318 milliseconds

1234567891011>>