Lines Matching refs:smallerPtr
466 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_insertBt1() local
467 U32* largerPtr = smallerPtr + 1; in ZSTD_insertBt1()
499 *smallerPtr = matchIndex; in ZSTD_insertBt1()
500 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1()
501 smallerPtr = nextPtr+1; /* new "smaller" => larger of match */ in ZSTD_insertBt1()
539 *smallerPtr = matchIndex; /* update smaller idx */ in ZSTD_insertBt1()
541 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1()
542 …smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller t… in ZSTD_insertBt1()
553 *smallerPtr = *largerPtr = 0; in ZSTD_insertBt1()
622 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_insertBtAndGetAllMatches() local
762 *smallerPtr = matchIndex; /* update smaller idx */ in ZSTD_insertBtAndGetAllMatches()
764 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBtAndGetAllMatches()
765 …smallerPtr = nextPtr+1; /* new candidate => larger than match, which was smaller tha… in ZSTD_insertBtAndGetAllMatches()
775 *smallerPtr = *largerPtr = 0; in ZSTD_insertBtAndGetAllMatches()