Searched refs:str (Results 1 - 25 of 3381) sorted by relevance

1234567891011>>

/openbsd-current/lib/libssl/
H A Dssl_stat.c92 const char *str; local
96 str = "before SSL initialization";
99 str = "before accept initialization";
102 str = "before connect initialization";
105 str = "SSL negotiation finished successfully";
108 str = "SSL renegotiate ciphers";
111 str = "before/connect initialization";
114 str = "ok/connect SSL initialization";
117 str = "before/accept initialization";
120 str
327 const char *str; local
350 const char *str; local
583 const char *str; local
681 const char *str; local
779 const char *str; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20010525-1.c1 static int kind_varread(char *str) argument
3 if (0 == memcmp("%_#", str, 3)) return 2;
H A D980729-1.c5 char str[6 + 1]; local
12 str[c1++] = c;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Darray-6.c8 struct str { int len; char s[]; }; struct
10 struct str a = { 2, "a" };
14 static struct str b = { 2, "b" };
15 struct str c = { 2, "c" }; /* { dg-error "(non-static)|(near initialization)" } */
16 struct str d = (struct str) { 2, "d" }; /* { dg-error "(non-static)|(near initialization)" } */
17 struct str e = (struct str) { d.len, "e" }; /* { dg-error "(non-static)|(initialization)" } */
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/
H A D102-trim_whitespace.t9 my $str;
11 $str = 'overworked';
12 trim_whitespace($str);
13 is( $str, 'overworked', "Got expected value" );
15 $str = ' overworked';
16 trim_whitespace($str);
17 is( $str, 'overworked', "Got expected value" );
19 $str = 'overworked ';
20 trim_whitespace($str);
21 is( $str, 'overworke
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.cpp18 const char *str = nullptr; local
22 str = "eInvalidMessage";
25 str = "eAttachMessage";
28 str = "eExitMessage";
31 str = "eLimboMessage";
34 str = "eSignalMessage";
37 str = "eSignalDeliveredMessage";
40 str = "eTraceMessage";
43 str = "eBreakpointMessage";
46 str
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-15.c17 char str[8]; local
19 strcpy (str, "3141");
21 if ( memcmp (str, str+2, 0) != 0 )
23 if ( memcmp (str+1, str+3, 0) != 0 )
26 if ( memcmp (str+1, str+3, 1) != 0 )
28 if ( memcmp (str, str
[all...]
H A Dptr-arith-1.c9 char *str = "abcdefghijkl"; local
10 char *x2 = f (str, 12);
11 if (str + 14 != x2)
/openbsd-current/sys/lib/libsa/
H A Dstrlen.c35 strlen(const char *str) argument
39 for (s = str; *s; ++s)
41 return (s - str);
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/t/
H A DMod_EUCJP.pm8 my $str = shift || qw/����������/;
10 str => '',
12 $self->set($str);
16 my ($self,$str) = @_;
17 $self->{str} = $str;
20 sub str { shift->{str}; } subroutine
21 sub put { print shift->{str}; }
/openbsd-current/lib/libc/stdlib/
H A Datol.c34 atol(const char *str) argument
36 return(strtol(str, (char **)NULL, 10));
H A Datoll.c34 atoll(const char *str) argument
36 return(strtoll(str, (char **)NULL, 10));
H A Datoi.c34 atoi(const char *str) argument
36 return((int)strtol(str, (char **)NULL, 10));
/openbsd-current/gnu/usr.bin/perl/t/lib/
H A DCname.pm8 my $str = shift;
9 if ( $str eq 'EVIL' ) {
16 if ( $str eq 'EMPTY-STR') {
19 if ( $str eq 'NULL') {
22 if ( $str eq 'LONG-STR') {
27 if ( $str eq 'TOO-LONG-STR') {
31 return $str;
/openbsd-current/lib/libc/string/
H A Dstrlen.c35 strlen(const char *str) argument
39 for (s = str; *s; ++s)
41 return (s - str);
/openbsd-current/sys/lib/libkern/
H A Dstrlen.c35 strlen(const char *str) argument
39 for (s = str; *s; ++s)
41 return (s - str);
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.arch/
H A Di386-unwind.c23 #define SYMBOL(str) SYMBOL_PREFIX #str
25 #define SYMBOL(str) #str
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dd.c2 str2llu (str)
3 char *str;
8 acc = *str++ - '0';
11 d = *str++;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dinclude3.c3 #define PREINC_XSTR(str) #str
4 #define PREINC_STR(str) PREINC_XSTR(str)
/openbsd-current/sys/dev/pci/drm/amd/display/dc/dml/
H A Ddml_logger.h33 #define dml_print(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
34 #define DTRACE(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
/openbsd-current/usr.sbin/crunchgen/
H A Dmangle.h30 void mangle_str(char *str);
/openbsd-current/gnu/gcc/libstdc++-v3/libsupc++/
H A Dpure.cc37 # define writestr(str) write(2, str, sizeof(str) - 1)
45 # define writestr(str) std::fputs(str, stderr)
48 # define writestr(str) /* Empty */
/openbsd-current/gnu/usr.bin/perl/t/uni/
H A Dtr_utf8.t25 my $str;
27 $str = $hiragana; $str =~ tr/���-���/���-���/;
28 is($str, $katakana, "tr// # hiragana -> katakana");
29 $str = $katakana; $str =~ tr/���-���/���-���/;
30 is($str, $hiragana, "tr// # hiragana -> katakana");
32 $str = $hiragana; eval qq(\$str =~ tr/���-���/���-���/);
33 is($str,
[all...]
/openbsd-current/regress/usr.bin/ssh/unittests/misc/
H A Dtest_strdelim.c25 char *orig, *str, *cp; local
27 #define START_STRING(x) orig = str = xstrdup(x)
32 cp = strdelim(&str);
34 cp = strdelim(&str);
41 cp = strdelim(&str);
43 ASSERT_STRING_EQ(str, "");
49 cp = strdelim(&str);
51 cp = strdelim(&str);
53 ASSERT_PTR_EQ(str, NULL);
59 cp = strdelim(&str);
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dnumify.t38 my ($str, $num, $warn) = @$_;
41 cmp_ok($str + 0, '==', $num, "numifying '$str'");
46 "numifying '$str' trigger a warning");
50 "numifying '$str' does not trigger warnings");

Completed in 206 milliseconds

1234567891011>>