Lines Matching refs:bitmask

56723 function baseIsEqual(value, other, customizer, bitmask, stack) {
56732 return baseIsEqualDeep(value, other, baseIsEqual, customizer, bitmask, stack);
56751 function baseIsEqualDeep(object, other, equalFunc, customizer, bitmask, stack) {
56773 …ect, other, equalFunc, customizer, bitmask, stack) : equalByTag(object, other, objTag, equalFunc, …
56776 if (!(bitmask & PARTIAL_COMPARE_FLAG)) {
56784 return equalFunc(objUnwrapped, othUnwrapped, customizer, bitmask, stack);
56793 return equalObjects(object, other, equalFunc, customizer, bitmask, stack);
57113 function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
57114 var isPartial = bitmask & PARTIAL_COMPARE_FLAG,
57131 seen = bitmask & UNORDERED_COMPARE_FLAG ? new SetCache() : undefined;
57155 …thIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, customizer, bitmask, stack))) {
57162 …} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, bitmask, stack))) {
57192 function equalByTag(object, other, tag, equalFunc, customizer, bitmask, stack) {
57230 var isPartial = bitmask & PARTIAL_COMPARE_FLAG;
57244bitmask |= UNORDERED_COMPARE_FLAG; // Recursively compare objects (susceptible to call stack limit…
57247 … var result = equalArrays(convert(object), convert(other), equalFunc, customizer, bitmask, stack);
57276 function equalObjects(object, other, equalFunc, customizer, bitmask, stack) {
57277 var isPartial = bitmask & PARTIAL_COMPARE_FLAG,
57319 …ned ? objValue === othValue || equalFunc(objValue, othValue, customizer, bitmask, stack) : compare…
59253 function baseIsEqual(value, other, bitmask, customizer, stack) {
59262 return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);
59280 function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
59302 …ject) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, oth…
59305 if (!(bitmask & COMPARE_PARTIAL_FLAG)) {
59313 return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);
59322 return equalObjects(object, other, bitmask, customizer, equalFunc, stack);
59393 function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
59394 var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
59411 seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined;
59435 …en, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stac…
59442 …} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
59471 function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
59509 var isPartial = bitmask & COMPARE_PARTIAL_FLAG;
59523bitmask |= COMPARE_UNORDERED_FLAG; // Recursively compare objects (susceptible to call stack limit…
59526 … var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
59554 function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
59555 var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
59597 …if (!(compared === undefined ? objValue === othValue || equalFunc(objValue, othValue, bitmask, cus…