HomeSort by relevance Sort by last modified time
    Searched full:pupdate (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 235 const vp8_prob *Pupdate = update_mvc->prob;
326 update(w, is_short_ct, Pcur + mvpis_short, Pnew[mvpis_short], *Pupdate++, updated);
328 update(w, sign_ct, Pcur + MVPsign, Pnew[MVPsign], *Pupdate++, updated);
338 update(w, short_bct[j], cur_p + j, new_p[j], *Pupdate++, updated);
351 update(w, bit_ct[j], cur_p + j, new_p[j], *Pupdate++, updated);
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 289 /* Doclist multi-tool. Pass pUpdate==NULL to delete the indicated docid;
290 * otherwise pUpdate, which must contain only the single docid [iDocid], is
292 static int docListUpdate(DocList *d, sqlite_int64 iDocid, DocList *pUpdate){
297 if( pUpdate!=NULL ){
298 assert( d->iType==pUpdate->iType);
299 assert( iDocid==firstDocid(pUpdate) );
317 if( pUpdate!=NULL ){
319 docListAddEndPos(pUpdate);
321 d->pData = realloc(d->pData, d->nData+pUpdate->nData);
324 memmove(p+pUpdate->nData, p, docListEnd(d) - p)
    [all...]
fts1.c 622 /* Insert/update pUpdate into the doclist. */
623 static void docListUpdate(DocList *d, DocList *pUpdate){
626 assert( d!=NULL && pUpdate!=NULL );
627 assert( d->iType==pUpdate->iType);
630 docListSpliceElement(&reader, firstDocid(pUpdate),
631 pUpdate->pData, pUpdate->nData);
634 /* Propagate elements from pUpdate to pAcc, overwriting elements with
637 static void docListAccumulate(DocList *pAcc, DocList *pUpdate){
642 if( pUpdate==NULL || pUpdate->nData==0 ) return
    [all...]

Completed in 458 milliseconds