Home
last modified time | relevance | path

Searched refs:addsize (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/binutils/dist/gold/
Dmerge.cc311 section_size_type addsize = std::max(entsize, addralign); in add_constant() local
312 if (this->len_ + addsize > this->alc_) in add_constant()
315 this->alc_ = 128 * addsize; in add_constant()
324 if (addsize > entsize) in add_constant()
325 memset(this->p_ + this->len_ + entsize, 0, addsize - entsize); in add_constant()
326 this->len_ += addsize; in add_constant()
/netbsd/src/sys/lib/libkern/
Dstrlist.c327 size_t const addsize = strlen(str) + 1; in strlist_append() local
328 size_t const newsize = slsize + addsize; in strlist_append()
339 memcpy(newbuf + slsize, str, addsize); in strlist_append()
/netbsd/src/external/mit/lua/dist/src/
Dlobject.c475 #define addsize(b,sz) ((b)->blen += (sz)) macro
486 addsize(buff, cast_int(slen)); in addstr2buff()
501 addsize(buff, len); in addnum2buff()
553 addsize(&buff, len); in luaO_pushvfstring()
/netbsd/src/sys/uvm/
Duvm_amap.c352 amap_extend(struct vm_map_entry *entry, vsize_t addsize, int flags) in amap_extend() argument
369 (uintptr_t)entry, addsize, flags, 0); in amap_extend()
380 AMAP_B2SLOT(slotadd, addsize); /* slots to add */ in amap_extend()