Lines Matching refs:b

448 	Buffer.isBuffer = function isBuffer (b) {
449 return !!(b != null && b._isBuffer)
452 Buffer.compare = function compare (a, b) {
453 if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {
457 if (a === b) return 0
460 var y = b.length
465 if (a[i] !== b[i]) break
472 y = b[i]
615 Buffer.prototype.equals = function equals (b) {
616 if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
617 if (this === b) return true
618 return Buffer.compare(this, b) === 0
631 Buffer.prototype.compare = function compare (b) {
632 if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
633 if (this === b) return 0
634 return Buffer.compare(this, b)
13639 var b = 1000;
13640 var c = (a+b)/2;
13641 while(Math.abs(a - b) > 1){
13647 b = c;
13648 c = (a+b)/2;
13652 c = (a+b)/2;
15291 var b = GF256_MAP[(i + (prevpoly[j-1] || 0)) % 255];
15292 poly.push(GF256_INVMAP[a ^ b]);
21410 function put_byte(s, b) {
21411 s.pending_buf[s.pending++] = b;
21420 function putShortMSB(s, b) {
21423 s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
21424 s.pending_buf[s.pending++] = b & 0xff;
27508 function objEquiv(a, b) {
27509 if (util.isNullOrUndefined(a) || util.isNullOrUndefined(b))
27512 if (a.prototype !== b.prototype) return false;
27514 if (util.isPrimitive(a) || util.isPrimitive(b)) {
27515 return a === b;
27518 bIsArgs = isArguments(b);
27523 b = pSlice.call(b);
27524 return _deepEqual(a, b);
27527 kb = objectKeys(b),
27545 if (!_deepEqual(a[key], b[key])) return false;
29308 codes = Object.keys(map).sort(function(a, b) {
29309 return a - b;
30415 codes = Object.keys(charmap).sort(function(a, b) {
30416 return a - b;
31557 newIDs = Object.keys(new2old).sort(function(a, b) {
31558 return a - b;