Searched refs:strsz (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/contrib/flex/src/
H A Dbuf.c172 size_t strsz;
175 strsz = strlen(fmt) + strlen(def) + strlen(val) + 2;
176 str = malloc(strsz);
180 snprintf(str, strsz, fmt, def, val);
194 size_t strsz;
196 strsz = strlen(fmt) + strlen(def) + 2;
197 str = malloc(strsz);
201 snprintf(str, strsz, fmt, def);
171 size_t strsz; local
193 size_t strsz; local
H A Dmain.c470 size_t strsz;
472 strsz = strlen(fmt) + strlen(scname[i]) + NUMCHARLINES + 2;
473 str = malloc(strsz);
476 snprintf(str, strsz, fmt, scname[i], i - 1);
469 size_t strsz; local
/freebsd-current/usr.bin/fetch/
H A Dfetch.c204 stat_seconds(char *str, size_t strsz, long seconds) argument
208 snprintf(str, strsz, "%02ldd%02ldh",
211 snprintf(str, strsz, "%02ldh%02ldm",
214 snprintf(str, strsz, "%02ldm%02lds",
217 snprintf(str, strsz, " %02lds",
225 stat_eta(char *str, size_t strsz, const struct xferstat *xs) argument
235 stat_seconds(str, strsz, eta);
237 stat_seconds(str, strsz, elapsed);
245 stat_bytes(char *str, size_t strsz, off_t bytes) argument
253 snprintf(str, strsz, "
260 stat_bps(char *str, size_t strsz, struct xferstat *xs) argument
[all...]
/freebsd-current/sys/ddb/
H A Ddb_main.c194 Elf_Size strsz; local
201 strsz = *(Elf_Size*)kstrtab;
204 if (kstrtab + strsz > ksym_end) {
/freebsd-current/sys/dev/ksyms/
H A Dksyms.c192 size_t len, numsyms, strsz, symsz; local
203 strsz = LINKER_STRTAB_GET(lf, &strtab);
251 if (strsz > to->to_resid)
253 to->to_resid -= strsz;
254 error = ksyms_emit(sc, strtab, to->to_stroff, strsz);
255 to->to_stroff += strsz;
256 to->to_stridx += strsz;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi.cpp226 uptr strtab = 0, symtab = 0, strsz = 0;
233 strsz = p->d_un.d_ptr;
249 if (strtab >= beg && strtab + strsz < end && symtab >= beg &&
266 if (p->st_name >= strsz) break;
/freebsd-current/crypto/openssl/crypto/evp/
H A Devp_fetch.c499 size_t strsz; local
512 strsz = ossl_property_list_to_string(libctx, def_prop, NULL, 0);
513 if (strsz > 0)
514 propstr = OPENSSL_malloc(strsz);
520 strsz) == 0) {
/freebsd-current/stand/common/
H A Dload_elf.c64 size_t strsz; member in struct:elf_file
871 ef->strsz = 0;
885 ef->strsz = dp[i].d_un.d_val;
910 ef->strtab == NULL || ef->strsz == 0)
/freebsd-current/sys/kern/
H A Dlink_elf.c91 int strsz; /* DT_STRSZ */ member in struct:elf_file
609 ef->strsz = dp->d_un.d_val;
670 ef->ddbstrcnt = ef->strsz;
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c1085 size_t strsz; local
1092 strsz = 1 + dtrace_strlen((char *)(uintptr_t)addr,
1094 if (strsz <= *remain) {
3247 size_t strsz; local
3262 strsz = dtrace_strlen((char *)addr, size) + 1;
3264 if (mstate->dtms_scratch_ptr + strsz >
3271 strsz);
3273 mstate->dtms_scratch_ptr += strsz;
3288 dtrace_dif_varstrz(uintptr_t addr, size_t strsz, dtrace_state_t *state, argument
3295 if (mstate->dtms_scratch_ptr + strsz >
[all...]

Completed in 236 milliseconds