Searched refs:name (Results 1 - 25 of 11498) sorted by relevance

1234567891011>>

/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dlbasename.c23 @deftypefn Replacement {const char*} lbasename (const char *@var{name})
49 lbasename (const char *name) argument
54 /* Skip over a possible disk name. */
55 if (ISALPHA (name[0]) && name[1] == ':')
56 name += 2;
59 for (base = name; *name; name++)
60 if (IS_DIR_SEPARATOR (*name))
[all...]
H A Dbasename.c6 @deftypefn Supplemental char* basename (const char *@var{name})
8 Returns a pointer to the last component of pathname @var{name}.
43 basename (const char *name) argument
48 /* Skip over the disk name in MSDOS pathnames. */
49 if (ISALPHA (name[0]) && name[1] == ':')
50 name += 2;
53 for (base = name; *name; name
[all...]
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Dcanonicalize.h1 /* Return the canonical absolute name of a given file.
18 /* Return a malloc'd string containing the canonical absolute name of the
19 named file. The last file name component need not exist, and may be a
21 extern char *canonicalize_file_name (const char *name);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/example/
H A Dexpr_ptgenb.inc6 lassign $argv name
7 set grammar [fileutil::cat $name.peg]
11 -class $name \
12 -file $name.peg \
13 -name $name]
14 fileutil::writeFile $name.tcl $pclass
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dquote.h21 char const *quote_n (int n, char const *name);
22 char const *quote (char const *name);
H A Dquote.c30 quote_n (int n, char const *name) argument
32 return quotearg_n_style (n, locale_quoting_style, name);
38 quote (char const *name) argument
40 return quote_n (0, name);
/macosx-10.10.1/text_cmds-88/sort/
H A Dquote.h21 char const *quote_n (int n, char const *name);
22 char const *quote (char const *name);
H A Dquote.c30 quote_n (int n, char const *name) argument
32 return quotearg_n_style (n, locale_quoting_style, name);
38 quote (char const *name) argument
40 return quote_n (0, name);
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/elf/
H A Dreloc-macros.h68 string version name of the name of that relocation. If
71 #define START_RELOC_NUMBERS(name) \
72 static const char *name (unsigned long rtype); \
74 name (unsigned long rtype) \
79 #define RELOC_NUMBER(name, number) \
80 case number: return #name;
82 #define FAKE_RELOC(name, number)
83 #define EMPTY_RELOC(name)
85 #define END_RELOC_NUMBERS(name) \
[all...]
/macosx-10.10.1/man-16/man/src/
H A Dto_cat.h1 extern const char *mandir_of (const char *name);
2 extern const char *convert_to_cat (const char *name, const char *ext,
/macosx-10.10.1/postfix-255/postfix/mantools/
H A Ddocparam7 for name
16 ' $name
376 { if (name = table[$1]) print $1 }
/macosx-10.10.1/ruby-106/ruby/enc/
H A Dencdb.c14 int rb_encdb_dummy(const char *name);
15 void rb_encdb_declare(const char *name);
16 void rb_enc_set_base(const char *name, const char *orig);
18 #define ENC_REPLICATE(name, orig) rb_encdb_replicate((name), (orig))
19 #define ENC_ALIAS(name, orig) rb_encdb_alias((name), (orig))
20 #define ENC_DUMMY(name) rb_encdb_dummy(name)
21 #define ENC_DEFINE(name) rb_encdb_declar
[all...]
H A Dutf_16_32.h3 #define ENC_DUMMY_UNICODE(name) ENC_DUMMY(name)
/macosx-10.10.1/OpenSSH-189/openssh/contrib/aix/
H A Dinventory.sh33 find . ! -name . -print | perl -ne '{
42 $name = $_;
43 $name =~ s|^.||; # Strip leading dot from path
44 print "$name:\n";
/macosx-10.10.1/bind9-45.101/bind9/bin/pkcs11/unix/
H A Dcryptoki.h46 #define CK_DEFINE_FUNCTION(returnType, name) \
47 returnType name
49 #define CK_DECLARE_FUNCTION(returnType, name) \
50 returnType name
52 #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \
53 returnType (* name)
55 #define CK_CALLBACK_FUNCTION(returnType, name) \
56 returnType (* name)
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DInlineASM.h32 #define SYMBOL_STRING(name) "_" #name
34 #define SYMBOL_STRING(name) #name
38 #define THUMB_FUNC_PARAM(name) SYMBOL_STRING(name)
40 #define THUMB_FUNC_PARAM(name)
44 #define GLOBAL_REFERENCE(name) #name "@plt"
46 #define GLOBAL_REFERENCE(name) "
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DIncludeFile.h32 #define FORCE_DEFINING_FILE_TO_BE_LINKED(name) \
34 extern const char name ## LinkVar; \
35 __attribute__((used)) static const char *const name ## LinkObj = \
36 &name ## LinkVar; \
40 #define FORCE_DEFINING_FILE_TO_BE_LINKED(name) \
42 extern const char name ## LinkVar; \
43 static const IncludeFile name ## LinkObj ( &name ## LinkVar ); \
48 /// be used in a .cpp file to define the name referenced in a header file that
50 #define DEFINING_FILE_FOR(name) \
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/build_vxworks/test_micro/
H A Duname.c9 struct utsname name; local
11 if (uname(&name) == 0)
12 printf("<p>%s, %s<br>\n%s, %s, %s</p>\n", name.nodename,
13 name.machine, name.sysname, name.release, name.version);
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dstruct.h17 * 4. Neither the name of the University nor the names of its contributors
40 #define fldoff(name, field) \
41 ((int)&(((struct name *)0)->field))
44 #define fldsiz(name, field) \
45 (sizeof(((struct name *)0)->field))
48 #define strbase(name, addr, field) \
49 ((struct name *)((char *)(addr) - fldoff(name, field)))
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcurl_gethostname.c29 * overriding the host name that the function would normally return.
34 * For libcurl debug enabled builds host name overriding takes place
36 * held by the variable to override returned host name.
46 * CURL_GETHOSTNAME set in order to override the returned host name.
51 int Curl_gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen) { argument
56 (void) name;
66 /* Override host name when environment variable CURL_GETHOSTNAME is set */
69 strncpy(name, force_hostname, namelen);
73 name[0] = '\0';
74 err = gethostname(name, namele
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/x86/
H A Ddiv.pl6 local($name)=@_;
8 &function_begin($name,"");
13 &function_end($name);
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dsethostname.c27 * we force our own host name, in order to make some tests machine independent
30 int gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen) argument
34 strncpy(name, force_hostname, namelen);
35 name[namelen-1] = '\0';
/macosx-10.10.1/apr-32/apr/apr/include/arch/unix/
H A Dapr_arch_inherit.h24 #define APR_IMPLEMENT_INHERIT_SET(name, flag, pool, cleanup) \
25 apr_status_t apr_##name##_inherit_set(apr_##name##_t *the##name) \
27 if (the##name->flag & APR_FOPEN_NOCLEANUP) \
29 if (!(the##name->flag & APR_INHERIT)) { \
30 int flags = fcntl(the##name->name##des, F_GETFD); \
34 if (fcntl(the##name->name##de
[all...]
/macosx-10.10.1/libxslt-13/libxslt/tests/exslt/dynamic/
H A DMakefile.am19 name=`basename $$i .xsl` ; \
20 if [ ! -f $(srcdir)/$$name.xml ] ; then continue ; fi ; \
22 $(srcdir)/$$name.xsl $(srcdir)/$$name.xml > $$name.res 2>$$name.bad;\
23 if [ ! -f $(srcdir)/$$name.out ] ; then \
24 cp $$name.res $(srcdir)/$$name.out ; \
25 if [ -s $$name
[all...]
/macosx-10.10.1/ncurses-44/ncurses/misc/
H A Djpf-indent24 #* Except as contained in this notice, the name(s) of the above copyright *
63 for name in $*
65 case $name in
71 OPTS="$OPTS $name"
74 save="${name}".a$$
75 test="${name}".b$$
77 mv "$name" "$save"
85 cp "$test" "$name"
86 chmod u+w "$name"
88 ${INDENT_PROG-indent} -npro $OPTS "$name"
[all...]

Completed in 335 milliseconds

1234567891011>>