Searched refs:str (Results 51 - 75 of 11616) sorted by relevance

1234567891011>>

/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/
H A Ddml_logger.h35 #define dml_print(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
36 #define DTRACE(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
H A Dpowerpc-prologue.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
H A Di386-bp_permanent.c19 #define SYMBOL(str) SYMBOL_PREFIX #str
21 #define SYMBOL(str) #str
H A Di386-unwind.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
H A Di386-size.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_215.c14 struct str { struct
20 test(struct str str, const double *p_double) argument
29 /* expect+2: error: type 'struct str' does not have member 'member' [101] */
31 str.member();
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Di386-size.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
H A Di386-unwind.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
H A Dpowerpc64-prologue.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
H A Di386-bp_permanent.c19 #define SYMBOL(str) SYMBOL_PREFIX #str
21 #define SYMBOL(str) #str
H A Dpowerpc-prologue.c21 #define SYMBOL(str) SYMBOL_PREFIX #str
23 #define SYMBOL(str) #str
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dbase64.rb16 # Creates a new XMLRPC::Base64 instance with string +str+ as the
18 # string +str+ is not in base64 format (perhaps already decoded),
19 # otherwise if +state+ is +:enc+ it decodes +str+
21 def initialize(str, state = :dec)
24 @str = Base64.decode(str)
26 @str = str
34 @str
39 Base64.encode(@str)
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/interpose-chained/
H A Dfoo.c26 const char* foo(const char* str) argument
29 asprintf(&result, "foo(%s)", str);
/macosx-10.10/WebCore-7600.1.25/bindings/scripts/test/
H A DTestCustomNamedGetter.idl32 void anotherFunction(DOMString str);
/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_strtok.c27 APR_DECLARE(char *) apr_strtok(char *str, const char *sep, char **last) argument
31 if (!str) /* subsequent call */
32 str = *last; /* start where we left off */
35 while (*str && strchr(sep, *str))
36 ++str;
38 if (!*str) /* no more tokens */
41 token = str;
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dserialize.py12 str = doc.serialize() variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str !
49 str = root.serialize("iso-8859-1") variable
53 str = root.serialize(format=1) variable
59 str = root.serialize("iso-8859-1", 1) variable
71 str = doc.serialize() variable
77 str = doc.serialize("ISO-8859-1") variable
83 str = doc.serialize(format=1) variable
95 str = doc.serialize("iso-8859-1", 1) variable
113 str = root.serialize() variable
117 str = root.serialize("ISO-8859-1") variable
121 str = root.serialize(format=1) variable
131 str = root.serialize("iso-8859-1", 1) variable
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dserialize.py12 str = doc.serialize() variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str !
49 str = root.serialize("iso-8859-1") variable
53 str = root.serialize(format=1) variable
59 str = root.serialize("iso-8859-1", 1) variable
71 str = doc.serialize() variable
77 str = doc.serialize("ISO-8859-1") variable
83 str = doc.serialize(format=1) variable
95 str = doc.serialize("iso-8859-1", 1) variable
113 str = root.serialize() variable
117 str = root.serialize("ISO-8859-1") variable
121 str = root.serialize(format=1) variable
131 str = root.serialize("iso-8859-1", 1) variable
[all...]
/macosx-10.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Datoi.c41 atoi(str)
42 const char *str;
44 return (int)strtol_l(str, (char **)NULL, 10, __current_locale());
48 atoi_l(str, loc)
49 const char *str;
53 return (int)strtol_l(str, (char **)NULL, 10, loc);
H A Datol.c41 atol(str)
42 const char *str;
44 return strtol_l(str, (char **)NULL, 10, __current_locale());
48 atol_l(str, loc)
49 const char *str;
53 return strtol_l(str, (char **)NULL, 10, loc);
H A Datoll.c38 atoll(str)
39 const char *str;
41 return strtoll_l(str, (char **)NULL, 10, __current_locale());
45 atoll_l(str, loc)
46 const char *str;
50 return strtoll_l(str, (char **)NULL, 10, loc);
/macosx-10.10/ruby-106/ruby/ext/-test-/string/
H A Dmodify.c4 bug_str_modify(VALUE str) argument
6 rb_str_modify(str);
7 return str;
11 bug_str_modify_expand(VALUE str, VALUE expand) argument
13 rb_str_modify_expand(str, NUM2LONG(expand));
14 return str;
/netbsd-current/sbin/dump/
H A Dunctime.c53 unctime(const char *str) argument
57 str = strptime(str, "%a %b %e %H:%M:%S %Y", &then);
59 if (str == NULL || (*str != '\n' && *str != '\0'))
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dstrtol.c47 long strtol(str, ptr, base)
48 char *str, **ptr;
51 char *start = str;
57 while (ISASCII((unsigned char)*str) && isspace((unsigned char)*str))
58 str++;
60 if (*str == '-') {
62 str++;
65 if (*str == '0') {
66 if (str[
[all...]
/netbsd-current/external/gpl2/groff/dist/src/libs/libgroff/
H A Dstrtol.c49 long strtol(str, ptr, base)
50 char *str, **ptr;
53 char *start = str;
59 while (ISASCII((unsigned char)*str) && isspace((unsigned char)*str))
60 str++;
62 if (*str == '-') {
64 str++;
67 if (*str == '0') {
68 if (str[
[all...]
/macosx-10.10/apache-793/httpd/build/
H A Dmkdep.perl52 $str = "$of:\t$file";
53 $len = length $str;
58 $str = "\t";
59 $len = length $str;
80 print $str, "\\\n";
82 $str = $str . $1;
84 else { $str = $str . " " . $1; }
89 print $str, "\
[all...]

Completed in 526 milliseconds

1234567891011>>