HomeSort by relevance Sort by last modified time
    Searched defs:str (Results 1 - 25 of 1365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /webstack/webstack/branches/CoolStack12Rtm/src/gmp-4.2.1/mpz/
dump.c 35 char *str; local
37 str = mpz_get_str (0, 10, u);
38 printf ("%s\n", str);
39 (*__gmp_free_func) (str, strlen (str) + 1);
  /webstack/webstack/trunk/src/gmp-4.2.1/mpz/
dump.c 35 char *str; local
37 str = mpz_get_str (0, 10, u);
38 printf ("%s\n", str);
39 (*__gmp_free_func) (str, strlen (str) + 1);
  /webstack/php-experiment/php-5.2.9RC3/ext/ncurses/
ncurses.php 5 $str = $function($module); variable
7 $str = "Module $module is not compiled into PHP"; variable
9 echo "$str\n";
  /webstack/webstack/branches/CoolStack12Rtm/src/gettext-0.16/gettext-runtime/intl/
hash-string.c 35 const char *str = str_param; local
39 while (*str != '\0')
42 hval += (unsigned char) *str++;
  /webstack/webstack/branches/CoolStack12Rtm/src/gmp-4.2.1/mpf/
dump.c 36 char *str; local
38 str = mpf_get_str (0, &exp, 10, 0, u);
39 if (str[0] == '-')
40 printf ("-0.%se%ld\n", str + 1, exp);
42 printf ("0.%se%ld\n", str, exp);
43 (*__gmp_free_func) (str, strlen (str) + 1);
  /webstack/webstack/branches/CoolStack12Rtm/src/ncurses-5.5/ncurses/widechar/
lib_wunctrl.c 45 static wchar_t str[5], *sp; local
50 for (sp = str; *p;)
52 return str;
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/ncurses/
ncurses.php 5 $str = $function($module); variable
7 $str = "Module $module is not compiled into PHP"; variable
9 echo "$str\n";
  /webstack/webstack/trunk/src/gettext-0.16/gettext-runtime/intl/
hash-string.c 35 const char *str = str_param; local
39 while (*str != '\0')
42 hval += (unsigned char) *str++;
  /webstack/webstack/trunk/src/gmp-4.2.1/mpf/
dump.c 36 char *str; local
38 str = mpf_get_str (0, &exp, 10, 0, u);
39 if (str[0] == '-')
40 printf ("-0.%se%ld\n", str + 1, exp);
42 printf ("0.%se%ld\n", str, exp);
43 (*__gmp_free_func) (str, strlen (str) + 1);
  /webstack/webstack/trunk/src/ncurses-5.5/ncurses/widechar/
lib_wunctrl.c 45 static wchar_t str[5], *sp; local
50 for (sp = str; *p;)
52 return str;
  /webstack/webstack/trunk/src/php-5.2.0/ext/ncurses/
ncurses.php 5 $str = $function($module); variable
7 $str = "Module $module is not compiled into PHP"; variable
9 echo "$str\n";
  /webstack/webstack/trunk/src/php-5.2.0/ext/sockets/
sockets.php 5 $str = $function($module); variable
7 $str = "Module $module is not compiled in PHP"; variable
9 echo "$str\n";
  /webstack/webstack/trunk/src/php-5.2.4/ext/ncurses/
ncurses.php 5 $str = $function($module); variable
7 $str = "Module $module is not compiled into PHP"; variable
9 echo "$str\n";
  /webstack/php-experiment/php-5.2.9RC3/ext/skeleton/
skeleton.php 16 $str = $function($module); variable
18 $str = "Module $module is not compiled into PHP"; variable
20 echo "$str\n";
  /webstack/webstack/branches/CoolStack12Rtm/src/perl-5.8.8/ext/Encode/t/
Mod_EUCJP.pm 7 my $str = shift || qw/??????????/;
9 str => '',
11 $self->set($str);
15 my ($self,$str) = @_;
16 $self->{str} = $str;
19 sub str { shift->{str}; } subroutine
20 sub put { print shift->{str}; }
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/skeleton/
skeleton.php 16 $str = $function($module); variable
18 $str = "Module $module is not compiled into PHP"; variable
20 echo "$str\n";
  /webstack/webstack/trunk/src/perl-5.8.8/ext/Encode/t/
Mod_EUCJP.pm 7 my $str = shift || qw/??????????/;
9 str => '',
11 $self->set($str);
15 my ($self,$str) = @_;
16 $self->{str} = $str;
19 sub str { shift->{str}; } subroutine
20 sub put { print shift->{str}; }
  /webstack/webstack/trunk/src/php-5.2.0/ext/skeleton/
skeleton.php 16 $str = $function($module); variable
18 $str = "Module $module is not compiled into PHP"; variable
20 echo "$str\n";
  /webstack/webstack/trunk/src/php-5.2.4/ext/skeleton/
skeleton.php 16 $str = $function($module); variable
18 $str = "Module $module is not compiled into PHP"; variable
20 echo "$str\n";
  /webstack/php-experiment/php-5.2.9RC3/ext/bcmath/libbcmath/src/
num2str.c 47 char *str, *sptr; local
54 str = (char *) safe_emalloc (1, num->n_len + num->n_scale, 2 + signch);
56 str = (char *) safe_emalloc (1, num->n_len, 1 + signch);
57 if (str == NULL) bc_out_of_memory();
60 sptr = str;
78 return (str);
  /webstack/php-experiment/php-5.2.9RC3/ext/xmlrpc/libxmlrpc/
simplestring.h 52 char* str; /* string buf */ member in struct:_simplestring
  /webstack/webserver/src/server/ldaputil/
certmap.h 44 char *str; member in struct:__anon567
  /webstack/webserver/src/tools/httptest/
regex_string.h 41 char *str; member in class:RegexString
  /webstack/webstack/branches/CoolStack12Rtm/src/gmp-4.2.1/demos/perl/
test.pl 95 # Usage: str(x)
98 sub str { subroutine
778 ok (&$fun ($$i[0], str($$i[1])) == $$i[2]);
779 ok (&$fun (str($$i[0]), $$i[1]) == $$i[2]);
780 ok (&$fun (str($$i[0]), str($$i[1])) == $$i[2]);
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/gmp-4.2.1/mpbsd/
mout.c 36 unsigned char *str; local
58 str = (unsigned char *) TMP_ALLOC (str_size);
64 str_size = mpn_get_str (str, 10, xp, x_size);
67 str_size -= (*str == 0);
68 str += (*str == 0);
69 ASSERT (*str != 0);
73 str[i] = "0123456789"[str[i]];
74 str[str_size] = 0
    [all...]

Completed in 15107 milliseconds

1 2 3 4 5 6 7 8 91011>>