Lines Matching refs:s

129   var s = encode_utf8(pass);
132 if (s.length == 1) {
133 s += s;
137 for (i = 0; i < s.length; i += 2) {
138 md5_update(s.charCodeAt(i));
144 for (i = 1; i < s.length; i += 2) {
145 md5_update(s.charCodeAt(i));
1273 function LEcuyer(s) { argument
1277 this.gen1 = this.gen2 = (s & 0x7FFFFFFF);
1457 function jcFF(a, b, c, d, x, s, ac) { argument
1459 a = rotateLeft(a, s);
1464 function jcGG(a, b, c, d, x, s, ac) { argument
1466 a = rotateLeft(a, s);
1471 function jcHH(a, b, c, d, x, s, ac) { argument
1473 a = rotateLeft(a, s);
1478 function jcII(a, b, c, d, x, s, ac) { argument
1480 a = rotateLeft(a, s);
1680 function disarm_hex(s) { argument
1685 if ((i = s.indexOf(hexSentinel)) >= 0) {
1686 s = s.substring(i + hexSentinel.length, s.length);
1688 if ((i = s.indexOf(hexEndSentinel)) >= 0) {
1689 s = s.substring(0, i);
1694 for (i = 0; i < s.length; i++) {
1695 var c = s.charAt(i);
1801 function disarm_codegroup(s) { argument
1805 dcgs = s;
1939 function disarm_base64(s) { argument
1944 if ((j = s.indexOf(base64sent)) >= 0) {
1945 s = s.substring(j + base64sent.length, s.length);
1947 if ((j = s.indexOf(base64esent)) >= 0) {
1948 s = s.substring(0, j);
1954 while (i < s.length) {
1955 if (base64code.indexOf(s.charAt(i)) != -1) {
1965 while (i < s.length) {
1967 if (i >= s.length) {
1974 c = base64code.indexOf(s.charAt(i));
1977 } else if (s.charAt(i) == "=") {
1980 } else if (s.substring(i, i + base64esent.length) == base64esent) {
1983 i = s.length;
2016 function unicode_to_utf8(s) { argument
2018 for (var n = 0; n < s.length; n++) {
2019 var c = s.charCodeAt(n);
2044 var s = "", i = 0, b1, b2;
2049 s += String.fromCharCode(b1);
2053 s += String.fromCharCode(((b1 & 0x1F) << 6) | (b2 & 0x3F));
2058 s += String.fromCharCode(((b1 & 0xF) << 12) |
2063 return s;
2082 function encode_utf8(s) { argument
2085 for (i = 0; i < s.length; i++) {
2086 if ((s.charCodeAt(i) == 0x9D) || (s.charCodeAt(i) > 0xFF)) {
2092 return s;
2094 return String.fromCharCode(0x9D) + unicode_to_utf8(s);
2106 function decode_utf8(s) { argument
2107 if ((s.length > 0) && (s.charCodeAt(0) == 0x9D)) {
2108 return utf8_to_unicode(s.substring(1));
2110 return s;