Home
last modified time | relevance | path

Searched refs:pfx (Results 1 – 22 of 22) sorted by relevance

/openbsd/src/sys/netinet/
Dinet_nat64.c44 inet_nat64_mask(u_int32_t src, u_int32_t pfx, u_int8_t pfxlen) in inet_nat64_mask() argument
53 (pfx & htonl(0xffffffff << (32 - pfxlen))); in inet_nat64_mask()
60 const void *pfx, u_int8_t pfxlen) in inet_nat64() argument
64 return (inet_nat64_inet(src, dst, pfx, pfxlen)); in inet_nat64()
66 return (inet_nat64_inet6(src, dst, pfx, pfxlen)); in inet_nat64()
77 inet_nat64_inet(const void *src, void *dst, const void *pfx, u_int8_t pfxlen) in inet_nat64_inet() argument
80 const union inet_nat64_addr *p = pfx; in inet_nat64_inet()
118 inet_nat64_inet6(const void *src, void *dst, const void *pfx, u_int8_t pfxlen) in inet_nat64_inet6() argument
121 const union inet_nat64_addr *p = pfx; in inet_nat64_inet6()
166 const void *pfx, u_int8_t pfxlen) in inet_nat46() argument
[all …]
/openbsd/src/gnu/usr.bin/perl/Porting/
Dmanifest_lib.pl55 my $pfx;
57 $pfx = $1;
59 $pfx = "";
62 push @line_tuples, [$pfx, $file, $descr];
63 $pfx_len{$pfx} //= 40;
67 $pfx_len{$pfx} = $flen
68 if $pfx_len{$pfx} < $flen;
76 my ($pfx, $file, $descr) = @$tuple;
77 my $str = sprintf "%*s", -$pfx_len{$pfx}, $file;
/openbsd/src/gnu/gcc/gcc/
Dvec.c48 calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact) in calculate_allocation() argument
55 if (pfx) in calculate_allocation()
57 alloc = pfx->alloc; in calculate_allocation()
58 num = pfx->num; in calculate_allocation()
100 struct vec_prefix *pfx = vec; in vec_gc_o_reserve_1() local
101 unsigned alloc = alloc = calculate_allocation (pfx, reserve, exact); in vec_gc_o_reserve_1()
108 if (!pfx) in vec_gc_o_reserve_1()
172 struct vec_prefix *pfx = vec; in vec_heap_o_reserve_1() local
173 unsigned alloc = calculate_allocation (pfx, reserve, exact); in vec_heap_o_reserve_1()
180 if (!pfx) in vec_heap_o_reserve_1()
Dgengtype.c1406 static void finish_root_table (struct flist *flp, const char *pfx,
2501 finish_root_table (struct flist *flp, const char *pfx, const char *lastname, in finish_root_table() argument
2524 tname, pfx); in finish_root_table()
2550 oprintf (base_files[fnum], " gt_%s_", pfx); in finish_root_table()
/openbsd/src/lib/libc/stdio/
Dtempnam.c43 tempnam(const char *dir, const char *pfx) in tempnam() argument
51 if (!pfx) in tempnam()
52 pfx = "tmp."; in tempnam()
56 f[strlen(f) - 1] == '/' ? "" : "/", pfx); in tempnam()
68 f[strlen(f) - 1] == '/' ? "" : "/", pfx); in tempnam()
78 len = snprintf(name, PATH_MAX, "%s%sXXXXXXXXX", f, pfx); in tempnam()
87 len = snprintf(name, PATH_MAX, "%s%sXXXXXXXXX", f, pfx); in tempnam()
/openbsd/src/gnu/usr.bin/texinfo/lib/
Dtempname.c155 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, in __path_search() argument
161 if (!pfx || !pfx[0]) in __path_search()
163 pfx = "file"; in __path_search()
168 plen = strlen (pfx); in __path_search()
207 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx); in __path_search()
/openbsd/src/gnu/llvm/llvm/bindings/python/llvm/
Dcommon.py107 pfx, ext = 'lib', '.dylib'
109 pfx, ext = '', '.dll'
111 pfx, ext = 'lib', '.so'
115 lib = cdll.LoadLibrary(pfx + i + ext)
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/
Dstate.t14 my $pfx = '';
15 return map {"$pfx$_"} @_;
/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Usage/t/inc/Pod/
DParser.pm961 my ($pfx, $cmd, $arg, $sep) = ('', '', '', '');
967 $pfx = $1;
968 $_ = substr($text, length $pfx);
983 -prefix => $pfx,
/openbsd/src/gnu/usr.bin/perl/ext/B/
DMakefile.PL38 my $pfx = $tuple->[1] || '';
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/App/
DProve.pm394 for my $pfx (@search) {
395 my $name = join( '::', $pfx, $class );
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DAMDGPULibFunc.h347 void setPrefix(ENamePrefix pfx) { FKind = pfx; } in setPrefix() argument
/openbsd/src/usr.sbin/ikectl/
Dikeca.c727 char pfx[PATH_MAX]; in ca_export() local
770 len = snprintf(pfx, sizeof(pfx), "%s/private/%s.pfx", ca->sslpath, oname); in ca_export()
771 if (len < 0 || (size_t)len >= sizeof(pfx)) in ca_export()
782 "-in", crt, "-out", pfx, "-passout", "env:EXPASS", in ca_export()
/openbsd/src/usr.sbin/ldapd/
Dbtree.c300 struct btkey *max, struct btkey *pfx);
363 struct btkey *pfx) in common_prefix() argument
370 pfx->len = 0; in common_prefix()
386 assert(n <= (int)sizeof(pfx->str)); in common_prefix()
387 pfx->len = n; in common_prefix()
388 bcopy(p2 + 1, pfx->str, n); in common_prefix()
401 assert(n <= (int)sizeof(pfx->str)); in common_prefix()
402 pfx->len = n; in common_prefix()
403 bcopy(max->str, pfx->str, n); in common_prefix()
435 struct btkey *pfx) in bt_cmp() argument
[all …]
/openbsd/src/usr.sbin/rpki-client/
Dspl.c405 insert_vsp(struct vsp *vsp, size_t idx, struct spl_pfx *pfx) in insert_vsp() argument
410 vsp->prefixes[idx] = *pfx; in insert_vsp()
/openbsd/src/sys/arch/hppa/hppa/
Ddb_disasm.c2134 register char *pfx = uid > 1 ? "c" : "f"; local
2149 db_printf("%sldd",pfx);
2152 db_printf("%sldw",pfx);
2155 db_printf("%sstd",pfx);
2157 db_printf("%sstw",pfx);
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dgengtype.c1379 static void finish_root_table PARAMS ((struct flist *flp, const char *pfx,
2123 finish_root_table (flp, pfx, lastname, tname, name) in finish_root_table() argument
2125 const char *pfx;
2151 tname, pfx);
2175 oprintf (base_files[fnum], " gt_ggc_%s_", pfx);
/openbsd/src/gnu/usr.bin/perl/regen/
Dregcharclass.pl1484 my $pfx= $ret_type eq 'both' ? 'what_len_' :
1492 my $def_fmt="$pfx$self->{op}$ext%s($argstr)";
/openbsd/src/sys/dev/acpi/
Dacpidmar.c1952 char *pfx[] = { " ", " ", " ", " ", "" }; in _dumppte() local
1961 printf("%slvl%d: %.16llx nxt:%llu\n", pfx[lvl], lvl, in _dumppte()
1965 printf("%slvl%d: %.16llx <- %.16llx \n", pfx[lvl], lvl, in _dumppte()
/openbsd/src/gnu/usr.bin/perl/
Duni_keywords.h163 U16 pfx; member
7697 ( memcmp(mph_blob + mph_table[n].pfx, key, mph_table[n].pfx_len) == 0 ) && in match_uniprop()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc5103 INTERCEPTOR(char *, tempnam, char *dir, char *pfx) {
5105 COMMON_INTERCEPTOR_ENTER(ctx, tempnam, dir, pfx);
5107 if (pfx) COMMON_INTERCEPTOR_READ_RANGE(ctx, pfx, internal_strlen(pfx) + 1);
5108 char *res = REAL(tempnam)(dir, pfx);
/openbsd/src/lib/libcurses/
DCaps448 pkey_xmit pfx str px - - -B--- program function key #1 to transmit string #2