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

1234567891011>>

/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/contrib/xz/src/liblzma/common/
H A Dfilter_flags_encoder.c17 lzma_filter_flags_size(uint32_t *size, const lzma_filter *filter)
22 return_if_error(lzma_properties_size(size, filter));
24 *size += lzma_vli_size(filter->id) + lzma_vli_size(*size);
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/mech/
H A Dgss_encapsulate_token.c43 size_t size; local
45 ret = der_get_oid (oid->elements, oid->length, &ct.thisMech, &size);
56 &ct, &size, ret);
62 if (output_token->length != size)
/freebsd-10.0-release/crypto/openssl/crypto/ui/
H A Dui_util.c69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
74 if (size < 1)
80 ok = UI_add_input_string(ui,prompt,0,buf,0,size-1);
82 ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1,
/freebsd-10.0-release/gnu/usr.bin/binutils/
H A DMakefile5 size strings strip doc
/freebsd-10.0-release/lib/libc/gen/
H A Dgetpagesizes.c40 * Retrieves page size information from the system. Specifically, returns the
56 size_t size; local
66 size = sizeof(ps);
68 if (sysctlbyname("hw.pagesizes", ps, &size, NULL, 0)
73 nops = size / sizeof(ps[0]);
/freebsd-10.0-release/lib/libstand/
H A Dgets.c86 fgetstr(char *buf, int size, int fd) argument
91 size--; /* leave space for terminator */
93 while (size != 0) {
106 size--;
/freebsd-10.0-release/lib/libz/
H A Dzopen.c15 xgzread(void *cookie, char *data, int size) argument
17 return gzread(cookie, data, size);
21 xgzwrite(void *cookie, const char *data, int size) argument
23 return gzwrite(cookie, (void*)data, size);
/freebsd-10.0-release/sbin/hastd/
H A Dproto.h46 int proto_send(const struct proto_conn *conn, const void *data, size_t size);
47 int proto_recv(const struct proto_conn *conn, void *data, size_t size);
55 size_t size);
57 size_t size);
/freebsd-10.0-release/sbin/rcorder/
H A Dealloc.c99 erealloc(void *ptr, size_t size) argument
101 if ((ptr = realloc(ptr, size)) == NULL)
111 ecalloc(size_t nmemb, size_t size) argument
115 if ((ptr = calloc(nmemb, size)) == NULL)
/freebsd-10.0-release/sys/dev/dcons/
H A Ddcons_os.h44 size_t size; member in struct:dcons_global
/freebsd-10.0-release/sys/sparc64/sbus/
H A Dofw_sbus.h50 u_int32_t size; /* Size in bytes of this range */ member in struct:sbus_ranges
/freebsd-10.0-release/sys/sys/
H A Dslicer.h42 off_t size; member in struct:flash_slice
/freebsd-10.0-release/tools/regression/geom_nop/
H A Dtest-1.t16 size=`diskinfo /dev/md${us}.nop | awk '{print $3}'`
18 if [ $size -eq 1048576 ]; then
/freebsd-10.0-release/tools/regression/pjdfstest/tests/truncate/
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
/freebsd-10.0-release/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.h37 intmax_t size; member in struct:partedit_item

Completed in 327 milliseconds

1234567891011>>