Searched refs:size (Results 51 - 75 of 7774) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dinfo_fn_imps.hpp51 size() const function in class:PB_DS_CLASS_C_DEC
64 { return (size() == 0); }
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dinfo_fn_imps.hpp50 size() const function in class:PB_DS_CLASS_C_DEC
66 { return size() == 0; }
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/
H A Dsample_size_policy.hpp44 * Contains a sample size resize-policy.
50 // A sample size policy.
70 // Given a __size size, returns a __size that is larger.
72 get_nearest_larger_size(size_type size) const;
74 // Given a __size size, returns a __size that is smaller.
76 get_nearest_smaller_size(size_type size) const;
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2loc.h41 unsigned long size; member in struct:dwarf2_locexpr_baton
57 unsigned long size; member in struct:dwarf2_loclist_baton
/freebsd-11-stable/sys/contrib/xz-embedded/linux/include/linux/decompress/
H A Dunxz.h14 int (*fill)(void *dest, unsigned int size),
15 int (*flush)(void *src, unsigned int size),
/freebsd-11-stable/sys/ddb/
H A Ddb_write_cmd.c52 int size; local
59 size = 1;
62 size = 2;
66 size = 4;
69 db_error("Unknown size\n");
74 old_value = db_get_value(addr, size, false);
77 db_put_value(addr, size, new_value);
78 addr += size;
87 db_prev = addr - size;
/freebsd-11-stable/lib/libc/stdlib/
H A Dheapsort.c54 * Swap two areas of size number of bytes. Although qsort(3) permits random
60 #define SWAP(a, b, count, size, tmp) { \
61 count = size; \
69 /* Copy one block of size size to another. */
70 #define COPY(a, b, count, size, tmp1, tmp2) { \
71 count = size; \
86 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \
89 child = base + child_i * size; \
90 if (child_i < nmemb && COMPAR(child, child + size) <
156 heapsort_b(void *vbase, size_t nmemb, size_t size, heapsort_block compar) argument
[all...]
H A Dreallocarray.c33 reallocarray(void *optr, size_t nmemb, size_t size) argument
36 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
37 nmemb > 0 && SIZE_MAX / nmemb < size) {
41 return (realloc(optr, size * nmemb));
H A Dreallocf.c33 reallocf(void *ptr, size_t size) argument
37 nptr = realloc(ptr, size);
42 * So, to avoid double free, call free() only when size != 0.
45 if (!nptr && ptr && size != 0)
/freebsd-11-stable/libexec/rtld-elf/sparc64/
H A Drtld_machdep.h57 #define round(size, align) \
58 (((size) + (align) - 1) & ~((align) - 1))
59 #define calculate_first_tls_offset(size, align) \
60 round(size, align)
61 #define calculate_tls_offset(prev_offset, prev_size, size, align) \
62 round((prev_offset) + (size), align)
63 #define calculate_tls_end(off, size) ((off) + (size))
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_poisoning.h19 uptr TagMemory(uptr p, uptr size, tag_t tag);
20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_reallocarray.c39 reallocarray(void *optr, size_t nmemb, size_t size) argument
41 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
42 nmemb > 0 && SIZE_MAX / nmemb < size) {
46 return realloc(optr, size * nmemb);
/freebsd-11-stable/contrib/gdb/gdb/regformats/
H A Dregdef.h31 by the size of a byte (to match the layout of each register in
37 /* The size (in bits) of the value of this register, as transmitted. */
38 int size; member in struct:reg
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dgetcwd.c28 char *getcwd(buf, size)
30 int size; /* POSIX says this should be size_t */
32 if (size <= 0) {
47 if (strlen(mybuf) + 1 > size) {
/freebsd-11-stable/sys/dev/digi/
H A Ddigi_mod.h35 size_t size; member in struct:digi_mod::__anon9758
/freebsd-11-stable/contrib/unbound/compat/
H A Dreallocarray.c34 reallocarray(void *optr, size_t nmemb, size_t size) argument
36 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
37 nmemb > 0 && SIZE_MAX / nmemb < size) {
41 return realloc(optr, size * nmemb);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dreallocarray.c37 reallocarray(void *optr, size_t nmemb, size_t size) argument
39 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
40 nmemb > 0 && SIZE_MAX / nmemb < size) {
44 return realloc(optr, size * nmemb);
/freebsd-11-stable/sys/opencrypto/
H A Dxform_userland.h34 #define KMALLOC(size, type, flags) malloc(size, type, flags)
43 #define KMALLOC(size, type, flags) malloc(size)
/freebsd-11-stable/contrib/netbsd-tests/include/sys/
H A Dt_types.c51 ssize_t size; local
60 size = SSIZE_MAX;
61 ATF_REQUIRE(size > 0);
63 size = size + 1;
64 ATF_REQUIRE(size < 0);
87 ssize_t size; local
99 size = 0;
105 ATF_CHECK((size - 1) <= 0);
119 size_t size; local
[all...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dbinprint.c14 void binprint(ptr, size)
16 size_t size;
21 for (i = size, j = 0, s = (u_char *)ptr; i; i--, s++) {
/freebsd-11-stable/contrib/ldns/compat/
H A Dcalloc.c15 calloc(size_t num, size_t size) argument
17 void *new = malloc(num * size);
21 bzero(new, num * size);
/freebsd-11-stable/cddl/compat/opensolaris/misc/
H A Dzone.c38 size_t size; local
42 size = sizeof(jailid);
43 if (sysctlbyname("security.jail.jailed", &jailid, &size, NULL, 0) == -1)
/freebsd-11-stable/contrib/gcc/config/
H A Dhost-hpux.c56 hpux_gt_pch_get_address (size_t size, int fd) argument
60 addr = mmap ((void *)TRY_EMPTY_VM_SPACE, size, PROT_READ | PROT_WRITE,
67 munmap (addr, size);
88 hpux_gt_pch_use_address (void *base, size_t size, int fd, size_t offset) argument
92 /* We're called with size == 0 if we're not planning to load a PCH
95 if (size == 0)
99 addr = mmap (base, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, offset);
105 munmap (addr, size);
108 addr = mmap (base, size, PROT_READ | PROT_WRITE,
114 munmap (addr, size);
[all...]
/freebsd-11-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_muram_ext.h83 @Param[in] size - Size of the FM-MURAM partition.
87 t_Handle FM_MURAM_ConfigAndInit(uintptr_t baseAddress, uint32_t size);
119 @Param[in] size - size of the memory to be allocated.
124 void * FM_MURAM_AllocMem(t_Handle h_FmMuram, uint32_t size, uint32_t align);
134 @Param[in] size - size of the memory to be allocated.
138 void * FM_MURAM_AllocMemForce(t_Handle h_FmMuram, uint64_t base, uint32_t size);
/freebsd-11-stable/crypto/openssh/
H A Dxmalloc.c40 xmalloc(size_t size) argument
44 if (size == 0)
45 fatal("xmalloc: zero size");
46 ptr = malloc(size);
48 fatal("xmalloc: out of memory (allocating %zu bytes)", size);
53 xcalloc(size_t nmemb, size_t size) argument
57 if (size == 0 || nmemb == 0)
58 fatal("xcalloc: zero size");
59 if (SIZE_MAX / nmemb < size)
60 fatal("xcalloc: nmemb * size > SIZE_MA
69 xreallocarray(void *ptr, size_t nmemb, size_t size) argument
[all...]

Completed in 313 milliseconds

1234567891011>>