Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
Dhmm_intrnl.h25 #define U(BASE) HMM_UNIQUE(BASE) macro
29 ((U(size_bau)) ~ (((U(size_bau)) ~ (U(size_bau)) 0) >> 1))
33 (((char *) (PTR)) + ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
37 (((char *) (PTR)) - ((AAU_OFFSET) * ((U(size_aau)) HMM_ADDR_ALIGN_UNIT)))
41 AAUS_FORWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
45 AAUS_BACKWARD((PTR), (BAU_OFFSET) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT))
121 void U(into_free_collection)(U(descriptor) *desc, head_record *head_ptr);
123 void U(out_of_free_collection)(U(descriptor) *desc, head_record *head_ptr);
125 void *U(alloc_from_bin)(
126 U(descriptor) *desc, ptr_record *bin_front_ptr, U(size_bau) n_baus);
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
Dhmm_base.c18 void U(init)(U(descriptor) *desc) { in U() function
26 void U(dll_remove)( in U() function
37 void U(into_free_collection)( in U() function
39 U(descriptor) *desc, in U()
45 U(avl_insert)((U(avl_avl) *) & (desc->avl_tree_root), ptr_rec_ptr); in U()
71 void *U(alloc_from_bin)( in U() function
73 U(descriptor) *desc, in U()
79 U(size_bau) n_baus) { in U()
81 U(size_bau) rem_baus; in U()
95 U(dll_remove)(ptr_rec_ptr); in U()
[all …]
Dhmm_largest.c18 U(size_aau) U(largest_available)(U(descriptor) *desc) { in U() function
19 U(size_bau) largest; in U()
32 U(avl_search)( in U()
33 (U(avl_avl) *) & (desc->avl_tree_root), in U()
34 (U(size_bau)) ~(U(size_bau)) 0, AVL_LESS))); in U()
39 register U(size_bau) lf_size; in U()
55 ((largest * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT)) - HEAD_AAUS) : in U()
Dhmm_alloc.c18 void *U(alloc)(U(descriptor) *desc, U(size_aau) n) { in U() function
30 U(into_free_collection)(desc, (head_record *)(desc->last_freed)); in U()
49 U(avl_search)( in U()
50 (U(avl_avl) *) & (desc->avl_tree_root), (U(size_bau)) n, in U()
56 U(alloc_from_bin)(desc, ptr_rec_ptr, (U(size_bau)) n) : 0); in U()
Dhmm_resize.c18 int U(resize)(U(descriptor) *desc, void *mem, U(size_aau) n) { in U() function
19 U(size_aau) i; in U()
70 U(out_of_free_collection)(desc, next_head_ptr); in U()
73 (head_record *) BAUS_FORWARD(head_ptr, (U(size_bau)) i); in U()
94 rem_head_ptr->previous_block_size = (U(size_bau)) n; in U()
95 rem_head_ptr->block_size = (U(size_bau)) i; in U()
102 U(into_free_collection)(desc, (head_record *)(desc->last_freed)); in U()
110 head_ptr->block_size = (U(size_bau)) n; in U()
111 next_head_ptr->previous_block_size = (U(size_bau)) i; in U()
Dhmm_shrink.c18 void U(shrink_chunk)(U(descriptor) *desc, U(size_bau) n_baus_to_shrink) { in U() function
40 U(size_bau) bs = BLOCK_BAUS(last_block); in U()
50 (n_baus_to_shrink <= (U(size_bau))(bs - MIN_BLOCK_BAUS)); in U()
55 (U(size_bau))(bs + DUMMY_END_BLOCK_BAUS)))) { in U()
80 U(into_free_collection)(desc, last_block); in U()
Dhmm_grow.c18 void U(grow_chunk)(U(descriptor) *desc, void *end, U(size_bau) n_baus) { in U() function
46 U(free)(desc, HEAD_TO_PTR_REC(end)); in U()
Dhmm_true.c18 U(size_aau) U(true_size)(void *payload_ptr) { in U() function
29 (BLOCK_BAUS(head_ptr) * ((U(size_aau)) HMM_BLOCK_ALIGN_UNIT)) - in U()
/hardware/samsung_slsi/exynos5/libswconverter/
Dswconvertor.c524 unsigned int Y, U, V; in csc_RGB565_to_YUV420P() local
555 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_RGB565_to_YUV420P()
556 U = U >> 8; in csc_RGB565_to_YUV420P()
557 U += 128; in csc_RGB565_to_YUV420P()
562 pDstU[uIndex++] = (unsigned char)U; in csc_RGB565_to_YUV420P()
598 unsigned int Y, U, V; in csc_RGB565_to_YUV420SP() local
628 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_RGB565_to_YUV420SP()
629 U = U >> 8; in csc_RGB565_to_YUV420SP()
630 U += 128; in csc_RGB565_to_YUV420SP()
635 pDstUV[uvIndex++] = (unsigned char)U; in csc_RGB565_to_YUV420SP()
[all …]
Dcsc_ARGB8888_to_YUV420SP_NEON.s84 vmls.u16 q8,q4,q11 @q0:U -(38 * R[k]) @128<<6+ 32 + u>>2
90 vmls.u16 q7,q5,q14 @q0:U -(94 * G[k]) @128<<6+ 32 + v>>2
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_postproc.c882 int Y = 0, U = 0, V = 0; in vp9_post_proc_frame()
900 U = B_PREDICTION_MODE_colors[bmi->as_mode][1]; in vp9_post_proc_frame()
903 vp9_blend_b(yl + bx, ul + (bx >> 1), vl + (bx >> 1), Y, U, V, in vp9_post_proc_frame()
915 U = MB_PREDICTION_MODE_colors[mi->mbmi.mode][1]; in vp9_post_proc_frame()
919 Y, U, V, 0xc000, y_stride); in vp9_post_proc_frame()
946 int Y = 0, U = 0, V = 0; in vp9_post_proc_frame()
950 U = MV_REFERENCE_FRAME_colors[mi->mbmi.ref_frame][1]; in vp9_post_proc_frame()
954 Y, U, V, 0xc000, y_stride); in vp9_post_proc_frame()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dpostproc.c1098 int Y = 0, U = 0, V = 0; in vp8_post_proc_frame() local
1119 U = B_PREDICTION_MODE_colors[bmi->as_mode][1]; in vp8_post_proc_frame()
1123 (yl+bx, ul+(bx>>1), vl+(bx>>1), Y, U, V, 0xc000, y_stride); in vp8_post_proc_frame()
1136 U = MB_PREDICTION_MODE_colors[mi->mbmi.mode][1]; in vp8_post_proc_frame()
1140 (y_ptr+x, u_ptr+(x>>1), v_ptr+(x>>1), Y, U, V, 0xc000, y_stride); in vp8_post_proc_frame()
1170 int Y = 0, U = 0, V = 0; in vp8_post_proc_frame() local
1175 U = MV_REFERENCE_FRAME_colors[mi->mbmi.ref_frame][1]; in vp8_post_proc_frame()
1179 (y_ptr+x, u_ptr+(x>>1), v_ptr+(x>>1), Y, U, V, 0xc000, y_stride); in vp8_post_proc_frame()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
Dloopfilter_filters_altivec.asm837 lvx \V, 0, r0 ;# mask to concatenate active U,V pels
840 .macro hread_uv Dest, U, V, Offs, VMask
841 lvx \U, \Offs, r3
843 vperm \Dest, \U, \V, \VMask ;# Dest = active part of U then V
846 .macro hwrite_uv New, U, V, Offs, Umask, Vmask
847 vperm \U, \New, \U, \Umask ;# Combine new pels with siblings
849 stvx \U, \Offs, r3 ;# Write to frame buffer
853 ;# Process U,V in parallel.
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/arm/neon/
Dvp8_vpxyv12_copysrcframe_func_neon.asm142 ;Copy U & V planes
210 ;copy last line for U & V if uv_height is odd
Dvp8_vpxyv12_copyframe_func_neon.asm96 ;Copy U & V planes
Dvp8_vpxyv12_extendframeborders_neon.asm129 ;Border copy for U, V planes
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
Dgtest.h693 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \
856 template <GTEST_1_TYPENAMES_(U)>
857 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {}
861 template <GTEST_1_TYPENAMES_(U)>
862 tuple& operator=(const GTEST_1_TUPLE_(U)& t) {
868 template <GTEST_1_TYPENAMES_(U)>
869 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
889 template <GTEST_2_TYPENAMES_(U)>
890 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {}
896 template <GTEST_2_TYPENAMES_(U)>
[all …]
/hardware/intel/common/libva/test/encode/
Davcenc.c404 const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2; in upload_yuv_to_surface() local
407 u_dst = surface_p + surface_image.offsets[U]; in upload_yuv_to_surface()
413 u_dst += surface_image.pitches[U]; in upload_yuv_to_surface()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
Dvp8_subtract_armv6.asm88 ; Subtract U block
/hardware/qcom/msm8x84/original-kernel-headers/sound/
Dasound.h943 #define SNDRV_CTL_EVENT_MASK_REMOVE (~0U) /* element was removed */
/hardware/qcom/msm8x84/kernel-headers/sound/
Dasound.h961 #define SNDRV_CTL_EVENT_MASK_REMOVE (~0U)
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
Domx_vdec_msm8974.cpp10115 img->mPlane[MediaImage::U].mOffset = planeWidth * planeHeight; in describeColorFormat()
10116 img->mPlane[MediaImage::U].mColInc = 2; //interleaved UV in describeColorFormat()
10117 img->mPlane[MediaImage::U].mRowInc = in describeColorFormat()
10119 img->mPlane[MediaImage::U].mHorizSubsampling = 2; in describeColorFormat()
10120 img->mPlane[MediaImage::U].mVertSubsampling = 2; in describeColorFormat()
/hardware/intel/img/libdrm/
Daclocal.m48472 # When using ansi2knr, U may be empty or an underscore; expand it
8473 U=`sed -n 's/^U = //p' < "$mf"`
8480 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
Dltmain.sh7354 $MV "${realname}U" "$realname" )
Dconfigure13499 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do