HomeSort by relevance Sort by last modified time
    Searched refs:comps (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGen/
2004-06-18-VariableLengthArrayOfStructures.c 7 struct S comps[a]; local
8 comps[0];
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpx_opj.cpp 133 i = (int)img->comps[0].prec;
136 maxw = (int)img->comps[0].w;
137 maxh = (int)img->comps[0].h;
139 y = img->comps[0].data;
140 cb = img->comps[1].data;
141 cr = img->comps[2].data;
154 FX_Free(img->comps[0].data);
155 img->comps[0].data = d0;
156 FX_Free(img->comps[1].data);
157 img->comps[1].data = d1;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 127 comps = path.split('/')
129 while i < len(comps):
130 if comps[i] == '.':
131 del comps[i]
132 elif comps[i] == '..' and i > 0 and comps[i-1] not in ('', '..'):
133 del comps[i-1:i+1]
135 elif comps[i] == '' and i > 0 and comps[i-1] != '':
136 del comps[i
    [all...]
macpath.py 138 comps = s.split(":")
140 while i < len(comps)-1:
141 if comps[i] == "" and comps[i-1] != "":
143 del comps[i-1:i+1]
151 s = ":".join(comps)
154 if s[-1] == ":" and len(comps) > 2 and s != ":"*len(s):
ntpath.py 429 comps = path.split("\\")
431 while i < len(comps):
432 if comps[i] in ('.', ''):
433 del comps[i]
434 elif comps[i] == '..':
435 if i > 0 and comps[i-1] != '..':
436 del comps[i-1:i+1]
439 del comps[i]
445 if not prefix and not comps:
446 comps.append(dot
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 127 comps = path.split('/')
129 while i < len(comps):
130 if comps[i] == '.':
131 del comps[i]
132 elif comps[i] == '..' and i > 0 and comps[i-1] not in ('', '..'):
133 del comps[i-1:i+1]
135 elif comps[i] == '' and i > 0 and comps[i-1] != '':
136 del comps[i
    [all...]
macpath.py 138 comps = s.split(":")
140 while i < len(comps)-1:
141 if comps[i] == "" and comps[i-1] != "":
143 del comps[i-1:i+1]
151 s = ":".join(comps)
154 if s[-1] == ":" and len(comps) > 2 and s != ":"*len(s):
ntpath.py 429 comps = path.split("\\")
431 while i < len(comps):
432 if comps[i] in ('.', ''):
433 del comps[i]
434 elif comps[i] == '..':
435 if i > 0 and comps[i-1] != '..':
436 del comps[i-1:i+1]
439 del comps[i]
445 if not prefix and not comps:
446 comps.append(dot
    [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
image.c 48 image->comps = (opj_image_comp_t*)opj_calloc(1,image->numcomps * sizeof(opj_image_comp_t));
49 if(!image->comps) {
56 opj_image_comp_t *comp = &image->comps[compno];
80 if(image->comps) {
85 opj_image_comp_t *image_comp = &(image->comps[compno]);
90 opj_free(image->comps);
119 l_img_comp = p_image_header->comps;
157 if (p_image_dest->comps){
159 opj_image_comp_t *image_comp = &(p_image_dest->comps[compno]);
164 opj_free(p_image_dest->comps);
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateSet.cpp 64 int comps = outType == SkType_String || outType == SkType_DynamicString ? 1 : local
68 fValues.setCount(comps);
76 comps = fValues.count();
78 SkASSERT(fValues.count() == comps);
82 comps = 1;
85 fFieldInfo->setValue(maker, &fValues, fFieldOffset, comps, this, outType, formula.size() > 0 ? formula : to);
  /external/skia/src/animator/
SkAnimateSet.cpp 64 int comps = outType == SkType_String || outType == SkType_DynamicString ? 1 : local
68 fValues.setCount(comps);
76 comps = fValues.count();
78 SkASSERT(fValues.count() == comps);
82 comps = 1;
85 fFieldInfo->setValue(maker, &fValues, fFieldOffset, comps, this, outType, formula.size() > 0 ? formula : to);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
formats.c 1956 GLuint comps = 0; local
    [all...]
  /external/mesa3d/src/mesa/main/
formats.c 1956 GLuint comps = 0; local
    [all...]
  /external/deqp/modules/gles3/scripts/
gen-conversions.py 55 def combineVec(comps):
57 for ndx in range(len(comps[0])):
58 # for x in comps:
60 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps])
65 def combineIVec(comps):
67 for ndx in range(len(comps[0])):
68 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toInt().getScalars() for x in comps])))
71 def combineUVec(comps):
72 return [x.toUint() for x in combineIVec(comps)]
74 def combineBVec(comps)
    [all...]
  /external/deqp/modules/gles2/scripts/
gen-conversions.py 55 def combineVec(comps):
57 for ndx in range(len(comps[0])):
58 # for x in comps:
60 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps])
65 def combineIVec(comps):
67 for ndx in range(len(comps[0])):
68 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toInt().getScalars() for x in comps])))
71 def combineBVec(comps):
73 for ndx in range(len(comps[0])):
74 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toBool().getScalars() for x in comps])))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
webkit_finder.py 65 def path_from_webkit_base(self, *comps):
66 return self._filesystem.join(self.webkit_base(), *comps)
68 def path_from_chromium_base(self, *comps):
69 return self._filesystem.join(self.chromium_base(), *comps)
108 def path_from_depot_tools_base(self, *comps):
109 return self._filesystem.join(self.depot_tools_base(), *comps)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemv.c 172 nmv_component *comp = &mvc->comps[i];
173 nmv_component_counts *comp_counts = &counts->comps[i];
186 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
187 counts->comps[i].class0_fp[j], MV_FP_SIZE, w);
189 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
195 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 172 nmv_component *comp = &mvc->comps[i];
173 nmv_component_counts *comp_counts = &counts->comps[i];
186 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
187 counts->comps[i].class0_fp[j], MV_FP_SIZE, w);
189 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
195 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemv.c 172 nmv_component *comp = &mvc->comps[i];
173 nmv_component_counts *comp_counts = &counts->comps[i];
186 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
187 counts->comps[i].class0_fp[j], MV_FP_SIZE, w);
189 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
195 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
197 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_etc.c 28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
39 float *dst = dst_row + (y + j) * dst_stride / sizeof(*dst_row) + x * comps;
48 dst += comps;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_etc.c 28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
39 float *dst = dst_row + (y + j) * dst_stride / sizeof(*dst_row) + x * comps;
48 dst += comps;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
deps_updater.py 157 def cd(self, *comps):
158 dest = self.path_from_webkit_base(*comps)
163 def remove(self, *comps):
164 dest = self.path_from_webkit_base(*comps)
169 def rmtree(self, *comps):
170 dest = self.path_from_webkit_base(*comps)
175 def path_from_webkit_base(self, *comps):
176 return self.finder.path_from_webkit_base(*comps)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_dump.cpp 42 for(unsigned i = 0; i < op.comps; ++i)
53 for(unsigned i = 0; i < op.comps; ++i)
104 if(op.comps)
110 for(unsigned i = 0; i < op.comps; ++i)
118 for(unsigned i = 0; i < op.comps; ++i)
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_dump.cpp 42 for(unsigned i = 0; i < op.comps; ++i)
53 for(unsigned i = 0; i < op.comps; ++i)
104 if(op.comps)
110 for(unsigned i = 0; i < op.comps; ++i)
118 for(unsigned i = 0; i < op.comps; ++i)
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 883 CvAvgComp* comps = 0; local
    [all...]

Completed in 1625 milliseconds

1 2 3 4 5 6