Searched refs:base (Results 1 - 25 of 6948) sorted by path

1234567891011>>

/netbsd-current/external/bsd/flex/dist/build-aux/
H A Ddepcomp71 # global variable '$base'.
74 base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
305 tmpdepfile1=$dir$base.u
306 tmpdepfile2=$base.u
307 tmpdepfile3=$dir.libs/$base.u
310 tmpdepfile1=$dir$base.u
311 tmpdepfile2=$dir$base.u
312 tmpdepfile3=$dir$base.u
375 # Use the source, not the object, to determine the base name, since
378 tmpdepfile=$base
[all...]
H A Dtexinfo.tex188 data-base data-bases eshell fall-ing half-way long-est man-u-script
/netbsd-current/external/bsd/unbound/dist/compat/
H A Dinet_aton.c94 int base, n; local
108 val = 0; base = 10;
112 base = 16, c = *++cp;
114 base = 8;
118 val = (val * base) + (c - '0');
120 } else if (base == 16 && isascii((unsigned char)c) && isxdigit((unsigned char)c)) {
H A Dinet_ntop.c124 struct { int base, len; } best, cur; member in struct:__anon202
137 best.base = -1;
139 cur.base = -1;
143 if (cur.base == -1)
144 cur.base = i, cur.len = 1;
148 if (cur.base != -1) {
149 if (best.base == -1 || cur.len > best.len)
151 cur.base = -1;
155 if (cur.base != -1) {
156 if (best.base
[all...]
/netbsd-current/external/gpl2/diffutils/dist/config/
H A Ddepcomp35 base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
41 depfile="$dir.deps/$base"
216 base=`echo "$object" | sed -e 's/\.o$/.d/' -e 's/\.lo$/.d/'`
217 tmpdepfile1="$base.o.d"
218 tmpdepfile2="$base.d"
/netbsd-current/external/gpl2/diffutils/dist/doc/
H A DMakefile.in205 for base in $$list; do \
207 for file in $$d/$$base*; do \
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dbasename.c40 char const *base = name + FILESYSTEM_PREFIX_LEN (name); local
43 for (p = base; *p; p++)
55 if (ISSLASH (*base))
56 base = p - 1;
61 base = p;
65 return (char *) base;
H A Dstrtoimax.c88 strtoimax (char const *ptr, char **endptr, int base) argument
96 return strtoll (ptr, endptr, base);
102 return strtol (ptr, endptr, base);
H A Dstrtol.c252 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
253 If BASE is 0 the base is determined by the presence of a leading
260 INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM)
263 int base; variable
307 if (base < 0 || base == 1 || base > 36)
338 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X'))
341 base
470 int base; variable
[all...]
H A Dxstrtol.c110 bkm_scale_by_power (__strtol_t *x, int base, int power) argument
113 if (bkm_scale (x, base))
168 int base = 1024; local
182 the base. A suffix "B" (e.g. "100MB") stands for a power
196 base = 1000;
217 overflow = bkm_scale_by_power (&tmp, base, 6);
222 overflow = bkm_scale_by_power (&tmp, base, 3);
227 overflow = bkm_scale_by_power (&tmp, base, 1);
232 overflow = bkm_scale_by_power (&tmp, base, 2);
236 overflow = bkm_scale_by_power (&tmp, base,
[all...]
H A Dxstrtol.h45 name PARAMS ((const char *s, char **ptr, int base, \
/netbsd-current/external/gpl2/diffutils/dist/man/
H A DMakefile.am31 base=`expr $@ : '\(.*\).1'` && \
32 (echo '[NAME]' && sed 's@/\* *@@; s/-/\\-/; q' $S/$$base.c) | \
33 $(HELP2MAN) -i - -S '$(PACKAGE) $(VERSION)' ../src/$$base | \
H A DMakefile.in285 base=`expr $@ : '\(.*\).1'` && \
286 (echo '[NAME]' && sed 's@/\* *@@; s/-/\\-/; q' $S/$$base.c) | \
287 $(HELP2MAN) -i - -S '$(PACKAGE) $(VERSION)' ../src/$$base | \
/netbsd-current/external/gpl2/diffutils/dist/src/
H A Dsdiff.c337 char const *base = base_name (other_name); local
338 size_t namelen = strlen (name), baselen = strlen (base);
343 memcpy (r + namelen + insert_slash, base, baselen + 1);
/netbsd-current/external/gpl2/gettext/dist/
H A Dautogen.sh78 $GNULIB_TOOL --dir=gettext-runtime --lib=libgrt --source-base=gnulib-lib --m4-base=gnulib-m4 --no-libtool --local-dir=gnulib-local \
167 $GNULIB_TOOL --dir=gettext-tools --lib=libgettextlib --source-base=gnulib-lib --m4-base=gnulib-m4 --libtool --local-dir=gnulib-local \
205 $GNULIB_TOOL --dir=gettext-tools --source-base=libgettextpo --m4-base=libgettextpo/gnulib-m4 --macro-prefix=gtpo --makefile-name=Makefile.gnulib --libtool --local-dir=gnulib-local \
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dbasename.c64 char const *base = name += FILE_SYSTEM_PREFIX_LEN (name); local
71 base = p + 1;
77 if (*base == '\0' && ISSLASH (*name) && all_slashes)
78 --base;
83 return (char *) base;
H A Dlocalcharset.c116 const char *base = "charset.alias"; local
125 /* Concatenate dir and base into freshly allocated file_name. */
128 size_t base_len = strlen (base);
136 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
H A Dprogname.c41 const char *base; local
44 base = (slash != NULL ? slash + 1 : argv0);
45 if (base - argv0 >= 7 && memcmp (base - 7, "/.libs/", 7) == 0)
46 argv0 = base;
47 if (strncmp (base, "lt-", 3) == 0)
48 argv0 = base + 3;
H A Dstrtol.c234 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
235 If BASE is 0 the base is determined by the presence of a leading
243 int base, int group LOCALE_PARAM_PROTO)
285 if (base < 0 || base == 1 || base > 36)
316 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X'))
319 base = 16;
321 else if (base
242 strtol(const STRING_TYPE *nptr, STRING_TYPE **endptr, int base, int group LOCALE_PARAM_PROTO) argument
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dlocalcharset.c117 const char *base = "charset.alias"; local
126 /* Concatenate dir and base into freshly allocated file_name. */
129 size_t base_len = strlen (base);
137 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/libasprintf/
H A DMakefile.in539 for base in $$list; do \
540 case $$base in \
541 $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
543 if test -f $$base; then d=.; else d=$(srcdir); fi; \
544 base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
545 for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/doc/
H A DMakefile.in655 for base in $$list; do \
656 case $$base in \
657 $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
659 if test -f $$base; then d=.; else d=$(srcdir); fi; \
660 base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
661 for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/
H A Dam_edit25 # The concept (and base code) for this program came from automoc,
1361 $tmp .= "\t\@for base in ";
1370 $tmp .= "\t echo \$(INSTALL_DATA) \$\$base.gmo \$(DESTDIR)\$(kde_locale)/$lang/LC_MESSAGES/\$\$base.mo ;\\\n";
1371 $tmp .= "\t if test -f \$\$base.gmo; then \$(INSTALL_DATA) \$\$base.gmo \$(DESTDIR)\$(kde_locale)/$lang/LC_MESSAGES/\$\$base.mo ;\\\n";
1372 $tmp .= "\t elif test -f \$(srcdir)/\$\$base.gmo; then \$(INSTALL_DATA) \$(srcdir)/\$\$base.gmo \$(DESTDIR)\$(kde_locale)/$lang/LC_MESSAGES/\$\$base
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dbackupfile.c170 version_number (const char *base, const char *backup, size_t base_length) argument
176 if (strncmp (base, backup, base_length) == 0
H A Dbasename.c64 char const *base = name += FILE_SYSTEM_PREFIX_LEN (name); local
71 base = p + 1;
77 if (*base == '\0' && ISSLASH (*name) && all_slashes)
78 --base;
83 return (char *) base;

Completed in 388 milliseconds

1234567891011>>