Searched defs:sq (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dsqrt_of_one_minus_x_squared.c23 int32_t sq; local
30 sq = WEBRTC_SPL_MUL_16_16(tmp, tmp); // x^2 in Q30
31 sq = 1073741823 - sq; // 1-x^2, where 1 ~= 0.99999999906 is 1073741823 in Q30
32 sq = WebRtcSpl_Sqrt(sq); // sqrt(1-x^2) in Q15
33 yQ15[m] = (int16_t)sq;
/external/elfutils/0.153/lib/
H A Dnext_prime.c59 size_t sq = divn * divn; local
61 while (sq < candidate && candidate % divn != 0)
63 size_t old_sq = sq;
65 sq += 4 * divn;
66 if (sq < old_sq)
/external/webrtc/src/common_audio/signal_processing/
H A Dsqrt_of_one_minus_x_squared.c23 WebRtc_Word32 sq; local
30 sq = WEBRTC_SPL_MUL_16_16(tmp, tmp); // x^2 in Q30
31 sq = 1073741823 - sq; // 1-x^2, where 1 ~= 0.99999999906 is 1073741823 in Q30
32 sq = WebRtcSpl_Sqrt(sq); // sqrt(1-x^2) in Q15
33 yQ15[m] = (WebRtc_Word16)sq;
/external/stlport/test/unit/
H A Dresolve_name.cpp50 struct sq struct
52 sq() {} function in struct:sq
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
20 short *sq = (short *) d->qcoeff; local
23 vp8_dequantize_b_impl_mmx(sq, dq, DQC);
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c16 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
20 short *sq = (short *) d->qcoeff; local
23 vp8_dequantize_b_impl_mmx(sq, dq, DQC);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_query.c58 struct softpipe_query* sq; local
68 sq = CALLOC_STRUCT( softpipe_query );
69 sq->type = type;
71 return (struct pipe_query *)sq;
86 struct softpipe_query *sq = softpipe_query(q); local
88 switch (sq->type) {
90 sq->start = softpipe->occlusion_count;
94 sq->start = 1000*os_time_get();
97 sq->so.primitives_storage_needed = 0;
99 sq
122 struct softpipe_query *sq = softpipe_query(q); local
162 struct softpipe_query *sq = softpipe_query(q); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_query.c74 struct svga_query *sq; local
78 sq = CALLOC_STRUCT(svga_query);
79 if (!sq)
82 sq->type = SVGA3D_QUERYTYPE_OCCLUSION;
84 sq->hwbuf = svga_winsys_buffer_create(svga,
87 sizeof *sq->queryResult);
88 if(!sq->hwbuf)
91 sq->queryResult = (SVGA3dQueryResult *)sws->buffer_map(sws,
92 sq->hwbuf,
94 if(!sq
123 struct svga_query *sq = svga_query( q ); local
137 struct svga_query *sq = svga_query( q ); local
181 struct svga_query *sq = svga_query( q ); local
215 struct svga_query *sq = svga_query( q ); local
[all...]
H A Dsvga_context.h369 struct svga_query *sq; member in struct:svga_context
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_query.c58 struct softpipe_query* sq; local
68 sq = CALLOC_STRUCT( softpipe_query );
69 sq->type = type;
71 return (struct pipe_query *)sq;
86 struct softpipe_query *sq = softpipe_query(q); local
88 switch (sq->type) {
90 sq->start = softpipe->occlusion_count;
94 sq->start = 1000*os_time_get();
97 sq->so.primitives_storage_needed = 0;
99 sq
122 struct softpipe_query *sq = softpipe_query(q); local
162 struct softpipe_query *sq = softpipe_query(q); local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_query.c74 struct svga_query *sq; local
78 sq = CALLOC_STRUCT(svga_query);
79 if (!sq)
82 sq->type = SVGA3D_QUERYTYPE_OCCLUSION;
84 sq->hwbuf = svga_winsys_buffer_create(svga,
87 sizeof *sq->queryResult);
88 if(!sq->hwbuf)
91 sq->queryResult = (SVGA3dQueryResult *)sws->buffer_map(sws,
92 sq->hwbuf,
94 if(!sq
123 struct svga_query *sq = svga_query( q ); local
137 struct svga_query *sq = svga_query( q ); local
181 struct svga_query *sq = svga_query( q ); local
215 struct svga_query *sq = svga_query( q ); local
[all...]
H A Dsvga_context.h369 struct svga_query *sq; member in struct:svga_context
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak78 # escape-for-shell-sq
80 # Usage: embeddable-text = $(call escape-for-shell-sq,text)
86 escape-for-shell-sq = $(subst ','\'',$(1))
88 # shell-sq
90 # Usage: single-quoted-and-escaped-text = $(call shell-sq,text)
92 shell-sq = '$(escape-for-shell-sq)'
124 # produces the same results as the `$(shell-sq)' function.
126 shell-wordify = $(if $(findstring $(newline),$(1)),$(_sw-esc-nl),$(shell-sq))
128 "$$(echo $(call escape-nl,$(shell-sq),
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h84 #define sq(x) ((x)*(x)) macro
/external/chromium_org/third_party/speex/libspeex/
H A Dmath_approx.h164 spx_word16_t sq; local
173 sq = MULT16_16_Q13(x, ADD16(A1, MULT16_16_Q13(x, ADD16(A2, MULT16_16_Q13(x, (A3))))));
174 ret = spx_sqrt(SHL32(EXTEND32(sq),13));
/external/speex/libspeex/
H A Dmath_approx.h164 spx_word16_t sq; local
173 sq = MULT16_16_Q13(x, ADD16(A1, MULT16_16_Q13(x, ADD16(A2, MULT16_16_Q13(x, (A3))))));
174 ret = spx_sqrt(SHL32(EXTEND32(sq),13));
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Darc.c200 double sq = v[0] * v[0] + v[1] * v[1]; local
201 return sqrt(sq);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.c200 double sq = v[0] * v[0] + v[1] * v[1]; local
201 return sqrt(sq);
/external/valgrind/main/coregrind/
H A Dm_signals.c2029 SigQueue *sq; local
2042 sq = tst->sig_queue;
2046 si->si_signo, sq->next, tid);
2054 if (sq->sigs[sq->next].si_signo != 0)
2056 sq->sigs[sq->next].si_signo, tid);
2058 sq->sigs[sq->next] = *si;
2059 sq
2075 SigQueue *sq; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsession.c505 struct sample_queue *sq; local
507 sq = list_entry(os->to_free.next, struct sample_queue, list);
508 list_del(&sq->list);
509 free(sq);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_pcb.c3888 struct sctp_queued_to_read *sq, *nsq; local
4225 TAILQ_FOREACH_SAFE(sq, &inp->read_queue, next, nsq) {
4227 if (sq->length)
4230 TAILQ_REMOVE(&inp->read_queue, sq, next);
4231 sctp_free_remote_addr(sq->whoFrom);
4233 so->so_rcv.sb_cc -= sq->length;
4234 if (sq->data) {
4235 sctp_m_freem(sq->data);
4236 sq->data = NULL;
4242 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), sq); local
5420 struct sctp_queued_to_read *sq, *nsq; local
5744 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_readq), sq); local
[all...]
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp244 static float computeNonProjectedTriLod (LodMode mode, const tcu::IVec2& dstSize, deInt32 srcSize, const tcu::Vec3& sq) argument
246 float dux = (sq.z() - sq.x()) * (float)srcSize;
247 float duy = (sq.y() - sq.x()) * (float)srcSize;
282 static float computeNonProjectedTriLod (LodMode mode, const tcu::IVec2& dstSize, const tcu::IVec2& srcSize, const tcu::Vec3& sq, const tcu::Vec3& tq) argument
284 float dux = (sq.z() - sq.x()) * (float)srcSize.x();
285 float duy = (sq.y() - sq
323 computeNonProjectedTriLod(LodMode mode, const tcu::IVec2& dstSize, const tcu::IVec3& srcSize, const tcu::Vec3& sq, const tcu::Vec3& tq, const tcu::Vec3& rq) argument
438 sampleTextureNonProjected(const SurfaceAccess& dst, const tcu::Texture1DView& src, const tcu::Vec4& sq, const ReferenceParams& params) argument
469 sampleTextureNonProjected(const SurfaceAccess& dst, const tcu::Texture2DView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const ReferenceParams& params) argument
502 sampleTextureProjected(const SurfaceAccess& dst, const tcu::Texture1DView& src, const tcu::Vec4& sq, const ReferenceParams& params) argument
538 sampleTextureProjected(const SurfaceAccess& dst, const tcu::Texture2DView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const ReferenceParams& params) argument
581 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[2+0], texCoord[4+0], texCoord[6+0]); local
593 const tcu::Vec4 sq = tcu::Vec4(texCoord[0], texCoord[1], texCoord[2], texCoord[3]); local
640 sampleTexture(const SurfaceAccess& dst, const tcu::TextureCubeView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const tcu::Vec4& rq, const ReferenceParams& params) argument
688 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
701 sampleTextureNonProjected(const SurfaceAccess& dst, const tcu::Texture2DArrayView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const tcu::Vec4& rq, const ReferenceParams& params) argument
738 tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
746 sampleTextureNonProjected(const SurfaceAccess& dst, const tcu::Texture1DArrayView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const ReferenceParams& params) argument
781 tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[2+0], texCoord[4+0], texCoord[6+0]); local
788 sampleTextureNonProjected(const SurfaceAccess& dst, const tcu::Texture3DView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const tcu::Vec4& rq, const ReferenceParams& params) argument
823 sampleTextureProjected(const SurfaceAccess& dst, const tcu::Texture3DView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const tcu::Vec4& rq, const ReferenceParams& params) argument
870 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
880 sampleTexture(const SurfaceAccess& dst, const tcu::TextureCubeArrayView& src, const tcu::Vec4& sq, const tcu::Vec4& tq, const tcu::Vec4& rq, const tcu::Vec4& qq, const ReferenceParams& params) argument
929 tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[4+0], texCoord[8+0], texCoord[12+0]); local
939 const tcu::Vec4 sq = tcu::Vec4(texCoord[0], texCoord[1], texCoord[2], texCoord[3]); local
1690 const tcu::Vec4 sq = tcu::Vec4(texCoord[0], texCoord[1], texCoord[2], texCoord[3]); local
1792 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[2+0], texCoord[4+0], texCoord[6+0]); local
1976 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
2155 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
2326 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[2+0], texCoord[4+0], texCoord[6+0]); local
2432 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
2622 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[4+0], texCoord[8+0], texCoord[12+0]); local
2804 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[2+0], texCoord[4+0], texCoord[6+0]); local
2915 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
3033 const tcu::Vec4 sq = tcu::Vec4(texCoord[0+0], texCoord[3+0], texCoord[6+0], texCoord[9+0]); local
[all...]
/external/opencv/cv/src/
H A Dcvhaar.cpp1206 int s, sq; local
1210 sq = pq0[offset] - pq1[offset] - pq2[offset] + pq3[offset];
1211 if( s < 100 || sq < 20 )
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 347 milliseconds