Searched refs:reserve (Results 1 - 25 of 409) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/atf/atf-sh/
H A Datf-check.cpp468 res.reserve(s.length());
H A Datf-sh.cpp68 command->reserve(512);
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddlltool.c68 [STACKSIZE|HEAPSIZE] <number-reserve> [ , <number-commit> ]
69 Generates --stack|--heap <number-reserve>,<number-commit>
1013 def_heapsize (int reserve, int commit) argument
1017 sprintf (b, "-heap 0x%x,0x%x ", reserve, commit);
1019 sprintf (b, "-heap 0x%x ", reserve);
1024 def_stacksize (int reserve, int commit) argument
1028 sprintf (b, "-stack 0x%x,0x%x ", reserve, commit);
1030 sprintf (b, "-stack 0x%x ", reserve);
/freebsd-11-stable/contrib/binutils/ld/
H A Ddeffilep.y400 fprintf (file, " stack reserve: 0x%08x\n", def->stack_reserve);
404 fprintf (file, " heap reserve: 0x%08x\n", def->heap_reserve);
697 def_stacksize (int reserve, int commit)
699 def->stack_reserve = reserve;
704 def_heapsize (int reserve, int commit)
706 def->heap_reserve = reserve;
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex170 \emph{off\_rsvmap} & \emph{address0} & memory reserve \\
211 the \emph{memory reserve table}, the \emph{structure block} and the
216 The memory reserve map section gives a list of regions of memory that
441 gives address ranges to add to the output blob's memory reserve table,
/freebsd-11-stable/contrib/gcc/
H A Dvec.c48 calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact) argument
53 gcc_assert (reserve >= 0);
60 else if (!reserve)
66 gcc_assert (alloc - num < (unsigned) reserve);
70 alloc = num + reserve;
84 if (alloc < num + reserve)
85 alloc = num + reserve;
97 vec_gc_o_reserve_1 (void *vec, int reserve, size_t vec_offset, size_t elt_size, argument
101 unsigned alloc = alloc = calculate_allocation (pfx, reserve, exact);
120 vec_gc_p_reserve (void *vec, int reserve MEM_STAT_DEC
147 vec_gc_o_reserve(void *vec, int reserve, size_t vec_offset, size_t elt_size MEM_STAT_DECL) argument
159 vec_gc_o_reserve_exact(void *vec, int reserve, size_t vec_offset, size_t elt_size MEM_STAT_DECL) argument
169 vec_heap_o_reserve_1(void *vec, int reserve, size_t vec_offset, size_t elt_size, bool exact MEM_STAT_DECL) argument
211 vec_heap_o_reserve(void *vec, int reserve, size_t vec_offset, size_t elt_size MEM_STAT_DECL) argument
221 vec_heap_o_reserve_exact(void *vec, int reserve, size_t vec_offset, size_t elt_size MEM_STAT_DECL) argument
[all...]
H A Dvec.h64 be more efficient to use the reserve operation before adding the
67 increase if there are too few spare slots. If you want reserve a
192 VEC(T,A) *VEC_T_A_alloc(int reserve);
209 size_t VEC_T_embedded_size(int reserve);
210 void VEC_T_embedded_init(VEC(T) *v, int reserve);
227 int VEC_T_space (VEC(T) *v,int reserve)
239 int VEC_T_A_reserve(VEC(T,A) *&v, int reserve);
247 (VEC_OP(T,A,reserve)(&(V),R VEC_CHECK_INFO MEM_STAT_INFO))
250 int VEC_T_A_reserve_exact(VEC(T,A) *&v, int reserve);
738 static inline int VEC_OP (T,A,reserve) \
[all...]
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h660 * This function attempts to reserve enough memory for the
667 * required, the user can reserve the memory in %advance, and thus
672 reserve(size_type __res_arg = 0);
873 this->reserve(__len);
H A Dstl_bvector.h643 reserve(size_type __n) function in class:vector
646 __throw_length_error(__N("vector::reserve"));
H A Dstl_vector.h461 * This function attempts to reserve enough memory for the
468 * that will be required, the user can reserve the memory in
473 reserve(size_type __n);
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dhashtable.h581 _M_buckets.reserve(__n_buckets);
1104 _M_buckets.reserve(__ht._M_buckets.size());
H A Dvstring.h390 * This function attempts to reserve enough memory for the
397 * required, the user can reserve the memory in %advance, and thus
402 reserve(size_type __res_arg = 0) function in class:__versa_string
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_bitset.h1234 __tmp.reserve(_Nb);
/freebsd-11-stable/contrib/libstdc++/src/
H A Dlocale.cc130 __ret.reserve(128);
H A Dlocalename.cc97 __str.reserve(128);
/freebsd-11-stable/contrib/tcpdump/missing/
H A Dsnprintf.c66 int (*reserve)(struct state *, size_t); member in struct:state
576 state.reserve = as_reserve;
615 state.reserve = sn_reserve;
/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c212 // increases, we reserve more space when a large dictionary is
221 uint32_t reserve = lz_options->dict_size / 2; local
222 if (reserve > (UINT32_C(1) << 30))
223 reserve /= 2;
225 reserve += (lz_options->before_size + lz_options->match_len_max
229 mf->size = mf->keep_size_before + reserve + mf->keep_size_after;
/freebsd-11-stable/crypto/openssh/
H A Dbitmap.c80 reserve(struct bitmap *b, u_int n) function
104 if ((r = reserve(b, n)) != 0)
195 if ((r = reserve(b, l * 8)) != 0)
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_sa.h1013 int reserve);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Darc.h196 void arc_tempreserve_clear(uint64_t reserve);
197 int arc_tempreserve_space(spa_t *spa, uint64_t reserve, uint64_t txg);
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_bo_vm.c125 reserve:
130 goto reserve;
143 goto reserve;
H A Dttm_memory.c353 uint64_t amount, bool reserve)
373 if (reserve) {
351 ttm_mem_global_reserve(struct ttm_mem_global *glob, struct ttm_mem_zone *single_zone, uint64_t amount, bool reserve) argument
/freebsd-11-stable/sys/dev/fdt/
H A Dfdt_common.c592 pcell_t reserve[FDT_REG_CELLS * FDT_MEM_REGIONS]; local
599 max_size = sizeof(reserve);
619 if (res_len <= 0 || res_len > sizeof(reserve)) {
624 if (OF_getprop(root, "memreserve", reserve, res_len) <= 0) {
631 reservep = (pcell_t *)&reserve;
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dhim.h53 HPT_U16 reserve; member in struct:_PCI_ID
H A Dhptintf.h466 HPT_U8 reserve[64]; member in struct:_CONTROLLER_INFO_V2_EXT
537 HPT_U8 reserve[48]; member in struct:_CONTROLLER_INFO_V3
569 HPT_U32 reserve[55]; member in struct:_ENCLOSURE_INFO
758 HPT_U32 reserve; member in struct:_HPT_ARRAY_INFO_V3
761 HPT_U32 reserve; member in struct:_HPT_ARRAY_INFO_V3
1110 HPT_U8 reserve[1]; member in struct:_ALTERABLE_DEVICE_INFO_V2
1325 HPT_U8 reserve[3]; member in struct:_IDE_PASS_THROUGH_HEADER
1342 HPT_U8 reserve; member in struct:_IDE_PASS_THROUGH_HEADER_V2

Completed in 216 milliseconds

1234567891011>>