Searched defs:comp (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmb_utils.cpp25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width) argument
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, uint argument
[all...]
H A Didct.cpp122 int *blk, uint8 *comp, int width
255 *comp++ = a;
256 *comp++ = a;
257 *comp++ = a;
258 *comp++ = a;
259 *comp++ = a;
260 *comp++ = a;
261 *comp++ = a;
262 *comp++ = a;
264 comp
121 idct_intra( int *blk, uint8 *comp, int width ) argument
[all...]
H A Didct_vca.cpp419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width) argument
427 comp -= offset;
437 *((uint32*)(comp += offset)) = word;
438 *((uint32*)(comp + 4)) = word;
448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width) argument
455 comp -= offset;
485 *((int32*)(comp += offset)) = word;
498 *((int32*)(comp + 4)) = word;
505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width) argument
512 comp
578 idctrow4_intra(int16 *blk, PIXEL *comp, int width) argument
[all...]
H A Dblock_idct.cpp251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
256 int16 *coeff_in = mblock->block[comp];
260 int nz_coefs = mblock->no_coeff[comp];
261 uint8 *bitmapcol = mblock->bitmapcol[comp];
262 uint8 bitmaprow = mblock->bitmaprow[comp];
307 void idct_intra(int *block, uint8 *comp, int width);
311 void idctref_intra(int *block, uint8 *comp, int width);
621 int16 *blk, PIXEL *comp, int width
710 *((int32*)(comp)) = word;
726 *((int32*)(comp
250 BlockIDCT_intra( MacroBlock *mblock, PIXEL *c_comp, int comp, int width) argument
620 idctrow_intra( int16 *blk, PIXEL *comp, int width ) argument
[all...]
H A Dcombined_decode.cpp360 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...]
H A Ddatapart_decode.cpp525 int comp; local
552 for (comp = 0; comp < 6; comp++)
554 status = PV_DecodePredictedIntraDC(comp, stream, (*DC + comp)); /* 03/01/01 */
560 for (comp = 0; comp < 6; comp++)
562 (*DC)[comp]
581 int comp; local
633 int comp; local
[all...]
H A Ddcac_prediction.cpp30 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];
28 doDCACPrediction( VideoDecData *video, int comp, int16 *q_block, int *direction ) argument
206 doDCACPrediction_I( VideoDecData *video, int comp, int16 *q_block ) argument
[all...]
H A Dmb_motion_comp.cpp553 Vop *comp; local
583 comp = video->currVop;
585 c_comp = comp->yChan + offset;
586 cu_comp = comp->uChan + (offset >> 2) + (xpos >> 2);
587 cv_comp = comp->vChan + (offset >> 2) + (xpos >> 2);
H A Dvlc_dequant.cpp50 int VlcDequantMpegIntraBlock(void *vid, int comp, int switched, argument
56 int16 *datablock = video->mblock->block[comp]; /* 10/20/2000, assume it has been reset of all-zero !!!*/
84 dcac_row = (*DCAC_row)[B_Xtab[comp]];
85 dcac_col = (*DCAC_col)[B_Ytab[comp]];
99 dc_scaler = (comp < 4) ? video->mblock->DCScalarLum : video->mblock->DCScalarChr;
107 doDCACPrediction(video, comp, datablock, &direction);
110 if (CBP & (1 << (5 - comp)))
367 (*DC)[comp] = datablock[0];
383 int VlcDequantMpegInterBlock(void *vid, int comp, argument
389 int16 *datablock = video->mblock->block[comp]; /* 1
502 VlcDequantH263IntraBlock(VideoDecData *video, int comp, int switched, uint8 *bitmapcol, uint8 *bitmaprow) argument
805 VlcDequantH263IntraBlock_SH(VideoDecData *video, int comp, uint8 *bitmapcol, uint8 *bitmaprow) argument
1066 VlcDequantH263InterBlock(VideoDecData *video, int comp, uint8 *bitmapcol, uint8 *bitmaprow) argument
[all...]
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java167 private static int computePrePostMul(int alpha, int comp) { argument
171 int premul = Math.round(alpha * comp / 255.f);
/frameworks/base/services/java/com/android/server/
H A DRecognitionManagerService.java43 ComponentName comp = getCurRecognizer();
44 if (comp == null) {
46 comp = findAvailRecognizer(null);
47 if (comp != null) {
48 setCurRecognizer(comp);
54 int change = isPackageDisappearing(comp.getPackageName());
59 } else if (isPackageModified(comp.getPackageName())) {
60 setCurRecognizer(findAvailRecognizer(comp.getPackageName()));
72 ComponentName comp = getCurRecognizer();
73 if (comp !
125 setCurRecognizer(ComponentName comp) argument
[all...]
H A DDevicePolicyManagerService.java884 public void getRemoveWarning(ComponentName comp, final RemoteCallback result) { argument
889 ActiveAdmin admin = getActiveAdminUncheckedLocked(comp);
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DICompositeContext.java42 public ICompositeContext(Composite comp, ColorModel src, ColorModel dst){ argument
43 composite = comp;
/frameworks/base/awt/org/apache/harmony/awt/gl/render/
H A DBlitter.java41 Composite comp, Color bgcolor,
46 AffineTransform sysxform, Composite comp, Color bgcolor,
51 Composite comp, Color bgcolor, MultiRectArea clip);
38 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) argument
44 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) argument
49 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
H A DNullBlitter.java42 AffineTransform xform, Composite comp, Color bgcolor,
48 Composite comp, Color bgcolor, MultiRectArea clip) {
52 Surface dstSurf, int width, int height, Composite comp,
40 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) argument
46 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) argument
51 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
H A DNativeImageBlitter.java54 AffineTransform xform, Composite comp, Color bgcolor,
59 sysxform, xform, comp, bgcolor, clip);
63 sysxform, comp, bgcolor, clip);
74 sysxform, comp, bgcolor, clip);
81 Composite comp, Color bgcolor, MultiRectArea clip) {
85 sysxform, comp, bgcolor, clip);
94 width, height, comp, bgcolor, clip);
101 sysxform, comp, bgcolor, clip);
112 sysxform, comp, bgcolor, clip);
119 Surface dstSurf, int width, int height, Composite comp,
52 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) argument
79 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) argument
118 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
H A DJavaBlitter.java84 AffineTransform xform, Composite comp, Color bgcolor,
89 sysxform, comp, bgcolor, clip);
100 sysxform, comp, bgcolor, clip);
107 Composite comp, Color bgcolor, MultiRectArea clip) {
119 width, height, comp, bgcolor, clip);
136 sysxform, comp, bgcolor, clip);
142 Surface dstSurf, int width, int height, Composite comp,
149 width, height, comp, bgcolor, clip);
155 int width, int height, Composite comp, Color bgcolor,
221 if(comp instanceo
82 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) argument
105 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) argument
141 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
152 javaBlt(int srcX, int srcY, int srcW, int srcH, ColorModel srcCM, Raster srcRast, int dstX, int dstY, int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
351 transformedBlit(ColorModel srcCM, Raster srcR, int srcX, int srcY, ColorModel dstCM, WritableRaster dstR, int dstX, int dstY, int width, int height, AffineTransform at, Composite comp, Color bgcolor,MultiRectArea clip) argument
[all...]
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Duheap.h23 /// \brief Returns true if the given range is a heap under \p comp.
25 /// comp(node,child1) is false and comp(node,child2) is false.
30 bool is_heap (RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
34 if (comp (*first, *iChild) || (++iChild < last && comp (*first, *iChild)))
40 /// At completion, is_heap (first, last, comp) is true.
46 void make_heap (RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
53 iChild += comp (first[iChild], first[iChild + 1]);
54 if (comp (firs
67 push_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
88 pop_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
100 sort_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
[all...]
H A Ductralgo.h456 inline void sort (Container& ctr, Compare comp) argument
458 sort (ctr.begin(), ctr.end(), comp);
474 inline void stable_sort (Container& ctr, Compare comp) argument
476 stable_sort (ctr.begin(), ctr.end(), comp);
H A Dualgo.h451 Compare comp; local
452 return (comp (*i1, *i2) ? -1 : (comp (*i2, *i1) ? 1 : 0));
483 void stable_sort (RandomAccessIterator first, RandomAccessIterator last, Compare comp) argument
486 for (j = i; j-- > first && !comp(*j, *i););
H A Dupredalgo.h70 mismatch (InputIterator first1, InputIterator last1, InputIterator first2, BinaryPredicate comp) argument
72 while (first1 != last1 && comp(*first1, *first2))
83 inline bool equal (InputIterator first1, InputIterator last1, InputIterator first2, BinaryPredicate comp) argument
85 return (mismatch (first1, last1, first2, comp).first == last1);
209 /// for every iterator j in [first, i), comp(*j, value) is true.
215 ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last, const T& value, StrictWeakOrdering comp) argument
220 if (comp (*mid, value))
233 inline ForwardIterator binary_search (ForwardIterator first, ForwardIterator last, const T& value, StrictWeakOrdering comp) argument
235 ForwardIterator found = lower_bound (first, last, value, comp);
236 return ((found == last || comp(valu
245 upper_bound(ForwardIterator first, ForwardIterator last, const T& value, StrictWeakOrdering comp) argument
263 equal_range(ForwardIterator first, ForwardIterator last, const T& value, StrictWeakOrdering comp) argument
280 nth_element(RandomAccessIterator first, RandomAccessIterator, RandomAccessIterator last, Compare comp) argument
289 search(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate comp) argument
306 find_end(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate comp) argument
322 search_n(Iterator first, Iterator last, size_t count, const T& value, BinaryPredicate comp) argument
338 find_first_of(InputIterator first1, InputIterator last1, ForwardIterator first2, ForwardIterator last2, BinaryPredicate comp) argument
352 includes(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, StrictWeakOrdering comp) argument
370 set_union(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, StrictWeakOrdering comp) argument
387 set_intersection(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, StrictWeakOrdering comp) argument
403 set_difference(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, StrictWeakOrdering comp) argument
419 set_symmetric_difference(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, StrictWeakOrdering comp) argument
437 is_sorted(ForwardIterator first, ForwardIterator last, StrictWeakOrdering comp) argument
449 lexicographical_compare(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, BinaryPredicate comp) argument
465 next_permutation(BidirectionalIterator first, BidirectionalIterator last, StrictWeakOrdering comp) argument
489 prev_permutation(BidirectionalIterator first, BidirectionalIterator last, StrictWeakOrdering comp) argument
512 max_element(ForwardIterator first, ForwardIterator last, BinaryPredicate comp) argument
525 min_element(ForwardIterator first, ForwardIterator last, BinaryPredicate comp) argument
539 partial_sort(RandomAccessIterator first, RandomAccessIterator, RandomAccessIterator last, StrictWeakOrdering comp) argument
548 partial_sort_copy(InputIterator first, InputIterator last, RandomAccessIterator result_first, RandomAccessIterator result_last, StrictWeakOrdering comp) argument
[all...]
/frameworks/base/awt/java/awt/
H A DMouseDispatcher.java67 private static Point getAbsLocation(Component comp) { argument
70 // for (Component parent = comp; parent != null; parent = parent.parent) {
154 private void setCursor(Component comp) { argument
155 if (comp == null) {
160 grabOwner.isShowing() ? grabOwner : comp);
165 int x, int y, Component comp) {
166 if (comp.isIndirectlyEnabled()) {
168 new MouseEvent(comp, id, when, mod, x, y, 0, false));
169 comp.setMouseExitedExpected(id == MouseEvent.MOUSE_ENTERED);
171 comp
164 postMouseEnterExit(int id, int mod, long when, int x, int y, Component comp) argument
[all...]
H A DGraphics2D.java353 * @param comp
356 public abstract void setComposite(Composite comp); argument
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidJavaBlitter.java79 AffineTransform xform, Composite comp, Color bgcolor,
84 sysxform, comp, bgcolor, clip);
95 sysxform, comp, bgcolor, clip);
102 Composite comp, Color bgcolor, MultiRectArea clip) {
114 width, height, comp, bgcolor, clip);
131 sysxform, comp, bgcolor, clip);
137 Surface dstSurf, int width, int height, Composite comp,
156 Surface dstSurf, int width, int height, Composite comp,
163 width, height, comp, bgcolor, clip);
170 int width, int height, Composite comp, Colo
77 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) argument
100 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) argument
136 simpleBlit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
155 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
167 javaBlt(int srcX, int srcY, int srcW, int srcH, ColorModel srcCM, Raster srcRast, int dstX, int dstY, int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
338 transformedBlit(ColorModel srcCM, Raster srcR, int srcX, int srcY, ColorModel dstCM, WritableRaster dstR, int dstX, int dstY, int width, int height, AffineTransform at, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DUsageStatsService.java158 String comp = in.readString();
159 if (localLOGV) Slog.v(TAG, "Component: " + comp);
161 mLaunchTimes.put(comp, times);
177 void addLaunchCount(String comp) { argument
178 TimeStats times = mLaunchTimes.get(comp);
181 mLaunchTimes.put(comp, times);
186 void addLaunchTime(String comp, int millis) { argument
187 TimeStats times = mLaunchTimes.get(comp);
190 mLaunchTimes.put(comp, times);

Completed in 528 milliseconds

12