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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/net/
ppp-comp.h 1 #include <linux/ppp-comp.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/net/
ppp-comp.h 1 #include <linux/ppp-comp.h>
  /external/squashfs-tools/squashfs-tools/
compressor.h 46 static inline int compressor_init(struct compressor *comp, void **stream,
49 if(comp->init == NULL)
51 return comp->init(stream, block_size, datablock);
55 static inline int compressor_compress(struct compressor *comp, void *strm,
58 return comp->compress(strm, dest, src, size, block_size, error);
62 static inline int compressor_uncompress(struct compressor *comp, void *dest,
65 return comp->uncompress(dest, src, size, block_size, error);
73 static inline int compressor_options(struct compressor *comp, char *argv[],
76 if(comp->options == NULL)
79 return comp->options(argv, argc)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
nturl2path.py 23 comp = url.split('|')
24 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
27 drive = comp[0][-1].upper()
29 components = comp[1].split('/')
30 for comp in components:
31 if comp:
32 path = path + '\\' + urllib.unquote(comp)
55 comp = p.split(':')
56 if len(comp) != 2 or len(comp[0]) > 1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
nturl2path.py 23 comp = url.split('|')
24 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
27 drive = comp[0][-1].upper()
29 components = comp[1].split('/')
30 for comp in components:
31 if comp:
32 path = path + '\\' + urllib.unquote(comp)
55 comp = p.split(':')
56 if len(comp) != 2 or len(comp[0]) > 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nturl2path.py 23 comp = url.split('|')
24 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
27 drive = comp[0][-1].upper()
29 components = comp[1].split('/')
30 for comp in components:
31 if comp:
32 path = path + '\\' + urllib.unquote(comp)
55 comp = p.split(':')
56 if len(comp) != 2 or len(comp[0]) > 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nturl2path.py 23 comp = url.split('|')
24 if len(comp) != 2 or comp[0][-1] not in string.ascii_letters:
27 drive = comp[0][-1].upper()
29 components = comp[1].split('/')
30 for comp in components:
31 if comp:
32 path = path + '\\' + urllib.unquote(comp)
55 comp = p.split(':')
56 if len(comp) != 2 or len(comp[0]) > 1
    [all...]
  /external/libavc/test/encoder/
psnr.c 98 WORD32 comp; local
106 for(comp = 0; comp < 3; comp++)
108 df_psnr[comp] = 0;
109 pu1_buf1 = (UWORD8 *)ps_buf1->apv_bufs[comp];
110 pu1_buf2 = (UWORD8 *)ps_buf2->apv_bufs[comp];
111 wd = ps_buf1->au4_wd[comp];
112 ht = ps_buf1->au4_ht[comp];
113 strd1 = ps_buf1->au4_strd[comp];
    [all...]
  /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/jdiff/src/jdiff/
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;
ConstructorAPI.java 63 int comp = compareNullIsLeast(name_, constructorAPI.name_); local
64 if (comp != 0)
65 return comp;
66 comp = compareNullIsLeast(getSignature(), constructorAPI.getSignature());
67 if (comp != 0)
68 return comp;
69 comp = exceptions_.compareTo(constructorAPI.exceptions_);
70 if (comp != 0)
71 return comp;
72 comp = modifiers_.compareTo(constructorAPI.modifiers_)
    [all...]
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...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothProfileServiceConnection.aidl 28 void onServiceConnected(in ComponentName comp, in IBinder service);
29 void onServiceDisconnected(in ComponentName 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/libgdx/gdx/src/com/badlogic/gdx/utils/
Select.java 43 public <T> T select (T[] items, Comparator<T> comp, int kthLowest, int size) {
44 int idx = selectIndex(items, comp, kthLowest, size);
48 public <T> int selectIndex (T[] items, Comparator<T> comp, int kthLowest, int size) {
58 idx = fastMin(items, comp, size);
61 idx = fastMax(items, comp, size);
65 idx = quickSelect.select(items, comp, kthLowest, size);
71 private <T> int fastMin (T[] items, Comparator<T> comp, int size) {
74 int comparison = comp.compare(items[i], items[lowestIdx]);
83 private <T> int fastMax (T[] items, Comparator<T> comp, int size) {
86 int comparison = comp.compare(items[i], items[highestIdx])
    [all...]
QuickSelect.java 27 private Comparator<? super T> comp; field in class:QuickSelect
29 public int select (T[] items, Comparator<T> comp, int n, int size) {
31 this.comp = comp;
40 if (comp.compare(array[i], pivotValue) < 0) {
74 if (comp.compare(left, mid) > 0) {
75 if (comp.compare(mid, right) > 0) {
77 } else if (comp.compare(left, right) > 0) {
83 if (comp.compare(left, right) > 0) {
85 } else if (comp.compare(mid, right) > 0)
    [all...]
  /external/libvpx/libvpx/vp8/common/
onyxd.h 46 void vp8dx_set_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst, int x);
48 int vp8dx_get_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst);
50 int vp8dx_receive_compressed_data(struct VP8D_COMP* comp,
53 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);
55 vpx_codec_err_t vp8dx_get_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
56 vpx_codec_err_t vp8dx_set_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyxd.h 46 void vp8dx_set_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst, int x);
48 int vp8dx_get_setting(struct VP8D_COMP* comp, VP8D_SETTING oxst);
50 int vp8dx_receive_compressed_data(struct VP8D_COMP* comp,
53 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);
55 vpx_codec_err_t vp8dx_get_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
56 vpx_codec_err_t vp8dx_set_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
  /hardware/intel/common/libmix/mix_common/src/
mixlog.h 15 void mix_log_func(const gchar* comp, gint level, const gchar *file,
38 #define mix_log(comp, level, format, ...) \
39 mix_log_func(comp, level, __FILE__, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
43 #define mix_log(comp, level, format, ...)
  /external/icu/icu4c/source/layout/
LigatureSubstSubtables.cpp 35 le_uint16 comp; local
37 for (comp = 0; comp < compCount; comp += 1) {
42 if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) {
47 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
51 while (comp > 0) {
55 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/libxml2/
pattern.c 83 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 in struct:_xmlStreamCtxt
119 static void xmlFreeStreamComp(xmlStreamCompPtr comp);
183 xmlPatternPtr comp; /* the result */ member in struct:_xmlPatParserContext
226 * @comp: an XSLT comp
228 * Free up the memory allocated by @comp
231 xmlFreePattern(xmlPatternPtr comp) {
1861 xmlStreamCompPtr comp; local
    [all...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>