Searched refs:base (Results 1 - 25 of 2380) sorted by relevance

1234567891011>>

/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlclose-dylib-ref-count/
H A Dbase.c1 void base() { } function
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-RTLD_FIRST/
H A Dbase.c25 int base() function
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/loader_path-dup/
H A Dbase.c25 int base = 1; variable
27 int base = 2; variable
H A Dbar.c25 extern int base;
29 return (base == 2);
H A Dfoo.c26 extern int base;
30 return (base == 1);
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dstripslash.c33 char *base = last_component (file); local
39 if (! *base)
40 base = file;
41 base_lim = base + base_len (base);
H A Dbasename.c35 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local
39 while (ISSLASH (*base))
40 base++;
42 for (p = base; *p; p++)
48 base = p;
53 return (char *) base;
77 char const *base = last_component (name); local
82 if (! *base)
86 length = base_len (base);
87 if (ISSLASH (base[lengt
[all...]
/macosx-10.9.5/libiconv-41/libiconv/srclib/
H A Dprogname.c44 const char *base; local
47 base = (slash != NULL ? slash + 1 : argv0);
48 if (base - argv0 >= 7 && memcmp (base - 7, "/.libs/", 7) == 0)
49 argv0 = base;
50 if (strncmp (base, "lt-", 3) == 0)
51 argv0 = base + 3;
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dlbasename.c51 const char *base; local
59 for (base = name; *name; name++)
61 base = name + 1;
63 return base;
H A Dmake-temp-file.c67 try_dir (const char *dir, const char *base) argument
69 if (base != 0)
70 return base;
99 const char *base = 0; local
106 base = try_dir (getenv ("TMPDIR"), base);
107 base = try_dir (getenv ("TMP"), base);
108 base = try_dir (getenv ("TEMP"), base);
150 const char *base = choose_tmpdir (); local
[all...]
/macosx-10.9.5/zsh-60/zsh/Functions/VCS_Info/
H A DVCS_INFO_reposub6 local base=${1%%/##}
8 [[ ${PWD} == ${base}/* ]] || {
12 printf '%s' ${PWD#$base/}
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dconstdata.cpp38 ConstData::Blob::Blob(const void *base, size_t size, bool takeOwnership) : mSize(size) argument
40 mData = takeOwnership ? base : memcpy(new char[size], base, size);
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dconstdata.cpp38 ConstData::Blob::Blob(const void *base, size_t size, bool takeOwnership) : mSize(size) argument
40 mData = takeOwnership ? base : memcpy(new char[size], base, size);
/macosx-10.9.5/WebCore-7537.78.1/rendering/mathml/
H A DRenderMathMLUnderOver.cpp54 RenderObject* base = firstChild(); local
55 if (!base || !base->isRenderMathMLBlock())
57 return toRenderMathMLBlock(base)->unembellishedOperator();
62 RenderBox* base = firstChildBox(); local
63 if (!base)
65 LayoutUnit baseline = base->firstLineBoxBaseline();
67 baseline += base->logicalTop();
/macosx-10.9.5/pdisk-9/
H A Dbitfield.h69 unsigned int bitfield_set(unsigned int *bf, int base, int length, unsigned int value);
70 unsigned int bitfield_get(unsigned int bf, int base, int length);
/macosx-10.9.5/ntp-88/scripts/
H A Dcalc_tickadj.in10 $base=10000; # tick: 1,000,000 / HZ
11 $cvt=104.8576; # 2 ** 20 / $base
25 $base--;
31 $base++;
37 printf("%d usec; %d nsec\n", $base, ($base + ($v1/$cvt)) * 1000);
/macosx-10.9.5/text_cmds-87/ed/test/
H A Dmkscripts.sh11 # base=${i%.*}
12 # base=`echo $i | sed 's/\..*//'`
13 # base=`expr $i : '\([^.]*\)'`
17 # echo "r $base.d"
19 # echo "w $base.o"
21 # ) >$base.ed
22 # chmod +x $base.ed
25 base=`$ED - \!"echo $i" <<-EOF
33 r $base.d
34 w $base
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dstrtoofft.c48 static int get_char(char c, int base);
55 curlx_strtoll(const char *nptr, char **endptr, int base) argument
88 if(base == 16 || base == 0) {
90 base = 16;
94 if(base == 8 || base == 0) {
96 base = 8;
100 /* Matching strtol, if the base is 0 and it doesn't look like
101 * the number is octal or hex, we assume it's base 1
154 get_char(char c, int base) argument
[all...]
/macosx-10.9.5/CPANInternal-140/PathTools/t/
H A Dcrossplatform.t52 my ($file, $base, $result);
54 $base = $module->catpath($v, $module->catdir('', 'foo'), '');
55 $base = $module->catdir($module->rootdir, 'foo');
57 is $module->file_name_is_absolute($base), 1, "$base is absolute on $platform";
62 $base = $module->catpath($v, $module->catdir($module->rootdir, 'foo'), '');
64 is $module->abs2rel($file, $base), $result, "$platform->abs2rel($file, $base)";
67 $base = $module->catpath($other_v, $module->catdir($module->rootdir, 'foo'), '');
68 $result = volumes_differ($module, $file, $base)
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dbasename.c38 char const *base = name + FILESYSTEM_PREFIX_LEN (name); local
41 for (p = base; *p; p++)
53 if (ISSLASH (*base))
54 base = p - 1;
59 base = p;
63 return (char *) base;
/macosx-10.9.5/gpatch-3/patch/
H A Dbasename.c38 char const *base = name + FILESYSTEM_PREFIX_LEN (name); local
41 for (p = base; *p; p++)
53 if (ISSLASH (*base))
54 base = p - 1;
59 base = p;
63 return (char *) base;
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dfmtulong.c70 # define FL_ADDBASE 0x02 /* add base# prefix to converted value */
81 base. The caller passes the output buffer and the size. This should
84 fmtulong (ui, base, buf, len, flags)
86 int base;
95 if (base == 0)
96 base = 10;
98 if (base < 2 || base > 64)
101 strncpy (buf, _("invalid base"), len - 1);
106 base
[all...]
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dstrtol.c47 long strtol(str, ptr, base)
49 int base;
64 if (base == 0) {
68 base = 16;
71 base = 8;
74 base = 10;
76 if (base < 2 || base > 36)
77 base = 10;
78 else if (base
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrtol.c51 strtol(nptr, endptr, base)
54 int base;
64 * If base is 0, allow 0x for hex and 0 for octal, else
65 * assume decimal; if base is already 16, allow 0x.
79 if ((base == 0 || base == 16) &&
83 base = 16;
85 if (base == 0)
86 base = c == '0' ? 8 : 10;
88 if (base <
[all...]
H A Dstrtoul.c51 strtoul(nptr, endptr, base)
54 int base;
77 if ((base == 0 || base == 16) &&
81 base = 16;
83 if (base == 0)
84 base = c == '0' ? 8 : 10;
86 if (base < 2 || base > 36)
89 cutoff = ULONG_MAX / base;
[all...]

Completed in 254 milliseconds

1234567891011>>