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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 334 new_comps = []
338 if (comp != '..' or (not initial_slashes and not new_comps) or
339 (new_comps and new_comps[-1] == '..')):
340 new_comps.append(comp)
341 elif new_comps:
342 new_comps.pop()
343 comps = new_comps
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 334 new_comps = []
338 if (comp != '..' or (not initial_slashes and not new_comps) or
339 (new_comps and new_comps[-1] == '..')):
340 new_comps.append(comp)
341 elif new_comps:
342 new_comps.pop()
343 comps = new_comps
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
jp2.c 844 opj_image_comp_t *old_comps, *new_comps; local
860 new_comps = (opj_image_comp_t*)
869 new_comps[i] = old_comps[cmp];
872 new_comps[pcol] = old_comps[cmp];
876 new_comps[i].data = (OPJ_INT32*)
878 new_comps[i].prec = channel_size[i];
879 new_comps[i].sgnd = channel_sign[i];
889 max = new_comps[pcol].w * new_comps[pcol].h;
894 dst = new_comps[i].data
    [all...]

Completed in 1285 milliseconds