Lines Matching refs:ceb
3841 CEBuffer ceb(strsrch, status);
3877 // For targetIx > 0, this ceb.get gets a CE that is as far back in the ring buffer
3879 // for this targetIx value, so if it is non-NULL then other ceb.get calls should be OK.
3880 const CEI *firstCEI = ceb.get(targetIx);
3889 targetCEI = ceb.get(targetIx+patIx+targetIxOffset);
3926 const CEI *lastCEI = ceb.get(targetIx + targetIxOffset - 1);
3941 nextCEI = ceb.get(targetIx + targetIxOffset);
3948 nextCEI = ceb.get(targetIx + targetIxOffset);
4043 printf("Target CEs [%d .. %d]\n", ceb.firstIx, ceb.limitIx);
4044 int32_t lastToPrint = ceb.limitIx+2;
4045 for (int ii=ceb.firstIx; ii<lastToPrint; ii++) {
4046 printf("%8x@%d ", ceb.get(ii)->ce, ceb.get(ii)->srcIndex);
4107 CEBuffer ceb(strsrch, status);
4126 if (ceb.getPrevious(targetIx)->lowIndex < startIdx) {
4156 // For targetIx > limitIx, this ceb.getPrevious gets a CE that is as far back in the ring buffer
4158 // for this targetIx value, so if it is non-NULL then other ceb.getPrevious calls should be OK.
4159 const CEI *lastCEI = ceb.getPrevious(targetIx);
4171 targetCEI = ceb.getPrevious(targetIx + strsrch->pattern.PCELength - 1 - patIx + targetIxOffset);
4207 const CEI *firstCEI = ceb.getPrevious(targetIx + strsrch->pattern.PCELength - 1 + targetIxOffset);
4238 const CEI *nextCEI = ceb.getPrevious(targetIx - 1);
4294 printf("Target CEs [%d .. %d]\n", ceb.firstIx, ceb.limitIx);
4295 int32_t lastToPrint = ceb.limitIx+2;
4296 for (int ii=ceb.firstIx; ii<lastToPrint; ii++) {
4297 printf("%8x@%d ", ceb.get(ii)->ce, ceb.get(ii)->srcIndex);