Home
last modified time | relevance | path

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

123

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c49 short *ip = input; in vp8_short_idct4x4llm_dspr2() local
59 prefetch_load_short(ip + 8); in vp8_short_idct4x4llm_dspr2()
62 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_dspr2()
63 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2()
65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
70 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
73 temp3 = (ip[5] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
74 temp4 = ip[13] + ((ip[13] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Ddct.c18 short *ip = input; in vp8_short_fdct4x4_c() local
23 a1 = ((ip[0] + ip[3]) * 8); in vp8_short_fdct4x4_c()
24 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c()
25 c1 = ((ip[1] - ip[2]) * 8); in vp8_short_fdct4x4_c()
26 d1 = ((ip[0] - ip[3]) * 8); in vp8_short_fdct4x4_c()
34 ip += pitch / 2; in vp8_short_fdct4x4_c()
38 ip = output; in vp8_short_fdct4x4_c()
42 a1 = ip[0] + ip[12]; in vp8_short_fdct4x4_c()
43 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c()
44 c1 = ip[4] - ip[8]; in vp8_short_fdct4x4_c()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Didctllm.c36 short *ip = input; in vp8_short_idct4x4llm_c() local
43 a1 = ip[0] + ip[8]; in vp8_short_idct4x4llm_c()
44 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c()
46 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_c()
51 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_c()
60 ip++; in vp8_short_idct4x4llm_c()
64 ip = output; in vp8_short_idct4x4llm_c()
69 a1 = ip[0] + ip[2]; in vp8_short_idct4x4llm_c()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dvp8_fdct4x4_test.cc30 const int16_t *ip = input; in reference_idct4x4() local
34 const int a1 = ip[0] + ip[8]; in reference_idct4x4()
35 const int b1 = ip[0] - ip[8]; in reference_idct4x4()
36 const int temp1 = (ip[4] * sinpi8sqrt2) >> 16; in reference_idct4x4()
37 const int temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in reference_idct4x4()
39 const int temp3 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in reference_idct4x4()
40 const int temp4 = (ip[12] * sinpi8sqrt2) >> 16; in reference_idct4x4()
46 ++ip; in reference_idct4x4()
49 ip = output; in reference_idct4x4()
52 const int a1 = ip[0] + ip[2]; in reference_idct4x4()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
Dvp8_shortwalsh4x4_neon.asm31 ;transpose d0, d1, d2, d3. Then, d0=ip[0], d1=ip[1], d2=ip[2], d3=ip[3]
40 vadd.s16 d4, d0, d2 ; ip[0] + ip[2]
41 vadd.s16 d5, d1, d3 ; ip[1] + ip[3]
42 vsub.s16 d6, d1, d3 ; ip[1] - ip[3]
43 vsub.s16 d7, d0, d2 ; ip[0] - ip[2]
45 vshl.s16 d4, d4, #2 ; a1 = (ip[0] + ip[2]) << 2
46 vshl.s16 d5, d5, #2 ; d1 = (ip[1] + ip[3]) << 2
47 vshl.s16 d6, d6, #2 ; c1 = (ip[1] - ip[3]) << 2
49 vshl.s16 d7, d7, #2 ; b1 = (ip[0] - ip[2]) << 2
59 ;transpose d0, d1, d2, d3, Then, d0=ip[0], d1=ip[4], d2=ip[8], d3=ip[12]
[all …]
Dshortfdct_neon.asm43 ; transpose d0=ip[0], d1=ip[1], d2=ip[2], d3=ip[3]
50 vadd.s16 d4, d0, d3 ; a1 = ip[0] + ip[3]
51 vadd.s16 d5, d1, d2 ; b1 = ip[1] + ip[2]
52 vsub.s16 d6, d1, d2 ; c1 = ip[1] - ip[2]
53 vsub.s16 d7, d0, d3 ; d1 = ip[0] - ip[3]
72 ; transpose d0=ip[0], d1=ip[4], d2=ip[8], d3=ip[12]
80 vadd.s16 d4, d0, d3 ; a1 = ip[0] + ip[12]
81 vadd.s16 d5, d1, d2 ; b1 = ip[4] + ip[8]
82 vsub.s16 d6, d1, d2 ; c1 = ip[4] - ip[8]
84 vsub.s16 d7, d0, d3 ; d1 = ip[0] - ip[12]
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
Diwalsh_sse2.asm26 movdqa xmm0, [rcx + 0] ;ip[4] ip[0]
27 movdqa xmm1, [rcx + 16] ;ip[12] ip[8]
30 pshufd xmm2, xmm1, 4eh ;ip[8] ip[12]
31 movdqa xmm3, xmm0 ;ip[4] ip[0]
33 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
34 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
57 pshufd xmm2, xmm1, 4eh ;ip[8] ip[12]
58 movdqa xmm3, xmm4 ;ip[4] ip[0]
62 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
63 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
Diwalsh_mmx.asm25 movq mm0, [rdx + 0] ;ip[0]
26 movq mm1, [rdx + 8] ;ip[4]
29 movq mm2, [rdx + 16] ;ip[8]
30 movq mm3, [rdx + 24] ;ip[12]
37 paddw mm4, mm3 ;ip[0] + ip[12] aka al
38 paddw mm5, mm2 ;ip[4] + ip[8] aka bl
44 psubw mm0, mm3 ;ip[0] - ip[12] aka d1
45 psubw mm1, mm2 ;ip[4] - ip[8] aka c1
67 punpckldq mm0, mm6 ; 30 20 10 00 aka ip[0]
68 punpckhdq mm4, mm6 ; 31 21 11 01 aka ip[4]
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
Didctllm_altivec.asm36 lvx v0, 0, r3 ;# input ip[0], ip[ 4]
37 lvx v1, r10, r3 ;# input ip[8], ip[12]
42 vaddsws v6, v2, v3 ;# a1 = ip[0]+ip[8]
43 vsubsws v7, v2, v3 ;# b1 = ip[0]-ip[8]
48 vaddsws v4, v4, v0 ;# ip[ 4] * sin(pi/8) * sqrt(2)
52 vsraw v5, v5, v12 ;# ip[12] * cos(pi/8) * sqrt(2)
59 vaddsws v3, v3, v1 ;# ip[12] * sin(pi/8) * sqrt(2)
62 vsraw v5, v5, v12 ;# ip[ 4] * cos(pi/8) * sqrt(2)
87 vaddsws v6, v0, v2 ;# a1 = ip[0]+ip[8]
88 vsubsws v7, v0, v2 ;# b1 = ip[0]-ip[8]
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
Didct_v6.asm42 smulbt r9, r5, r6 ; (ip[5] * cospi8sqrt2minus1) >> 16
43 smulbb r7, r5, r6 ; (ip[4] * cospi8sqrt2minus1) >> 16
44 smulwt r10, r4, r6 ; (ip[5] * sinpi8sqrt2) >> 16
45 smulwb r8, r4, r6 ; (ip[4] * sinpi8sqrt2) >> 16
47 smulbt r11, r5, r12 ; (ip[13] * cospi8sqrt2minus1) >> 16
52 smulwt r7, r4, r12 ; (ip[13] * sinpi8sqrt2) >> 16
53 smulbb r9, r5, r12 ; (ip[12] * cospi8sqrt2minus1) >> 16
54 smulwb r10, r4, r12 ; (ip[12] * sinpi8sqrt2) >> 16
91 smulbt r9, r5, r6 ; (ip[5] * cospi8sqrt2minus1) >> 16
92 smulbt r7, r5, r0 ; (ip[1] * cospi8sqrt2minus1) >> 16
[all …]
/hardware/ti/omap4-aah/
Dstacktrace.c47 intptr_t ip = (intptr_t)_Unwind_GetIP(context); in trace_function() local
48 if (ip) { in trace_function()
49 state->addrs[0] = ip; in trace_function()
/hardware/ti/omap4xxx/
Dstacktrace.c47 intptr_t ip = (intptr_t)_Unwind_GetIP(context); in trace_function() local
48 if (ip) { in trace_function()
49 state->addrs[0] = ip; in trace_function()
/hardware/qcom/msm8996/original-kernel-headers/linux/
Dmsm_ipa.h917 enum ipa_ip_type ip; member
938 enum ipa_ip_type ip; member
971 enum ipa_ip_type ip; member
999 enum ipa_ip_type ip; member
1012 enum ipa_ip_type ip; member
1049 enum ipa_ip_type ip; member
1070 enum ipa_ip_type ip; member
1103 enum ipa_ip_type ip; member
1132 enum ipa_ip_type ip; member
1147 enum ipa_ip_type ip; member
[all …]
/hardware/qcom/msm8996/kernel-headers/linux/
Dmsm_ipa.h586 enum ipa_ip_type ip; member
595 enum ipa_ip_type ip; member
611 enum ipa_ip_type ip; member
624 enum ipa_ip_type ip; member
630 enum ipa_ip_type ip; member
645 enum ipa_ip_type ip; member
655 enum ipa_ip_type ip; member
671 enum ipa_ip_type ip; member
684 enum ipa_ip_type ip; member
690 enum ipa_ip_type ip; member
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
Dfwalsh_sse2.asm41 punpckldq xmm0, xmm2 ; ip[1] ip[0]
42 punpckhdq xmm1, xmm2 ; ip[3] ip[2]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_idct.c27 const int16_t *ip = input; in vp9_iwht4x4_16_add_c() local
31 a1 = ip[0] >> UNIT_QUANT_SHIFT; in vp9_iwht4x4_16_add_c()
32 c1 = ip[1] >> UNIT_QUANT_SHIFT; in vp9_iwht4x4_16_add_c()
33 d1 = ip[2] >> UNIT_QUANT_SHIFT; in vp9_iwht4x4_16_add_c()
34 b1 = ip[3] >> UNIT_QUANT_SHIFT; in vp9_iwht4x4_16_add_c()
46 ip += 4; in vp9_iwht4x4_16_add_c()
50 ip = output; in vp9_iwht4x4_16_add_c()
52 a1 = ip[4 * 0]; in vp9_iwht4x4_16_add_c()
53 c1 = ip[4 * 1]; in vp9_iwht4x4_16_add_c()
54 d1 = ip[4 * 2]; in vp9_iwht4x4_16_add_c()
[all …]
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
DLocEngAdapter.h163 setServer(unsigned int ip, int port, in setServer() argument
166 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
DLocEngAdapter.h178 setServer(unsigned int ip, int port, in setServer() argument
181 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
DLocEngAdapter.h174 setServer(unsigned int ip, int port, in setServer() argument
177 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/qcom/gps/loc_api/libloc_api_50001/
DLocEngAdapter.h173 setServer(unsigned int ip, int port, in setServer() argument
176 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
DLocEngAdapter.h173 setServer(unsigned int ip, int port, in setServer() argument
176 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
DLocEngAdapter.h174 setServer(unsigned int ip, int port, in setServer() argument
177 return mLocApi->setServer(ip, port, type); in setServer()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_dct.c606 const int16_t *ip = input; in vp9_fwht4x4_c() local
610 a1 = ip[0 * stride]; in vp9_fwht4x4_c()
611 b1 = ip[1 * stride]; in vp9_fwht4x4_c()
612 c1 = ip[2 * stride]; in vp9_fwht4x4_c()
613 d1 = ip[3 * stride]; in vp9_fwht4x4_c()
627 ip++; in vp9_fwht4x4_c()
630 ip = output; in vp9_fwht4x4_c()
634 a1 = ip[0]; in vp9_fwht4x4_c()
635 b1 = ip[1]; in vp9_fwht4x4_c()
636 c1 = ip[2]; in vp9_fwht4x4_c()
[all …]
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
DLocApiRpc.h108 setServer(unsigned int ip, int port, LocServerType type);
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
DLocApiRpc.h108 setServer(unsigned int ip, int port, LocServerType type);

123