/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaEncoder.cs | 501 UInt32 Backward(out UInt32 backRes, UInt32 cur)
503 _optimumEndIndex = cur;
504 UInt32 posMem = _optimum[cur].PosPrev;
505 UInt32 backMem = _optimum[cur].BackPrev;
508 if (_optimum[cur].Prev1IsChar)
512 if (_optimum[cur].Prev2)
515 _optimum[posMem - 1].PosPrev = _optimum[cur].PosPrev2;
516 _optimum[posMem - 1].BackPrev = _optimum[cur].BackPrev2;
526 _optimum[posPrev].PosPrev = cur;
527 cur = posPrev; [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl_thread.cc | 384 Shadow cur(fast_state); 385 cur.SetWrite(is_write); 386 cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog); 388 shadow_mem, cur); 395 Shadow cur(fast_state); 396 cur.SetWrite(is_write); 397 cur.SetAddr0AndSizeLog(0, kAccessSizeLog); 399 shadow_mem, cur); 405 Shadow cur(fast_state); 406 cur.SetWrite(is_write) [all...] |
/external/libxml2/include/libxml/ |
xpointer.h | 81 xmlXPtrLocationSetAdd (xmlLocationSetPtr cur, 86 xmlXPtrLocationSetDel (xmlLocationSetPtr cur, 89 xmlXPtrLocationSetRemove (xmlLocationSetPtr cur,
|
/external/opencv3/modules/imgcodecs/src/ |
rgbe.cpp | 270 int cur, beg_run, run_count, old_run_count, nonrun_count; local 273 cur = 0; 274 while(cur < numbytes) { 275 beg_run = cur; 287 if ((old_run_count > 1)&&(old_run_count == beg_run - cur)) { 289 buf[1] = data[cur]; 292 cur = beg_run; 295 while(cur < beg_run) { 296 nonrun_count = beg_run - cur; 302 if (fwrite(&data[cur],sizeof(data[0])*nonrun_count,1,fp) < 1 [all...] |
/external/skia/src/images/ |
SkMovie_gif.cpp | 307 static void disposeFrameIfNeeded(SkBitmap* bm, const SavedImage* cur, const SavedImage* next, 314 getTransparencyAndDisposalMethod(cur, &curTrans, &curDisposal); 319 && (nextTrans || !checkIfCover(next, cur))) { 324 fillRect(bm, cur->ImageDesc.Left, cur->ImageDesc.Top, 325 cur->ImageDesc.Width, cur->ImageDesc.Height, 402 const SavedImage* cur = &fGIF->SavedImages[i]; local 406 getTransparencyAndDisposalMethod(cur, &trans, &disposal); 418 disposeFrameIfNeeded(bm, prev, cur, &fBackup, fPaintingColor) [all...] |
/system/extras/tests/workloads/ |
chromefling.sh | 87 cur=1 98 while [ $cur -le $iterations ] 114 ${ADB}atrace --async_dump -z -c -b 16000 freq gfx view idle sched > trace.${cur}.out 144 ((cur=cur+1))
|
recentfling.sh | 92 cur=1 104 while [ $cur -le $iterations ] 120 ${ADB}atrace --async_dump -z -c -b 16000 freq gfx view idle sched > trace.${cur}.out 147 ((cur=cur+1))
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_suppressions.cc | 84 Suppression &cur = suppressions_[i]; local 85 if (0 == internal_strcmp(cur.type, type) && TemplateMatch(cur.templ, str)) { 86 *s = &cur;
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/ |
tellp.pass.cpp | 35 assert(way == std::ios_base::cur);
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cid/ |
cidload.c | 333 FT_Byte* cur = base; local 334 FT_Byte* limit = cur + size; 342 parser->root.cursor = cur; 351 for ( ; cur < newlimit; cur++ ) 353 if ( *cur == '%' && 354 ft_strncmp( (char*)cur, "%ADOBeginFontDict", 17 ) == 0 ) 363 cur = parser->root.cursor; 365 if ( cur >= limit ) 373 if ( *cur == '/' && cur + 2 < limit [all...] |
/external/libjpeg-turbo/ |
jquant1.c | 158 int row_index; /* cur row's vertical index in dither matrix */ 616 register LOCFSERROR cur; /* current error or pixel value */ local 617 LOCFSERROR belowerr; /* error for pixel below cur */ 659 cur = 0; 664 /* cur holds the error propagated from the previous pixel on the 672 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4); 677 cur += GETJSAMPLE(*input_ptr); 678 cur = GETJSAMPLE(range_limit[cur]); [all...] |
/external/lzma/C/ |
XzDec.c | 731 UInt32 cur = p->blockHeaderSize - p->pos;
local 732 if (cur > srcRem)
733 cur = (UInt32)srcRem;
734 memcpy(p->buf + p->pos, src, cur);
735 p->pos += cur;
736 (*srcLen) += cur;
737 src += cur;
764 UInt32 cur = checkSize - p->pos;
local 765 if (cur != 0)
767 if (cur > srcRem) 798 UInt64 cur = p->indexSize - p->indexPos; local 850 UInt32 cur = XZ_STREAM_FOOTER_SIZE - p->pos; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.h | 91 fs_bblock *cur; member in class:fs_cfg
|
/external/opencv3/3rdparty/libjpeg/ |
jquant1.c | 160 int row_index; /* cur row's vertical index in dither matrix */ 616 register LOCFSERROR cur; /* current error or pixel value */ local 617 LOCFSERROR belowerr; /* error for pixel below cur */ 660 cur = 0; 665 /* cur holds the error propagated from the previous pixel on the 673 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4); 678 cur += GETJSAMPLE(*input_ptr); 679 cur = GETJSAMPLE(range_limit[cur]); [all...] |
/external/pdfium/third_party/freetype/src/cid/ |
cidload.c | 307 FT_Byte* cur = base; local 308 FT_Byte* limit = cur + size; 316 parser->root.cursor = cur; 325 for ( ; cur < newlimit; cur++ ) 327 if ( *cur == '%' && 328 ft_strncmp( (char*)cur, "%ADOBeginFontDict", 17 ) == 0 ) 337 cur = parser->root.cursor; 339 if ( cur >= limit ) 347 if ( *cur == '/' && cur + 2 < limit [all...] |
/frameworks/base/core/java/android/service/voice/ |
VoiceInteractionService.java | 143 String cur = Settings.Secure.getString(context.getContentResolver(), local 145 if (cur == null || cur.isEmpty()) { 148 ComponentName curComp = ComponentName.unflattenFromString(cur);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/ |
tellp.pass.cpp | 35 assert(way == std::ios_base::cur);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/ |
test_associate.py | 147 self.cur = None 155 if self.cur: 156 self.cur.close() 157 self.cur = None 243 self.cur = self.getDB().cursor(txn) 245 rec = self.cur.first() 254 rec = getattr(self.cur, "next")() 260 self.cur = secDB.cursor(txn) 264 vals = self.cur.pget('Unknown', flags=db.DB_LAST) 271 vals = self.cur.pget('Unknown', data='wrong value', flags=db.DB_GET_BOTH [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/ |
test_associate.py | 147 self.cur = None 155 if self.cur: 156 self.cur.close() 157 self.cur = None 243 self.cur = self.getDB().cursor(txn) 245 rec = self.cur.first() 254 rec = getattr(self.cur, "next")() 260 self.cur = secDB.cursor(txn) 264 vals = self.cur.pget('Unknown', flags=db.DB_LAST) 271 vals = self.cur.pget('Unknown', data='wrong value', flags=db.DB_GET_BOTH [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_associate.py | 147 self.cur = None 155 if self.cur: 156 self.cur.close() 157 self.cur = None 243 self.cur = self.getDB().cursor(txn) 245 rec = self.cur.first() 254 rec = getattr(self.cur, "next")() 260 self.cur = secDB.cursor(txn) 264 vals = self.cur.pget('Unknown', flags=db.DB_LAST) 271 vals = self.cur.pget('Unknown', data='wrong value', flags=db.DB_GET_BOTH [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_associate.py | 147 self.cur = None 155 if self.cur: 156 self.cur.close() 157 self.cur = None 243 self.cur = self.getDB().cursor(txn) 245 rec = self.cur.first() 254 rec = getattr(self.cur, "next")() 260 self.cur = secDB.cursor(txn) 264 vals = self.cur.pget('Unknown', flags=db.DB_LAST) 271 vals = self.cur.pget('Unknown', data='wrong value', flags=db.DB_GET_BOTH [all...] |
/system/netd/server/ |
MDnsSdListener.cpp | 687 Element *cur = *prevPtr; local 688 *prevPtr = (cur)->mNext; // change our notion of this element and don't advance 689 delete cur; 715 Element *cur = mHead; local 716 while (cur != NULL) { 717 if (cur->mId == id) { 718 DNSServiceRef *result = &(cur->mRef); 722 cur = cur->mNext; 731 Element *cur = mHead local 751 Element *cur; local [all...] |
/art/compiler/utils/ |
assembler.h | 139 SlowPath* cur = slow_path_; local 140 for ( ; cur->next_ != nullptr ; cur = cur->next_) {} 141 cur->next_ = slowpath; 146 SlowPath* cur = slow_path_; local 149 for ( ; cur != nullptr ; cur = next) { 150 cur->Emit(sp_asm); 151 next = cur->next_ [all...] |
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
ev_timers.c | 250 if (ctx->cur != NULL && 251 ctx->cur->type == Timer && 252 ctx->cur->u.timer.this == del) { 478 evTimer *cur = what; local 481 cur = what; 484 cur->func, cur->uap, 485 (long)cur->due.tv_sec, cur->due.tv_nsec, 486 (long)cur->inter.tv_sec, cur->inter.tv_nsec) [all...] |
/external/libxml2/ |
xmlregexp.c | 53 #define NEXT ctxt->cur++ 54 #define CUR (*(ctxt->cur)) 55 #define NXT(index) (ctxt->cur[index]) 58 #define NEXTL(l) ctxt->cur += l; 62 * when it's guaranteed that cur is not at the beginning of ctxt->string! 64 #define PREV (ctxt->cur[-1]) 244 xmlChar *cur; member in struct:_xmlAutomata 405 idx = ctxt->cur - ctxt->string; 694 ret->cur = ret->string 4597 int cur; local 4627 int cur; local 4844 int cur; local 4988 int cur, len; local 5192 int cur; local 6346 const char *cur; member in struct:_xmlExpCtxt [all...] |