Searched refs:prefix (Results 26 - 50 of 921) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.bin/mktemp/
H A Dmktemp.c58 const char *prefix; local
63 prefix = "mktemp";
77 prefix = optarg;
94 prefix = "tmp";
100 asprintf(&name, "%s%s.XXXXXXXX", _PATH_TMP, prefix);
102 asprintf(&name, "%s/%s.XXXXXXXX", tmpdir, prefix);
154 "usage: mktemp [-d] [-q] [-t prefix] [-u] template ...\n");
156 " mktemp [-d] [-q] [-u] -t prefix \n");
/freebsd-11-stable/stand/efi/libefi/
H A Ddevpath.c106 size_t prefix, len; local
110 prefix = (UINT8 *)node - (UINT8 *)devpath;
111 if (prefix == 0)
113 len = prefix + DevicePathNodeLength(NextDevicePathNode(node));
116 memcpy(copy, devpath, prefix);
117 node = (EFI_DEVICE_PATH *)((UINT8 *)copy + prefix);
178 efi_devpath_is_prefix(EFI_DEVICE_PATH *prefix, EFI_DEVICE_PATH *path) argument
182 if (prefix == NULL || path == NULL)
186 if (IsDevicePathEnd(prefix))
189 if (DevicePathType(prefix) !
[all...]
/freebsd-11-stable/sys/teken/
H A Dgensequences57 prefix = "";
60 n = prefix sequence[i];
61 l_prefix_parent[n] = prefix;
65 prefix = n;
69 cmd = prefix suffix;
74 l_cmd_prefix[cmd] = prefix;
83 l_prefix_numbercmds[prefix]++;
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetaddrinfo_hostspec.c53 const char *prefix; member in struct:hst
69 for(hstp = hst; hstp->prefix; hstp++) {
70 if(strncmp(hostspec, hstp->prefix, strlen(hstp->prefix)) == 0) {
75 hostspec += strlen(hstp->prefix);
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dradix.c22 * Id: prefix.c,v 1.37.2.9 2000/03/10 02:53:19 labovit Exp
37 _deref_prefix(isc_mem_t *mctx, isc_prefix_t *prefix);
40 _ref_prefix(isc_mem_t *mctx, isc_prefix_t **target, isc_prefix_t *prefix);
52 isc_prefix_t *prefix; local
59 prefix = isc_mem_get(mctx, sizeof(isc_prefix_t));
60 if (prefix == NULL)
64 prefix->bitlen = (bitlen >= 0) ? bitlen : 128;
65 memcpy(&prefix->add.sin6, dest, 16);
68 prefix->bitlen = (bitlen >= 0) ? bitlen : 32;
69 memcpy(&prefix
81 _deref_prefix(isc_mem_t *mctx, isc_prefix_t *prefix) argument
96 _ref_prefix(isc_mem_t *mctx, isc_prefix_t **target, isc_prefix_t *prefix) argument
237 isc_radix_search(isc_radix_tree_t *radix, isc_radix_node_t **target, isc_prefix_t *prefix) argument
302 isc_radix_insert(isc_radix_tree_t *radix, isc_radix_node_t **target, isc_radix_node_t *source, isc_prefix_t *prefix) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dmkmap-symver.awk25 prefix = "_";
27 prefix = "";
84 sym = prefix $1;
/freebsd-11-stable/contrib/netbsd-tests/lib/librumphijack/
H A Dh_cwd.c40 static const char *prefix; variable
49 strcpy(buf, prefix);
50 if (prefix[prefixlen-1] != '/')
83 thechdir(prefix, "chdir1");
86 if (strcmp(pwd, prefix) != 0)
115 if (strcmp(pwd, prefix) != 0)
129 thechdir(prefix, "chdir1");
152 prefix = argv[1];
/freebsd-11-stable/contrib/ldns/packaging/
H A Dldns-config.in3 prefix="@prefix@"
/freebsd-11-stable/sys/mips/include/
H A Dcache.h165 #define __mco_noargs(prefix, x) \
167 (*mips_cache_ops.mco_ ## prefix ## p ## x )(); \
168 if (*mips_cache_ops.mco_ ## prefix ## s ## x ) \
169 (*mips_cache_ops.mco_ ## prefix ## s ## x )(); \
172 #define __mco_2args(prefix, x, a, b) \
174 (*mips_cache_ops.mco_ ## prefix ## p ## x )((a), (b)); \
175 if (*mips_cache_ops.mco_ ## prefix ## s ## x ) \
176 (*mips_cache_ops.mco_ ## prefix ## s ## x )((a), (b)); \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h33 ExpressionSourceCode(llvm::StringRef name, llvm::StringRef prefix, argument
35 : m_name(name.str()), m_prefix(prefix.str()), m_body(body.str()),
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dcgen.sh26 # cgen.sh action srcdir cgen cgendir cgenflags arch prefix \
33 # PREFIX is both the generated file prefix and is substituted into
34 # @prefix@ in the generated files.
54 prefix=$7
114 ${rootdir}/move-if-change tmp-desc.h ${srcdir}/${prefix}-desc.h
117 -e "s/@prefix@/${prefix}/" < tmp-desc.c1 > tmp-desc.c
118 ${rootdir}/move-if-change tmp-desc.c ${srcdir}/${prefix}-desc.c
121 ${rootdir}/move-if-change tmp-opc.h ${srcdir}/${prefix}-opc.h
124 -e "s/@prefix
[all...]
/freebsd-11-stable/contrib/amd/scripts/
H A Dam-eject.in9 prefix=@prefix@
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dprops.c193 svn_string_t prefix;
198 prefix.data = SVN_PROP_PREFIX;
199 prefix.len = strlen(SVN_PROP_PREFIX);
206 if (propstring.len < prefix.len
207 || propstring.data[prefix.len - 1] != prefix.data[prefix.len - 1])
208 return SVN_NO_ERROR; /* Wrong prefix, ignore */
213 propstring.len = prefix.len; /* Only check up to the prefix lengt
191 svn_string_t prefix; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/mi/
H A Dmi-console.c39 const char *prefix; member in struct:mi_console_file
47 const char *prefix, char quote)
54 mi_console->prefix = prefix;
100 fputs_unfiltered (mi_console->prefix, mi_console->raw);
46 mi_console_file_new(struct ui_file *raw, const char *prefix, char quote) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Ddebug.c83 char prefix[80], buffer[4096]; local
90 n = apr_snprintf(prefix, sizeof(prefix), DBG_FLAG "%s:%4ld: ",
92 assert(n < sizeof(prefix) - 1);
101 fputs(prefix, output);
H A Dprefix_string.c1 /* prefix_string.c --- implement strings based on a prefix tree
26 /* A node in the tree represents a common prefix. The root node is the
27 * empty prefix. Nodes may have up to 256 sub-nodes, each starting with
31 * prefix, i.e. longer common prefixes must be drawn out over multiple
35 * data structure. They may add 0 to 7 extra chars to the prefix. Both
49 /* mandatory prefix */
50 node_t *prefix; member in struct:svn_prefix_string__t
52 /* 0 ..7 chars to add the prefix.
69 /* pointer to the parent prefix plus the 1 .. 8 extra chars.
73 /* Length of the prefix fro
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-babel.c124 format_prefix(netdissect_options *ndo, const u_char *prefix, unsigned char plen) argument
127 if(plen >= 96 && memcmp(prefix, v4prefix, 12) == 0)
128 snprintf(buf, 50, "%s/%u", ipaddr_string(ndo, prefix + 12), plen - 96);
130 snprintf(buf, 50, "%s/%u", ip6addr_string(ndo, prefix), plen);
136 format_address(netdissect_options *ndo, const u_char *prefix) argument
138 if(memcmp(prefix, v4prefix, 12) == 0)
139 return ipaddr_string(ndo, prefix + 12);
141 return ip6addr_string(ndo, prefix);
169 /* Return number of octets consumed from the input buffer (not the prefix length
177 unsigned char prefix[1 local
496 u_char prefix[16]; local
532 u_char prefix[16], plen; local
551 u_char prefix[16], plen; local
593 u_char prefix[16], src_prefix[16]; local
638 u_char ae, plen, src_plen, prefix[16], src_prefix[16]; local
672 u_char ae, plen, src_plen, prefix[16], src_prefix[16], hopc; local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/hdb/
H A Dhdb.c282 char *prefix, *path, *symbol; local
289 /* if no prefix, don't know what module to load, just ignore it */
296 prefix = malloc(len + 1);
297 if (prefix == NULL)
299 strlcpy(prefix, filename, len + 1);
301 if (asprintf(&path, LIBDIR "/hdb_%s.so", prefix) == -1)
315 free(prefix);
320 if (asprintf(&symbol, "hdb_%s_interface", prefix) == -1)
329 free(prefix);
340 prefix, ms
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dcaching.c74 the cache prefix to use.
93 * the complete key prefix, we must make sure that the resulting string
323 const char *prefix,
340 SVN_ERR(svn_cache__create_null(cache_p, prefix, result_pool));
346 prefix, result_pool));
357 klen, prefix, priority, FALSE, has_namespace,
364 items_per_page, FALSE, prefix, result_pool));
368 SVN_ERR(svn_cache__create_null(cache_p, prefix, result_pool));
381 const char *prefix = apr_pstrcat(scratch_pool, local
406 prefix
315 create_cache(svn_cache__t **cache_p, svn_memcache_t *memcache, svn_membuffer_t *membuffer, apr_int64_t pages, apr_int64_t items_per_page, svn_cache__serialize_func_t serializer, svn_cache__deserialize_func_t deserializer, apr_ssize_t klen, const char *prefix, apr_uint32_t priority, svn_boolean_t has_namespace, svn_fs_t *fs, svn_boolean_t no_handler, svn_boolean_t dummy_cache, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/ncurses/misc/
H A Dncurses-config.in38 prefix="@prefix@"
81 $prefix/include/ncurses@LIB_SUFFIX@)
92 --prefix)
93 echo "$prefix"
95 --exec-prefix)
169 --prefix echos the package-prefix of ${THIS}
170 --exec-prefix echos the executable-prefix o
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_gtc.c16 int prefix; member in struct:eap_gtc_data
29 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
31 data->prefix = 1;
63 if (data->prefix &&
66 "expected prefix");
94 ret->methodState = data->prefix ? METHOD_MAY_CONT : METHOD_DONE;
102 if (data->prefix)
108 if (data->prefix) {
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dradix.h69 #define isc_prefix_tochar(prefix) ((char *)&(prefix)->add.sin)
70 #define isc_prefix_touchar(prefix) ((u_char *)&(prefix)->add.sin)
82 * An IPv4 prefix and an IPv6 prefix may share a radix tree node if they
86 * and data[1] for IPv6 addresses. The only exception is a prefix of
93 isc_uint32_t bit; /* bit length of the prefix */
94 isc_prefix_t *prefix; /* who we are in radix tree */ member in struct:isc_radix_node
116 isc_prefix_t *prefix);
[all...]
/freebsd-11-stable/contrib/com_err/
H A Dlex.l63 prefix { return PREFIX; }
/freebsd-11-stable/contrib/subversion/subversion/svnserve/
H A Dlog-escape.c62 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix, argument
68 *where++ = prefix;
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dlex.l63 prefix { return PREFIX; }

Completed in 167 milliseconds

1234567891011>>