Lines Matching refs:iTEnd
216658 u32 iTEnd; /* Current first byte past end of target */ local
216723 iTEnd = iTEndBE + pTarget->delta;
216724 while( iTCursor<iTEnd ){
216734 if( iTValue>=iTEnd ) return JSON_MERGE_BADTARGET;
216737 if( iTValue + nTValue + szTValue > iTEnd ) return JSON_MERGE_BADTARGET;
216749 if( iTCursor<iTEnd ){
216769 jsonBlobEdit(pTarget, iTEnd, 0, 0, szPValue+nPValue+szNew);
216771 memcpy(&pTarget->aBlob[iTEnd], &pPatch->aBlob[iPLabel], szNew);
216772 memcpy(&pTarget->aBlob[iTEnd+szNew],
216776 jsonBlobEdit(pTarget, iTEnd, 0, 0, szNew+1);
216778 memcpy(&pTarget->aBlob[iTEnd], &pPatch->aBlob[iPLabel], szNew);
216779 pTarget->aBlob[iTEnd+szNew] = 0x00;
216783 rc = jsonMergePatch(pTarget, iTEnd+szNew,pPatch,iPValue,iDepth+1);