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

1 2 3 4 5 6 7

  /external/libxml2/result/relaxng/
comps_err 1 ./test/relaxng/comps.rng validates
  /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 169 int prec = img->comps[0].prec;
173 std::min(std::min(img->comps[0].w, img->comps[1].w), img->comps[2].w);
175 std::min(std::min(img->comps[0].h, img->comps[1].h), img->comps[2].h);
181 const int* y = img->comps[0].data;
182 const int* cb = img->comps[1].data;
183 const int* cr = img->comps[2].data
    [all...]
  /external/chromium-trace/catapult/third_party/typ/typ/fakes/
host_fake.py 75 def abspath(self, *comps):
76 relpath = self.join(*comps)
81 def add_to_path(self, *comps):
82 absolute_path = self.abspath(*comps)
96 def chdir(self, *comps):
97 path = self.join(*comps)
108 def exists(self, *comps):
109 path = self.abspath(*comps)
133 def isdir(self, *comps):
134 path = self.abspath(*comps)
    [all...]
  /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/llvm/unittests/LineEditor/
LineEditor.cpp 58 std::vector<LineEditor::Completion> Comps;
60 Comps.push_back(LineEditor::Completion("foo", "int foo()"));
61 LE->setListCompleter(TestListCompleter(Comps));
66 Comps.push_back(LineEditor::Completion("bar", "int bar()"));
67 LE->setListCompleter(TestListCompleter(Comps));
74 Comps.clear();
75 Comps.push_back(LineEditor::Completion("fee", "int fee()"));
76 Comps.push_back(LineEditor::Completion("fi", "int fi()"));
77 Comps.push_back(LineEditor::Completion("foe", "int foe()"));
78 Comps.push_back(LineEditor::Completion("fum", "int fum()"))
    [all...]
  /external/chromium-trace/catapult/third_party/typ/typ/
host.py 54 def abspath(self, *comps):
55 return os.path.abspath(self.join(*comps))
57 def add_to_path(self, *comps):
58 absolute_path = self.abspath(*comps)
89 def chdir(self, *comps):
90 return os.chdir(self.join(*comps))
95 def dirname(self, *comps):
96 return os.path.dirname(self.join(*comps))
98 def exists(self, *comps):
99 return os.path.exists(self.join(*comps))
    [all...]
  /external/deqp/modules/gles3/scripts/
gen-conversions.py 77 def combineVec(comps):
79 for ndx in range(len(comps[0])):
80 # for x in comps:
82 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps])
87 def combineIVec(comps):
89 for ndx in range(len(comps[0])):
90 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toInt().getScalars() for x in comps])))
93 def combineUVec(comps):
94 return [x.toUint() for x in combineIVec(comps)]
96 def combineBVec(comps)
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
image.c 48 image->comps = (opj_image_comp_t*)opj_calloc(1,image->numcomps * sizeof(opj_image_comp_t));
49 if(!image->comps) {
57 opj_image_comp_t *comp = &image->comps[compno];
82 if(image->comps) {
87 opj_image_comp_t *image_comp = &(image->comps[compno]);
92 opj_free(image->comps);
123 l_img_comp = p_image_header->comps;
161 if (p_image_dest->comps){
163 opj_image_comp_t *image_comp = &(p_image_dest->comps[compno]);
168 opj_free(p_image_dest->comps);
    [all...]
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /external/opencv3/modules/cudalegacy/src/cuda/
ccomponetns.cu 232 __global__ void lableTiles(const PtrStepSzb edges, PtrStepSzi comps)
362 if (y + CTA_SIZE_Y * i < comps.rows) comps(y + CTA_SIZE_Y * i, x + CTA_SIZE_X * j) = label;
366 __device__ __forceinline__ int root(const PtrStepSzi& comps, int label)
370 int y = label / comps.cols;
371 int x = label - y * comps.cols;
373 int parent = comps(y, x);
382 __device__ __forceinline__ void isConnected(PtrStepSzi& comps, int l1, int l2, bool& changed)
384 int r1 = root(comps, l1);
385 int r2 = root(comps, l2)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 173 nmv_component *comp = &mvc->comps[i];
174 nmv_component_counts *comp_counts = &counts->comps[i];
187 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j],
188 counts->comps[i].class0_fp[j], MV_FP_SIZE, w);
190 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp,
196 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp,
198 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/deqp/modules/gles2/scripts/
gen-conversions.py 77 def combineVec(comps):
79 for ndx in range(len(comps[0])):
80 # for x in comps:
82 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps])
87 def combineIVec(comps):
89 for ndx in range(len(comps[0])):
90 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toInt().getScalars() for x in comps])))
93 def combineBVec(comps):
95 for ndx in range(len(comps[0])):
96 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toBool().getScalars() for x in comps])))
    [all...]
  /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;
u_gen_mipmap.c 166 * \param comps number of components per pixel (1..4)
169 do_row(enum dtype datatype, uint comps, int srcWidth,
176 assert(comps >= 1);
177 assert(comps <= 4);
183 if (datatype == DTYPE_UBYTE && comps == 4) {
196 else if (datatype == DTYPE_UBYTE && comps == 3) {
208 else if (datatype == DTYPE_UBYTE && comps == 2) {
219 else if (datatype == DTYPE_UBYTE && comps == 1) {
230 else if (datatype == DTYPE_USHORT && comps == 4) {
243 else if (datatype == DTYPE_USHORT && comps == 3)
966 uint comps; local
988 uint comps; local
1032 uint comps; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/
encoder.py 41 comps = []
48 comps.append(client[idx])
49 comps.sort(key=lambda x: isinstance(x, univ.Choice) and \
51 for c in comps:
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 280 std::vector<MatcherCompletion> Comps =
282 ASSERT_EQ(1u, Comps.size());
283 EXPECT_EQ("Stmt(", Comps[0].TypedText);
285 Comps[0].MatcherDecl);
287 Comps = Parser::completeExpression("whileStmt().", 12);
288 ASSERT_EQ(1u, Comps.size());
289 EXPECT_EQ("bind(\"", Comps[0].TypedText);
290 EXPECT_EQ("bind", Comps[0].MatcherDecl);
297 std::vector<MatcherCompletion> Comps =
299 ASSERT_EQ(1u, Comps.size())
    [all...]
  /external/mesa3d/src/mesa/main/
formats.c 1956 GLuint comps = 0; local
    [all...]
mipmap.c 46 bytes_per_pixel(GLenum datatype, GLuint comps)
60 return b * comps;
146 * \param comps number of components per pixel (1..4)
149 do_row(GLenum datatype, GLuint comps, GLint srcWidth,
156 ASSERT(comps >= 1);
157 ASSERT(comps <= 4);
163 if (datatype == GL_UNSIGNED_BYTE && comps == 4) {
176 else if (datatype == GL_UNSIGNED_BYTE && comps == 3) {
188 else if (datatype == GL_UNSIGNED_BYTE && comps == 2) {
199 else if (datatype == GL_UNSIGNED_BYTE && comps == 1)
1890 GLuint comps; local
    [all...]
  /external/selinux/sepolgen/tests/
test_access.py 170 comps = [("foo", "what", "dir"),
181 for i in range(len(comps)):
182 if comps[i][0] == av.src_type and \
183 comps[i][1] == av.tgt_type and \
184 comps[i][2] == av.obj_class:
213 comps = [("foo", "what", "dir"),
224 for i in range(len(comps)):
225 if comps[i][0] == av.src_type and \
226 comps[i][1] == av.tgt_type and \
227 comps[i][2] == av.obj_class
    [all...]
  /external/libxml2/test/relaxng/
comps.rng 3 <ref name="comps"/>
22 <define name="comps">
23 <element name="comps">

Completed in 1469 milliseconds

1 2 3 4 5 6 7