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

/external/elfutils/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/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c15 extern void vp8_dequantize_b_impl_mmx(short *sq, short *dq, short *q);
19 short *sq = (short *) d->qcoeff; local
22 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/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/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/linux-tools-perf/util/
H A Dsession.c482 struct sample_queue *sq; local
484 sq = list_entry(os->to_free.next, struct sample_queue, list);
485 list_del(&sq->list);
486 free(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.c1976 SigQueue *sq; local
1989 sq = tst->sig_queue;
1993 si->si_signo, sq->next, tid);
2001 if (sq->sigs[sq->next].si_signo != 0)
2003 sq->sigs[sq->next].si_signo, tid);
2005 sq->sigs[sq->next] = *si;
2006 sq
2022 SigQueue *sq; 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 )

Completed in 681 milliseconds