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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/
ppp-comp.h 1 #include <linux/ppp-comp.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/net/
ppp-comp.h 1 #include <linux/ppp-comp.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/net/
ppp-comp.h 1 #include <linux/ppp-comp.h>
  /external/jdiff/src/jdiff/
ConstructorAPI.java 44 int comp = type_.compareTo(constructorAPI.type_); local
45 if (comp != 0)
46 return comp;
47 comp = exceptions_.compareTo(constructorAPI.exceptions_);
48 if (comp != 0)
49 return comp;
50 comp = modifiers_.compareTo(constructorAPI.modifiers_);
51 if (comp != 0)
52 return comp;
ParamAPI.java 31 int comp = name_.compareTo(oParamAPI.name_); local
32 if (comp != 0)
33 return comp;
34 comp = type_.compareTo(oParamAPI.type_);
35 if (comp != 0)
36 return comp;
FieldAPI.java 72 int comp = name_.compareTo(oFieldAPI.name_); local
73 if (comp != 0)
74 return comp;
75 comp = type_.compareTo(oFieldAPI.type_);
76 if (comp != 0)
77 return comp;
87 comp = value_.compareTo(oFieldAPI.value_);
88 if (comp != 0)
89 return comp;
91 comp = modifiers_.compareTo(oFieldAPI.modifiers_)
    [all...]
MethodAPI.java 88 int comp = name_.compareTo(oMethod.name_); local
89 if (comp != 0)
90 return comp;
91 comp = returnType_.compareTo(oMethod.returnType_);
92 if (comp != 0)
93 return comp;
107 comp = exceptions_.compareTo(oMethod.exceptions_);
108 if (comp != 0)
109 return comp;
110 comp = modifiers_.compareTo(oMethod.modifiers_)
    [all...]
ClassAPI.java 66 int comp = name_.compareTo(oClassAPI.name_); local
67 if (comp != 0)
68 return comp;
73 comp = modifiers_.compareTo(oClassAPI.modifiers_);
74 if (comp != 0)
75 return comp;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width)
35 temp1 = (int32 *)comp;
42 comp += width;
46 temp1 = (int32 *)comp;
53 comp += width;
57 temp1 = (int32 *)comp;
64 comp += width;
68 temp1 = (int32 *)comp;
74 comp += width;
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width
    [all...]
dcac_prediction.cpp 30 int comp,
79 if (!comp && x_pos && !(video->headerInfo.Mode[mbnum-1]&INTRA_MASK)) /* not intra */
83 if (!comp && y_pos && !(video->headerInfo.Mode[mbnum-nMBPerRow]&INTRA_MASK)) /* not intra */
88 y_offset = Ypos[comp] * nMBPerRow;
89 x_offset = Xpos[comp];
90 x_tab = Xtab[comp];
91 y_tab = Ytab[comp];
92 z_tab = Ztab[comp];
94 b_xtab = B_Xtab[comp];
95 b_ytab = B_Ytab[comp];
    [all...]
combined_decode.cpp 360 int comp; local
375 for (comp = 0; comp < 6; comp++)
377 (*DC)[comp] = mid_gray;
540 int comp; local
557 /* Decode each 8-by-8 blocks. comp 0 ~ 3 are luminance blocks, 4 ~ 5 */
588 for (comp = 0; comp < 6; comp++
    [all...]
  /external/libxslt/libxslt/
preproc.c 375 * @comp: an XSLT Style precomputed block
377 * Free up the memory allocated by @comp
380 xsltFreeStylePreComp(xsltStylePreCompPtr comp) {
381 if (comp == NULL)
387 switch (comp->type) {
393 xsltStyleItemSortPtr item = (xsltStyleItemSortPtr) comp;
396 if (item->comp != NULL)
397 xmlXPathFreeCompExpr(item->comp);
411 xsltStyleItemCopyOfPtr item = (xsltStyleItemCopyOfPtr) comp;
412 if (item->comp != NULL
524 xsltStyleItemDocumentPtr comp; local
668 xsltStyleItemSortPtr comp; local
775 xsltStyleItemCopyPtr comp; local
818 xsltStyleItemTextPtr comp; local
864 xsltStyleItemElementPtr comp; local
982 xsltStyleItemAttributePtr comp; local
1109 xsltStyleItemCommentPtr comp; local
1139 xsltStyleItemPIPtr comp; local
1173 xsltStyleItemCopyOfPtr comp; local
1219 xsltStyleItemValueOfPtr comp; local
1345 xsltStyleItemWithParamPtr comp; local
1403 xsltStyleItemNumberPtr comp; local
1518 xsltStyleItemApplyImportsPtr comp; local
1548 xsltStyleItemCallTemplatePtr comp; local
1587 xsltStyleItemApplyTemplatesPtr comp; local
1639 xsltStyleItemChoosePtr comp; local
1670 xsltStyleItemIfPtr comp; local
1716 xsltStyleItemWhenPtr comp; local
1762 xsltStyleItemForEachPtr comp; local
1810 xsltStyleItemVariablePtr comp; local
1873 xsltStyleItemParamPtr comp; local
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcVersionHelper.h 53 #define ASSERT_VERSION_IMPLEMENTATION(comp, versionpart, requiredV, actualV, expression) \
54 extern int Actual_##comp##_##versionpart##_VERSION_##actualV##_does_not_match_required_version_##requiredV[(expression) ? 0:-1]
56 #define ASSERT_VERSION_EVALUATOR(comp, versionpart, requiredV, actualV, expression) \
57 ASSERT_VERSION_IMPLEMENTATION(comp, versionpart, requiredV, actualV, expression)
59 #define ASSERT_VERSION(required, comparator, comp, versionpart) \
60 ASSERT_VERSION_EVALUATOR(comp, versionpart, required, comp ##_VERSION_## versionpart, required comparator comp ##_VERSION_## versionpart)
63 * 'comp' is identical to the required version of a component using this interface.
67 #define MC_CHECK_VERSION_EQUALS(comp, major, minor)
    [all...]
  /external/libvpx/libvpx/vp8/common/
onyxd.h 47 void vp8dx_set_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst, int x);
49 int vp8dx_get_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst);
51 int vp8dx_receive_compressed_data(struct VP8D_COMP* comp,
54 int vp8dx_get_raw_frame(struct VP8D_COMP* comp, YV12_BUFFER_CONFIG *sd, int64_t *time_stamp, int64_t *time_end_stamp, vp8_ppflags_t *flags);
56 vpx_codec_err_t vp8dx_get_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
57 vpx_codec_err_t vp8dx_set_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
61 void vp8dx_remove_decompressor(struct VP8D_COMP* comp);
  /external/bzip2/
bzdiff 18 *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/icu4c/layout/
LigatureSubstSubtables.cpp 32 le_uint16 comp; local
34 for (comp = 0; comp < compCount; comp += 1) {
39 if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) {
44 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
48 while (comp > 0) {
52 comp -= 1;
  /external/libxml2/include/libxml/
pattern.h 47 xmlFreePattern (xmlPatternPtr comp);
50 xmlFreePatternList (xmlPatternPtr comp);
58 xmlPatternMatch (xmlPatternPtr comp,
66 xmlPatternStreamable (xmlPatternPtr comp);
68 xmlPatternMaxDepth (xmlPatternPtr comp);
70 xmlPatternMinDepth (xmlPatternPtr comp);
72 xmlPatternFromRoot (xmlPatternPtr comp);
74 xmlPatternGetStreamCtxt (xmlPatternPtr comp);
  /external/oprofile/libutil++/
path_filter.cpp 27 string comp = op_dirname(str); local
28 while (!comp.empty() && comp != "/") {
30 fnmatcher(op_basename(comp)));
35 if (comp == op_dirname(comp))
37 comp = op_dirname(comp);
  /external/libxml2/
pattern.c 80 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 in struct:_xmlStreamCtxt
116 static void xmlFreeStreamComp(xmlStreamCompPtr comp);
180 xmlPatternPtr comp; /* the result */ member in struct:_xmlPatParserContext
223 * @comp: an XSLT comp
225 * Free up the memory allocated by @comp
228 xmlFreePattern(xmlPatternPtr comp) {
1857 xmlStreamCompPtr comp; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
sort.h 62 Comparator comp, Parallelism parallelism);
69 * @param comp Comparator.
75 Comparator comp, multiway_mergesort_tag parallelism)
81 (begin, end, comp, parallelism.get_num_threads());
84 (begin, end, comp, parallelism.get_num_threads());
92 * @param comp Comparator.
98 Comparator comp, multiway_mergesort_exact_tag parallelism)
103 (begin, end, comp, parallelism.get_num_threads());
111 * @param comp Comparator.
117 Comparator comp, multiway_mergesort_sampling_tag parallelism
    [all...]
  /external/webkit/Source/WebCore/xml/
XSLTUnicodeSort.cpp 76 xsltStyleItemSortPtr comp; local
78 xsltStylePreCompPtr comp;
97 comp = static_cast<xsltStylePreComp*>(sorts[0]->psvi);
98 if (comp == NULL)
106 comp = static_cast<xsltStylePreComp*>(sorts[j]->psvi);
108 if ((comp->stype == NULL) && (comp->has_stype != 0)) {
109 comp->stype =
113 if (comp->stype != NULL) {
115 if (xmlStrEqual(comp->stype, (const xmlChar *) "text")
    [all...]
  /frameworks/base/services/java/com/android/server/
RecognitionManagerService.java 53 ComponentName comp = getCurRecognizer(userHandle); local
54 if (comp == null) {
56 comp = findAvailRecognizer(null, userHandle);
57 if (comp != null) {
58 setCurRecognizer(comp, userHandle);
64 int change = isPackageDisappearing(comp.getPackageName());
69 } else if (isPackageModified(comp.getPackageName())) {
70 setCurRecognizer(findAvailRecognizer(comp.getPackageName(), userHandle),
91 ComponentName comp = getCurRecognizer(userHandle); local
93 if (comp != null)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
AbstractInputEditor.java 46 protected JComponent comp; field in class:AbstractInputEditor
47 public JComponent getControl() { return comp; }
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SortUtil.java 76 public static void gsort(Object[] a, Comparator comp) {
82 if ( comp.compare(a[pos], a[pos-1]) >= 0 ){
108 // if (p == 0 || comp.compare(a[p], a[pm1]) >= 0) {
175 public static void qsort(Object[] a, Comparator comp) {
176 qsort(a, 0, a.length - 1, comp);
186 public static void qsort(Object[] a, int lo0, int hi0, Comparator comp) {
196 if (comp.compare(a[hi0], a[lo0]) < 0) {
214 while (comp.compare(a[++lo], mid) < 0);
218 while (comp.compare(mid, a[--hi]) < 0);
233 qsort(a, lo0, lo - 1, comp);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_alloc.pass.cpp 29 test(const value_compare& comp, const test_allocator<int>& a)
30 : base(comp, c, a) {}
31 test(const value_compare& comp, const container_type& c,
32 const test_allocator<int>& a) : base(comp, c, a) {}
34 test(const value_compare& comp, container_type&& c,
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}

Completed in 434 milliseconds

1 2 3 4 5 6 7 8 91011>>