Home
last modified time | relevance | path

Searched refs:comp (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/external/chromium_org/third_party/libxslt/libxslt/
Dpreproc.c380 xsltFreeStylePreComp(xsltStylePreCompPtr comp) { in xsltFreeStylePreComp() argument
381 if (comp == NULL) in xsltFreeStylePreComp()
387 switch (comp->type) { in xsltFreeStylePreComp()
393 xsltStyleItemSortPtr item = (xsltStyleItemSortPtr) comp; in xsltFreeStylePreComp()
396 if (item->comp != NULL) in xsltFreeStylePreComp()
397 xmlXPathFreeCompExpr(item->comp); in xsltFreeStylePreComp()
411 xsltStyleItemCopyOfPtr item = (xsltStyleItemCopyOfPtr) comp; in xsltFreeStylePreComp()
412 if (item->comp != NULL) in xsltFreeStylePreComp()
413 xmlXPathFreeCompExpr(item->comp); in xsltFreeStylePreComp()
417 xsltStyleItemValueOfPtr item = (xsltStyleItemValueOfPtr) comp; in xsltFreeStylePreComp()
[all …]
Dvariables.c525 cur->comp = elem->comp; in xsltCopyStackElem()
703 if (cur->comp != NULL) { in xsltCheckStackElem()
704 if (cur->comp->type == XSLT_FUNC_WITHPARAM) in xsltCheckStackElem()
706 else if (cur->comp->type == XSLT_FUNC_PARAM) in xsltCheckStackElem()
798 xsltStyleItemVariablePtr comp = in xsltEvalVariable() local
801 xsltStylePreCompPtr comp = castedComp; in xsltEvalVariable()
829 if ((comp != NULL) && (comp->comp != NULL)) { in xsltEvalVariable()
830 xpExpr = comp->comp; in xsltEvalVariable()
869 if (comp != NULL) { in xsltEvalVariable()
872 if (comp->inScopeNs != NULL) { in xsltEvalVariable()
[all …]
Dpattern.c90 xmlXPathCompExprPtr comp; member
126 xsltCompMatchPtr comp; /* the result */ member
176 xsltFreeCompMatch(xsltCompMatchPtr comp) { in xsltFreeCompMatch() argument
180 if (comp == NULL) in xsltFreeCompMatch()
182 if (comp->pattern != NULL) in xsltFreeCompMatch()
183 xmlFree((xmlChar *)comp->pattern); in xsltFreeCompMatch()
184 if (comp->nsList != NULL) in xsltFreeCompMatch()
185 xmlFree(comp->nsList); in xsltFreeCompMatch()
186 for (i = 0;i < comp->nbStep;i++) { in xsltFreeCompMatch()
187 op = &comp->steps[i]; in xsltFreeCompMatch()
[all …]
Dtransform.h94 xsltStylePreCompPtr comp);
99 xsltStylePreCompPtr comp);
104 xsltStylePreCompPtr comp);
109 xsltStylePreCompPtr comp);
114 xsltStylePreCompPtr comp);
119 xsltStylePreCompPtr comp);
124 xsltStylePreCompPtr comp);
129 xsltStylePreCompPtr comp);
134 xsltStylePreCompPtr comp);
139 xsltStylePreCompPtr comp);
[all …]
/external/qemu/android/base/
DString_unittest.cpp224 const Comparison& comp = kComparisons[n]; in TEST() local
225 String s(comp.s1); in TEST()
226 EXPECT_EQ(comp.expected, s.compare(comp.s2)) in TEST()
227 << "Comparing '" << comp.s1 << "' with '" in TEST()
228 << comp.s2 << "'"; in TEST()
234 const Comparison& comp = kComparisons[n]; in TEST() local
235 String s(comp.s1); in TEST()
236 size_t len2 = ::strlen(comp.s2); in TEST()
237 EXPECT_EQ(comp.expected, s.compare(comp.s2, len2)) in TEST()
238 << "Comparing '" << comp.s1 << "' with '" in TEST()
[all …]
/external/libxml2/
Dpattern.c83 if ((c)->comp->dict) \
84 r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \
87 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
110 xmlStreamCompPtr comp; /* the compiled stream */ member
119 static void xmlFreeStreamComp(xmlStreamCompPtr comp);
183 xmlPatternPtr comp; /* the result */ member
231 xmlFreePattern(xmlPatternPtr comp) { in xmlFreePattern() argument
235 if (comp == NULL) in xmlFreePattern()
237 if (comp->next != NULL) in xmlFreePattern()
238 xmlFreePattern(comp->next); in xmlFreePattern()
[all …]
/external/chromium_org/third_party/libxml/src/
Dpattern.c80 if ((c)->comp->dict) \
81 r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \
84 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
107 xmlStreamCompPtr comp; /* the compiled stream */ member
116 static void xmlFreeStreamComp(xmlStreamCompPtr comp);
180 xmlPatternPtr comp; /* the result */ member
228 xmlFreePattern(xmlPatternPtr comp) { in xmlFreePattern() argument
232 if (comp == NULL) in xmlFreePattern()
234 if (comp->next != NULL) in xmlFreePattern()
235 xmlFreePattern(comp->next); in xmlFreePattern()
[all …]
DtestRegexp.c19 static void testRegexp(xmlRegexpPtr comp, const char *value) { in testRegexp() argument
22 ret = xmlRegexpExec(comp, (const xmlChar *) value); in testRegexp()
32 xmlRegexpExec(comp, (const xmlChar *) value); in testRegexp()
38 xmlRegexpPtr comp = NULL; in testRegexpFile() local
62 if (comp != NULL) { in testRegexpFile()
63 xmlRegFreeRegexp(comp); in testRegexpFile()
64 comp = NULL; in testRegexpFile()
67 comp = xmlRegexpCompile((const xmlChar *) pattern); in testRegexpFile()
68 if (comp == NULL) { in testRegexpFile()
72 } else if (comp == NULL) { in testRegexpFile()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXSLTUnicodeSort.cpp49 xsltStyleItemSortPtr comp; in xsltUnicodeSortFunction() local
51 xsltStylePreCompPtr comp; in xsltUnicodeSortFunction()
64 comp = static_cast<xsltStylePreComp*>(sorts[0]->psvi); in xsltUnicodeSortFunction()
65 if (!comp) in xsltUnicodeSortFunction()
73 comp = static_cast<xsltStylePreComp*>(sorts[j]->psvi); in xsltUnicodeSortFunction()
75 if (!comp->stype && comp->has_stype) { in xsltUnicodeSortFunction()
76comp->stype = xsltEvalAttrValueTemplate(ctxt, sorts[j], toXMLChar("data-type"), XSLT_NAMESPACE); in xsltUnicodeSortFunction()
77 if (comp->stype) { in xsltUnicodeSortFunction()
79 if (xmlStrEqual(comp->stype, toXMLChar("text"))) { in xsltUnicodeSortFunction()
80 comp->number = 0; in xsltUnicodeSortFunction()
[all …]
/external/opencv/cv/src/
Dcvcamshift.cpp62 CvTermCriteria criteria, CvConnectedComp* comp ) in cvMeanShift() argument
72 if( comp ) in cvMeanShift()
73 comp->rect = windowIn; in cvMeanShift()
136 if( comp ) in cvMeanShift()
138 comp->rect = cur_rect; in cvMeanShift()
139 comp->area = (float)moments.m00; in cvMeanShift()
179 CvConnectedComp comp; in cvCamShift() local
184 comp.rect = windowIn; in cvCamShift()
190 CV_CALL( itersUsed = cvMeanShift( mat, windowIn, criteria, &comp )); in cvCamShift()
191 windowIn = comp.rect; in cvCamShift()
[all …]
/external/jdiff/src/jdiff/
DMethodAPI.java88 int comp = name_.compareTo(oMethod.name_); in compareTo() local
89 if (comp != 0) in compareTo()
90 return comp; in compareTo()
91 comp = returnType_.compareTo(oMethod.returnType_); in compareTo()
92 if (comp != 0) in compareTo()
93 return comp; in compareTo()
107 comp = exceptions_.compareTo(oMethod.exceptions_); in compareTo()
108 if (comp != 0) in compareTo()
109 return comp; in compareTo()
110 comp = modifiers_.compareTo(oMethod.modifiers_); in compareTo()
[all …]
DFieldAPI.java72 int comp = name_.compareTo(oFieldAPI.name_); in compareTo() local
73 if (comp != 0) in compareTo()
74 return comp; in compareTo()
75 comp = type_.compareTo(oFieldAPI.type_); in compareTo()
76 if (comp != 0) in compareTo()
77 return comp; in compareTo()
87 comp = value_.compareTo(oFieldAPI.value_); in compareTo()
88 if (comp != 0) in compareTo()
89 return comp; in compareTo()
91 comp = modifiers_.compareTo(oFieldAPI.modifiers_); in compareTo()
[all …]
DConstructorAPI.java44 int comp = type_.compareTo(constructorAPI.type_); in compareTo() local
45 if (comp != 0) in compareTo()
46 return comp; in compareTo()
47 comp = exceptions_.compareTo(constructorAPI.exceptions_); in compareTo()
48 if (comp != 0) in compareTo()
49 return comp; in compareTo()
50 comp = modifiers_.compareTo(constructorAPI.modifiers_); in compareTo()
51 if (comp != 0) in compareTo()
52 return comp; in compareTo()
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_composite.c216 xa_composite_check_accelerated(const struct xa_composite *comp) in xa_composite_check_accelerated() argument
219 struct xa_picture *src_pic = comp->src; in xa_composite_check_accelerated()
222 !xa_is_filter_accelerated(comp->mask)) { in xa_composite_check_accelerated()
236 if (comp->mask) in xa_composite_check_accelerated()
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) { in xa_composite_check_accelerated()
241 struct xa_picture *mask = comp->mask; in xa_composite_check_accelerated()
256 const struct xa_composite *comp) in bind_composite_blend_state() argument
261 if (!blend_for_op(&blend_opt, comp->op, comp->src, comp->mask, comp->dst)) in bind_composite_blend_state()
325 bind_shaders(struct xa_context *ctx, const struct xa_composite *comp) in bind_shaders() argument
329 struct xa_picture *src_pic = comp->src; in bind_shaders()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
Dxa_composite.c216 xa_composite_check_accelerated(const struct xa_composite *comp) in xa_composite_check_accelerated() argument
219 struct xa_picture *src_pic = comp->src; in xa_composite_check_accelerated()
222 !xa_is_filter_accelerated(comp->mask)) { in xa_composite_check_accelerated()
236 if (comp->mask) in xa_composite_check_accelerated()
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) { in xa_composite_check_accelerated()
241 struct xa_picture *mask = comp->mask; in xa_composite_check_accelerated()
256 const struct xa_composite *comp) in bind_composite_blend_state() argument
261 if (!blend_for_op(&blend_opt, comp->op, comp->src, comp->mask, comp->dst)) in bind_composite_blend_state()
325 bind_shaders(struct xa_context *ctx, const struct xa_composite *comp) in bind_shaders() argument
329 struct xa_picture *src_pic = comp->src; in bind_shaders()
[all …]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
Dimage.c56 opj_image_comp_t *comp = &image->comps[compno]; in opj_image_create() local
57 comp->dx = cmptparms[compno].dx; in opj_image_create()
58 comp->dy = cmptparms[compno].dy; in opj_image_create()
59 comp->w = cmptparms[compno].w; in opj_image_create()
60 comp->h = cmptparms[compno].h; in opj_image_create()
61 comp->x0 = cmptparms[compno].x0; in opj_image_create()
62 comp->y0 = cmptparms[compno].y0; in opj_image_create()
63 comp->prec = cmptparms[compno].prec; in opj_image_create()
64 comp->bpp = cmptparms[compno].bpp; in opj_image_create()
65 comp->sgnd = cmptparms[compno].sgnd; in opj_image_create()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
Dr300_fragprog_swizzle.c72 int i, comp; in lookup_native_swizzle() local
76 for(comp = 0; comp < 3; ++comp) { in lookup_native_swizzle()
77 unsigned int swz = GET_SWZ(swizzle, comp); in lookup_native_swizzle()
80 if (swz != GET_SWZ(sd->hash, comp)) in lookup_native_swizzle()
83 if (comp == 3) in lookup_native_swizzle()
157 int i, comp; in r300_swizzle_split() local
163 for(comp = 0; comp < 3; ++comp) { in r300_swizzle_split()
165 if (!GET_BIT(mask, comp)) in r300_swizzle_split()
167 swz = GET_SWZ(src.Swizzle, comp); in r300_swizzle_split()
170 if (swz == GET_SWZ(sd->hash, comp)) { in r300_swizzle_split()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr300_fragprog_swizzle.c72 int i, comp; in lookup_native_swizzle() local
76 for(comp = 0; comp < 3; ++comp) { in lookup_native_swizzle()
77 unsigned int swz = GET_SWZ(swizzle, comp); in lookup_native_swizzle()
80 if (swz != GET_SWZ(sd->hash, comp)) in lookup_native_swizzle()
83 if (comp == 3) in lookup_native_swizzle()
157 int i, comp; in r300_swizzle_split() local
163 for(comp = 0; comp < 3; ++comp) { in r300_swizzle_split()
165 if (!GET_BIT(mask, comp)) in r300_swizzle_split()
167 swz = GET_SWZ(src.Swizzle, comp); in r300_swizzle_split()
170 if (swz == GET_SWZ(sd->hash, comp)) { in r300_swizzle_split()
[all …]
/external/bzip2/
Dbzdiff18 *cmp) comp=${CMP-cmp} ;;
19 *) comp=${DIFF-diff} ;;
37 echo "Usage: $prog [${comp}_options] file [file]"
47 bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"
57 bzip2 -cdfq "$1" | $comp $OPTIONS - $tmp
61 *) bzip2 -cdfq "$1" | $comp $OPTIONS - "$2"
66 bzip2 -cdfq "$2" | $comp $OPTIONS "$1" -
68 *) $comp $OPTIONS "$1" "$2"
74 echo "Usage: $prog [${comp}_options] file [file]"
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
DAndroid.mk17 test_makefile := external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/Android.mk
19 test_name := utilities/meta/meta.unary/meta.unary.comp/union
23 test_name := utilities/meta/meta.unary/meta.unary.comp/member_object_pointer
27 test_name := utilities/meta/meta.unary/meta.unary.comp/lvalue_ref
31 test_name := utilities/meta/meta.unary/meta.unary.comp/function
35 test_name := utilities/meta/meta.unary/meta.unary.comp/pointer
39 test_name := utilities/meta/meta.unary/meta.unary.comp/array
43 test_name := utilities/meta/meta.unary/meta.unary.comp/enum
47 test_name := utilities/meta/meta.unary/meta.unary.comp/floating_point
51 test_name := utilities/meta/meta.unary/meta.unary.comp/void
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Donyx.h247 void vp8_remove_compressor(struct VP8_COMP* *comp);
252 …int vp8_receive_raw_frame(struct VP8_COMP* comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd,…
253 …int vp8_get_compressed_data(struct VP8_COMP* comp, unsigned int *frame_flags, unsigned long *size,…
254 …int vp8_get_preview_raw_frame(struct VP8_COMP* comp, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t *flag…
256 int vp8_use_as_reference(struct VP8_COMP* comp, int ref_frame_flags);
257 int vp8_update_reference(struct VP8_COMP* comp, int ref_frame_flags);
258 …int vp8_get_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_C…
259 …int vp8_set_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_C…
260 int vp8_update_entropy(struct VP8_COMP* comp, int update);
261 …int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols…
[all …]
/external/libvpx/libvpx/vp8/common/
Donyx.h247 void vp8_remove_compressor(struct VP8_COMP* *comp);
252 …int vp8_receive_raw_frame(struct VP8_COMP* comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd,…
253 …int vp8_get_compressed_data(struct VP8_COMP* comp, unsigned int *frame_flags, unsigned long *size,…
254 …int vp8_get_preview_raw_frame(struct VP8_COMP* comp, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t *flag…
256 int vp8_use_as_reference(struct VP8_COMP* comp, int ref_frame_flags);
257 int vp8_update_reference(struct VP8_COMP* comp, int ref_frame_flags);
258 …int vp8_get_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_C…
259 …int vp8_set_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_C…
260 int vp8_update_entropy(struct VP8_COMP* comp, int update);
261 …int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols…
[all …]
/external/oprofile/libutil++/
Dpath_filter.cpp27 string comp = op_dirname(str); in match() local
28 while (!comp.empty() && comp != "/") { in match()
30 fnmatcher(op_basename(comp))); in match()
35 if (comp == op_dirname(comp)) in match()
37 comp = op_dirname(comp); in match()
/external/stlport/stlport/stl/
D_queue.h168 _Compare comp; in _STLP_RELOPS_OPERATORS() local
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {} in _STLP_RELOPS_OPERATORS()
173 : c(__s), comp(__x) in _STLP_RELOPS_OPERATORS()
174 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {} in _STLP_RELOPS_OPERATORS()
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
190 : c(__first, __last), comp(__x) in _STLP_RELOPS_OPERATORS()
191 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
196 : c(__s), comp(__x) in _STLP_RELOPS_OPERATORS()
199 make_heap(c.begin(), c.end(), comp); in _STLP_RELOPS_OPERATORS()
[all …]
/external/icu/icu4c/source/layout/
DLigatureSubstSubtables.cpp32 le_uint16 comp; in process() local
34 for (comp = 0; comp < compCount; comp += 1) { in process()
39 … if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) { in process()
44 … if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) { in process()
48 while (comp > 0) { in process()
52 comp -= 1; in process()

12345678910>>...18