HomeSort by relevance Sort by last modified time
    Searched full:istop (Results 1 - 25 of 39) sorted by null

1 2

  /external/eigen/Eigen/src/SparseLU/
SparseLU_column_dfs.h 117 Index fsupc, jptr, jm1ptr, ito, ifrom, istop; local
151 istop = ito + jptr - jm1ptr;
152 xprune(jcolm1) = istop; // intialize xprune(jcol-1)
153 glu.xlsub(jcol) = istop;
157 nextl = ito; // = istop + length(jcol)
  /external/skia/src/core/
SkScan_Antihair.cpp 336 int istart, istop;
352 istop = SkFDot6Ceil(x1);
364 SkASSERT(istop > istart);
365 if (istop - istart == 1) {
376 if (istart >= clip->fRight || istop <= clip->fLeft) {
383 if (istop - istart == 1) {
389 if (istop > clip->fRight) {
390 istop = clip->fRight;
394 SkASSERT(istart <= istop);
395 if (istart == istop) {
    [all...]
  /external/opencv3/3rdparty/libpng/
pngtrans.c 221 png_size_t istop = row_info->rowbytes; local
223 for (i = 0; i < istop; i++)
235 png_size_t istop = row_info->rowbytes; local
237 for (i = 0; i < istop; i += 2)
250 png_size_t istop = row_info->rowbytes; local
252 for (i = 0; i < istop; i += 4)
275 png_uint_32 istop= row_info->width * row_info->channels; local
277 for (i = 0; i < istop; i++, rp += 2)
pngwtran.c 325 png_uint_32 istop = channels * row_info->width; local
327 for (i = 0; i < istop; i++, bp++)
352 png_uint_32 istop = channels * row_info->width; local
354 for (bp = row, i = 0; i < istop; i++)
pngpread.c 689 png_size_t i, istop; local
693 istop = png_ptr->save_buffer_size;
696 i < istop; i++, sp++, dp++)
    [all...]
pngrutil.c 207 png_size_t istop = png_ptr->zbuf_size; local
209 for (i = (png_size_t)skip; i > istop; i -= istop)
3510 png_size_t istop = row_info->rowbytes; local
3528 png_size_t istop = row_info->rowbytes; local
3547 png_size_t istop = row_info->rowbytes - bpp; local
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngtrans.c 269 png_size_t istop = row_info->rowbytes; local
271 for (i = 0; i < istop; i++)
283 png_size_t istop = row_info->rowbytes; local
285 for (i = 0; i < istop; i += 2)
298 png_size_t istop = row_info->rowbytes; local
300 for (i = 0; i < istop; i += 4)
323 png_uint_32 istop= row_info->width * row_info->channels; local
325 for (i = 0; i < istop; i++, rp += 2)
pngwtran.c 326 png_uint_32 istop = channels * row_info->width; local
328 for (i = 0; i < istop; i++, bp++)
355 png_uint_32 istop = channels * row_info->width; local
357 for (bp = row, i = 0; i < istop; i++)
pngpread.c 664 png_size_t i, istop; local
668 istop = png_ptr->save_buffer_size;
670 i < istop; i++, sp++, dp++)
    [all...]
  /external/libpng/
pngwtran.c 253 png_uint_32 istop = channels * row_info->width; local
255 for (i = 0; i < istop; i++, bp++)
282 png_uint_32 istop = channels * row_info->width; local
284 for (bp = row, i = 0; i < istop; i++)
pngtrans.c 272 png_size_t istop = row_info->rowbytes; local
274 for (i = 0; i < istop; i++)
286 png_size_t istop = row_info->rowbytes; local
288 for (i = 0; i < istop; i += 2)
301 png_size_t istop = row_info->rowbytes; local
303 for (i = 0; i < istop; i += 4)
326 png_uint_32 istop= row_info->width * row_info->channels; local
328 for (i = 0; i < istop; i++, rp += 2)
pngpread.c 467 png_size_t i, istop; local
471 istop = png_ptr->save_buffer_size;
473 i < istop; i++, sp++, dp++)
pngrtran.c 1178 int i, istop = png_ptr->num_trans; local
1841 int istop = (int)png_ptr->num_trans; local
1880 int istop = png_ptr->num_palette; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ResizeGesture.java 162 int newH = Math.abs(b.h + (direction.isTop() ? -deltaY : deltaY));
195 if (direction.isTop()) {
SelectionHandle.java 75 boolean isTop() {
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 172 bool isTop() const {
HexagonMachineScheduler.cpp 316 if (isTop())
334 if (!isTop() && SU->isCall) {
368 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
random.py 195 istop = int(stop)
196 if istop != stop:
198 width = istop - istart
203 # = -2 and istop = 0. Then the guts would be in
217 raise ValueError, "empty range for randrange() (%d,%d, %d)" % (istart, istop, width)
  /prebuilts/gdb/linux-x86/lib/python2.7/
random.py 195 istop = int(stop)
196 if istop != stop:
198 width = istop - istart
203 # = -2 and istop = 0. Then the guts would be in
217 raise ValueError, "empty range for randrange() (%d,%d, %d)" % (istart, istop, width)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 195 istop = int(stop)
196 if istop != stop:
198 width = istop - istart
203 # = -2 and istop = 0. Then the guts would be in
217 raise ValueError, "empty range for randrange() (%d,%d, %d)" % (istart, istop, width)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 195 istop = int(stop)
196 if istop != stop:
198 width = istop - istart
203 # = -2 and istop = 0. Then the guts would be in
217 raise ValueError, "empty range for randrange() (%d,%d, %d)" % (istart, istop, width)
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 656 bool isTop() const {
681 return isTop() ? SU->getHeight() : SU->getDepth();
908 void reschedulePhysRegCopies(SUnit *SU, bool isTop);
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 487 bool isTop = face >= 3;
491 int curH = isTop ? (height-curY) : (height / 2);
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 497 bool isTop = face >= 3;
501 int curH = isTop ? (height-curY) : (height / 2);

Completed in 584 milliseconds

1 2