Lines Matching refs:BASE
17 // in addition to the base release version number,
20 // 4. retain our contact information in regard to use of the base
1034 },absolutePath:function (relative, base) {
1036 if (base === undefined) base = FS.currentPath;
1037 if (relative && relative[0] == '/') base = '';
1038 var full = base + '/' + relative;
2233 }function __parseInt(str, endptr, base, min, max, bits, unsign) {
2244 // Find base.
2245 var finalBase = base;
2302 }function _strtol(str, endptr, base) {
2303 return __parseInt(str, endptr, base, -2147483648, 2147483647, 32); // LONG_MIN, LONG_MAX.
3300 function _qsort(base, num, size, cmp) {
3310 return comparator(base+a*size, base+b*size);
3314 _memcpy(temp, base, num*size);
3317 _memcpy(base+i*size, temp+keys[i]*size, size);
4095 var BASE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
4106 ret += BASE[curr];
4110 ret += BASE[(leftchar&3) << 4];
4113 ret += BASE[(leftchar&0xf) << 2];