Searched refs:res (Results 1 - 25 of 2813) sorted by relevance

1234567891011>>

/macosx-10.10.1/Heimdal-398.1.2/appl/login/
H A Dtty.c45 char *res = tty; local
47 if (strncmp (res, _PATH_DEV, strlen(_PATH_DEV)) == 0)
48 res += strlen(_PATH_DEV);
49 if (strncmp (res, "pty/", 4) == 0)
50 res += 4;
51 if (strncmp (res, "ptym/", 5) == 0)
52 res += 5;
53 return res;
63 char *res = tty; local
65 if (strncmp (res, "pt
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Dinit.c60 int res;
124 res = TrfInit_Unstack (interp);
126 if (res != TCL_OK)
127 return res;
129 res = TrfInit_Info (interp);
131 if (res != TCL_OK)
132 return res;
135 res = TrfInit_Binio (interp);
137 if (res != TCL_OK)
138 return res;
59 int res; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Djoke.pl10 my $res = SOAP::Lite
16 die $res->faultstring if $res->fault;
18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
19 print wrap("\t", '', split( /\n/, $res->result->{text})), "\n";
/macosx-10.10.1/ruby-106/ruby/sample/webrick/
H A Dhello.rb4 def do_GET(req, res)
5 res["content-type"] = "text/plain"
6 res.body = "Hello, world.\n"
H A Dhello.cgi5 def do_GET(req, res)
6 res["content-type"] = "text/plain"
7 res.body = "Hello, world.\n"
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dcarbon_delete.c31 int res = __delete(path); local
32 if (res == 0) __inc_remove_counter();
33 return res;
H A Drename.c30 int res = __rename(old, new); local
31 if (res == 0) __inc_remove_counter();
32 return res;
H A Drmdir.c30 int res = __rmdir(path); local
31 if (res == 0) __inc_remove_counter();
32 return res;
H A Dunlink.c30 int res = __unlink(path); local
31 if (res == 0) __inc_remove_counter();
32 return res;
H A Drenameat.c30 int res = __renameat(oldfd, old, newfd, new); local
31 if (res == 0) __inc_remove_counter();
32 return res;
/macosx-10.10.1/libxml2-26/libxml2/python/tests/
H A Dxpathns.py11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print(res)
19 del res
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dxpathns.py11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print res
19 del res
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-96526-003.js53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101 res
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dcopyhostent.c45 struct hostent *res; local
49 res = malloc (sizeof (*res));
50 if (res == NULL)
52 res->h_name = NULL;
53 res->h_aliases = NULL;
54 res->h_addrtype = h->h_addrtype;
55 res->h_length = h->h_length;
56 res->h_addr_list = NULL;
57 res
[all...]
/macosx-10.10.1/ruby-106/ruby/test/net/smtp/
H A Dtest_response.rb8 res = Response.parse("250-ubuntu-desktop\n250-PIPELINING\n250-SIZE 10240000\n250-VRFY\n250-ETRN\n250-STARTTLS\n250-ENHANCEDSTATUSCODES\n250 DSN\n")
10 capabilities = res.capabilities
17 res = Response.parse("250-ubuntu-desktop\n250-PIPELINING\n250 DSN\n")
18 assert_equal [], res.capabilities['PIPELINING']
22 res = Response.parse("250-ubuntu-desktop\n250-SIZE 1234\n250 DSN\n")
23 assert_equal ['1234'], res.capabilities['SIZE']
27 res = Response.parse("250-ubuntu-desktop\n250-SIZE 1 2 3\n250 DSN\n")
28 assert_equal %w{1 2 3}, res.capabilities['SIZE']
32 res = Response.parse("badstring")
33 assert_equal({}, res
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_addmod.c22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, c, d);
35 return res;
H A Dbn_mp_mulmod.c21 int res; local
24 if ((res = mp_init (&t)) != MP_OKAY) {
25 return res;
28 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
30 return res;
32 res = mp_mod (&t, c, d);
34 return res;
H A Dbn_mp_sqrmod.c22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, b, c);
35 return res;
H A Dbn_mp_submod.c22 int res; local
26 if ((res = mp_init (&t)) != MP_OKAY) {
27 return res;
30 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
32 return res;
34 res = mp_mod (&t, c, d);
36 return res;
H A Dbn_mp_get_int.c22 unsigned long res; local
32 res = DIGIT(a,i);
35 res = (res << DIGIT_BIT) | DIGIT(a,i);
39 return res & 0xFFFFFFFFUL;
H A Dbn_mp_init_copy.c21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 return res;
H A Dbn_mp_to_signed_bin.c21 int res; local
23 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
24 return res;
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfrm_cursor.c54 int res; local
59 res = E_BAD_ARGUMENT;
63 res = E_NOT_POSTED;
65 res = _nc_Position_Form_Cursor(form);
67 RETURN(res);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dlib_beep.c58 int res = ERR; local
64 res = ERR;
67 res = putp(bell);
71 res = putp(flash_screen);
75 returnCode(res);
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_init_copy.c21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 return res;

Completed in 111 milliseconds

1234567891011>>