Searched refs:st (Results 1 - 25 of 549) sorted by relevance

1234567891011>>

/external/speex/libspeex/
H A Dbuffer.c53 SpeexBuffer *st = speex_alloc(sizeof(SpeexBuffer)); local
54 st->data = speex_alloc(size);
55 st->size = size;
56 st->read_ptr = 0;
57 st->write_ptr = 0;
58 st->available = 0;
59 return st;
62 EXPORT void speex_buffer_destroy(SpeexBuffer *st) argument
64 speex_free(st->data);
65 speex_free(st);
68 speex_buffer_write(SpeexBuffer *st, void *_data, int len) argument
100 speex_buffer_writezeros(SpeexBuffer *st, int len) argument
132 speex_buffer_read(SpeexBuffer *st, void *_data, int len) argument
159 speex_buffer_get_available(SpeexBuffer *st) argument
164 speex_buffer_resize(SpeexBuffer *st, int len) argument
[all...]
H A Dsb_celp.c113 #define SUBMODE(x) st->submodes[st->submodeID]->x
194 SBEncState *st; local
197 st = (SBEncState*)speex_alloc(sizeof(SBEncState));
198 if (!st)
200 st->mode = m;
204 st->st_low = speex_encoder_init(mode->nb_mode);
206 st->stack = NULL;
208 /*st->stack = (char*)speex_alloc_scratch(SB_ENC_STACK);*/
209 speex_encoder_ctl(st
277 SBEncState *st=(SBEncState*)state; local
306 SBEncState *st; local
758 SBDecState *st; local
816 SBDecState *st; local
835 sb_decode_lost(SBDecState *st, spx_word16_t *out, int dtx, char *stack) argument
876 SBDecState *st; local
1103 SBEncState *st; local
1362 SBDecState *st; local
[all...]
H A Dresample.c332 static int resampler_basic_direct_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
334 const int N = st->filt_len;
336 int last_sample = st->last_sample[channel_index];
337 spx_uint32_t samp_frac_num = st->samp_frac_num[channel_index];
338 const spx_word16_t *sinc_table = st->sinc_table;
339 const int out_stride = st->out_stride;
340 const int int_advance = st->int_advance;
341 const int frac_advance = st->frac_advance;
342 const spx_uint32_t den_rate = st->den_rate;
376 st
384 resampler_basic_direct_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
433 resampler_basic_interpolate_single(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
496 resampler_basic_interpolate_double(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
556 update_filter(SpeexResamplerState *st) argument
736 SpeexResamplerState *st; local
792 speex_resampler_destroy(SpeexResamplerState *st) argument
802 speex_resampler_process_native(SpeexResamplerState *st, spx_uint32_t channel_index, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) argument
828 speex_resampler_magic(SpeexResamplerState *st, spx_uint32_t channel_index, spx_word16_t **out, spx_uint32_t out_len) argument
849 speex_resampler_process_int(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_int16_t *in, spx_uint32_t *in_len, spx_int16_t *out, spx_uint32_t *out_len) argument
890 speex_resampler_process_float(SpeexResamplerState *st, spx_uint32_t channel_index, const float *in, spx_uint32_t *in_len, float *out, spx_uint32_t *out_len) argument
963 speex_resampler_process_interleaved_float(SpeexResamplerState *st, const float *in, spx_uint32_t *in_len, float *out, spx_uint32_t *out_len) argument
984 speex_resampler_process_interleaved_int(SpeexResamplerState *st, const spx_int16_t *in, spx_uint32_t *in_len, spx_int16_t *out, spx_uint32_t *out_len) argument
1005 speex_resampler_set_rate(SpeexResamplerState *st, spx_uint32_t in_rate, spx_uint32_t out_rate) argument
1010 speex_resampler_get_rate(SpeexResamplerState *st, spx_uint32_t *in_rate, spx_uint32_t *out_rate) argument
1016 speex_resampler_set_rate_frac(SpeexResamplerState *st, spx_uint32_t ratio_num, spx_uint32_t ratio_den, spx_uint32_t in_rate, spx_uint32_t out_rate) argument
1055 speex_resampler_get_ratio(SpeexResamplerState *st, spx_uint32_t *ratio_num, spx_uint32_t *ratio_den) argument
1061 speex_resampler_set_quality(SpeexResamplerState *st, int quality) argument
1073 speex_resampler_get_quality(SpeexResamplerState *st, int *quality) argument
1078 speex_resampler_set_input_stride(SpeexResamplerState *st, spx_uint32_t stride) argument
1083 speex_resampler_get_input_stride(SpeexResamplerState *st, spx_uint32_t *stride) argument
1088 speex_resampler_set_output_stride(SpeexResamplerState *st, spx_uint32_t stride) argument
1093 speex_resampler_get_output_stride(SpeexResamplerState *st, spx_uint32_t *stride) argument
1098 speex_resampler_get_input_latency(SpeexResamplerState *st) argument
1103 speex_resampler_get_output_latency(SpeexResamplerState *st) argument
1108 speex_resampler_skip_zeros(SpeexResamplerState *st) argument
1116 speex_resampler_reset_mem(SpeexResamplerState *st) argument
[all...]
H A Dmdf.c128 void speex_echo_get_residual(SpeexEchoState *st, spx_word32_t *Yout, int len);
161 spx_word32_t Davg1; /* 1st recursive average of the residual power difference */
163 spx_float_t Dvar1; /* Estimated variance of 1st estimator */
410 SpeexEchoState *st = (SpeexEchoState *)speex_alloc(sizeof(SpeexEchoState)); local
412 st->K = nb_speakers;
413 st->C = nb_mic;
414 C=st->C;
415 K=st->K;
424 st->frame_size = frame_size;
425 st
530 speex_echo_state_reset(SpeexEchoState *st) argument
589 speex_echo_state_destroy(SpeexEchoState *st) argument
636 speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out) argument
659 speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play) argument
686 speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *in, const spx_int16_t *far_end, spx_int16_t *out, spx_int32_t *Yout) argument
692 speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *in, const spx_int16_t *far_end, spx_int16_t *out) argument
1196 speex_echo_get_residual(SpeexEchoState *st, spx_word32_t *residual_echo, int len) argument
1229 speex_echo_ctl(SpeexEchoState *st, int request, void *ptr) argument
[all...]
H A Dnb_celp.c65 #define SUBMODE(x) st->submodes[st->submodeID]->x
116 EncState *st; local
121 st = (EncState*)speex_alloc(sizeof(EncState));
122 if (!st)
125 st->stack = NULL;
127 st->stack = (char*)speex_alloc_scratch(NB_ENC_STACK);
130 st->mode=m;
132 st->frameSize = mode->frameSize;
133 st
216 EncState *st=(EncState *)state; local
254 EncState *st; local
926 DecState *st; local
995 DecState *st; local
1020 nb_decode_lost(DecState *st, spx_word16_t *out, char *stack) argument
1085 DecState *st; local
1578 EncState *st; local
1782 DecState *st; local
[all...]
H A Dscal.c84 SpeexDecorrState *st = speex_alloc(sizeof(SpeexDecorrState)); local
85 st->rate = rate;
86 st->channels = channels;
87 st->frame_size = frame_size;
89 st->psy = vorbis_psy_init(rate, 2*frame_size);
90 spx_drft_init(&st->lookup, 2*frame_size);
91 st->wola_mem = speex_alloc(frame_size*sizeof(float));
92 st->curve = speex_alloc(frame_size*sizeof(float));
94 st->y = speex_alloc(frame_size*sizeof(float));
96 st
137 speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength) argument
274 speex_decorrelate_destroy(SpeexDecorrState *st) argument
[all...]
H A Dpreprocess.c400 SpeexPreprocessState *st = (SpeexPreprocessState *)speex_alloc(sizeof(SpeexPreprocessState)); local
401 st->frame_size = frame_size;
406 st->ps_size = st->frame_size;
409 if (st->ps_size & ~i)
411 st->ps_size &= ~i;
419 if (st->ps_size < 3*st->frame_size/4)
420 st->ps_size = st
533 speex_preprocess_state_destroy(SpeexPreprocessState *st) argument
569 speex_compute_agc(SpeexPreprocessState *st, spx_word16_t Pframe, spx_word16_t *ft) argument
618 preprocess_analysis(SpeexPreprocessState *st, spx_int16_t *x) argument
664 update_noise_prob(SpeexPreprocessState *st) argument
721 speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, spx_int32_t *echo) argument
726 speex_preprocess_run(SpeexPreprocessState *st, spx_int16_t *x) argument
1013 speex_preprocess_estimate_update(SpeexPreprocessState *st, spx_int16_t *x) argument
1051 SpeexPreprocessState *st; local
[all...]
/external/openssl/crypto/stack/
H A Dsafestack.h140 #define SKM_sk_free(type, st) \
141 sk_free(CHECKED_STACK_OF(type, st))
142 #define SKM_sk_num(type, st) \
143 sk_num(CHECKED_STACK_OF(type, st))
144 #define SKM_sk_value(type, st,i) \
145 ((type *)sk_value(CHECKED_STACK_OF(type, st), i))
146 #define SKM_sk_set(type, st,i,val) \
147 sk_set(CHECKED_STACK_OF(type, st), i, CHECKED_PTR_OF(type, val))
148 #define SKM_sk_zero(type, st) \
149 sk_zero(CHECKED_STACK_OF(type, st))
[all...]
H A Dstack.c142 int sk_insert(_STACK *st, void *data, int loc) argument
146 if(st == NULL) return 0;
147 if (st->num_alloc <= st->num+1)
149 s=OPENSSL_realloc((char *)st->data,
150 (unsigned int)sizeof(char *)*st->num_alloc*2);
153 st->data=s;
154 st->num_alloc*=2;
156 if ((loc >= (int)st->num) || (loc < 0))
157 st
180 sk_delete_ptr(_STACK *st, void *p) argument
190 sk_delete(_STACK *st, int loc) argument
213 internal_find(_STACK *st, void *data, int ret_val_options) argument
235 sk_find(_STACK *st, void *data) argument
239 sk_find_ex(_STACK *st, void *data) argument
244 sk_push(_STACK *st, void *data) argument
249 sk_unshift(_STACK *st, void *data) argument
254 sk_shift(_STACK *st) argument
261 sk_pop(_STACK *st) argument
268 sk_zero(_STACK *st) argument
276 sk_pop_free(_STACK *st, void (*func)(void *)) argument
287 sk_free(_STACK *st) argument
294 sk_num(const _STACK *st) argument
300 sk_value(const _STACK *st, int i) argument
306 sk_set(_STACK *st, int i, void *value) argument
312 sk_sort(_STACK *st) argument
329 sk_is_sorted(const _STACK *st) argument
[all...]
H A Dstack.h87 void sk_pop_free(_STACK *st, void (*func)(void *));
89 void *sk_delete(_STACK *st, int loc);
90 void *sk_delete_ptr(_STACK *st, void *p);
91 int sk_find(_STACK *st, void *data);
92 int sk_find_ex(_STACK *st, void *data);
93 int sk_push(_STACK *st, void *data);
94 int sk_unshift(_STACK *st, void *data);
95 void *sk_shift(_STACK *st);
96 void *sk_pop(_STACK *st);
97 void sk_zero(_STACK *st);
[all...]
/external/openssl/include/openssl/
H A Dsafestack.h140 #define SKM_sk_free(type, st) \
141 sk_free(CHECKED_STACK_OF(type, st))
142 #define SKM_sk_num(type, st) \
143 sk_num(CHECKED_STACK_OF(type, st))
144 #define SKM_sk_value(type, st,i) \
145 ((type *)sk_value(CHECKED_STACK_OF(type, st), i))
146 #define SKM_sk_set(type, st,i,val) \
147 sk_set(CHECKED_STACK_OF(type, st), i, CHECKED_PTR_OF(type, val))
148 #define SKM_sk_zero(type, st) \
149 sk_zero(CHECKED_STACK_OF(type, st))
[all...]
H A Dstack.h87 void sk_pop_free(_STACK *st, void (*func)(void *));
89 void *sk_delete(_STACK *st, int loc);
90 void *sk_delete_ptr(_STACK *st, void *p);
91 int sk_find(_STACK *st, void *data);
92 int sk_find_ex(_STACK *st, void *data);
93 int sk_push(_STACK *st, void *data);
94 int sk_unshift(_STACK *st, void *data);
95 void *sk_shift(_STACK *st);
96 void *sk_pop(_STACK *st);
97 void sk_zero(_STACK *st);
[all...]
/external/quake/quake/src/QW/server/
H A Dmath.s37 fld %st(0) // p->normal[0] | p->normal[0]
47 fxch %st(2) // p->normal[0] | p->normal[0]*emaxs[0] |
51 fxch %st(2) // p->normal[1] | p->normal[0]*emaxs[0] |
53 fld %st(0) // p->normal[1] | p->normal[1] |
62 fxch %st(2) // p->normal[1] | p->normal[1]*emaxs[1] |
69 fxch %st(2) // p->normal[2] | p->normal[1]*emaxs[1] |
73 fld %st(0) // p->normal[2] | p->normal[2] |
84 fxch %st(5) // p->normal[0]*emins[0] |
90 faddp %st(0),%st(
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DStreamTokenizerTest.java34 StreamTokenizer st; field in class:StreamTokenizerTest
43 st = new StreamTokenizer(new StringBufferInputStream(
47 StreamTokenizer.TT_WORD, st.nextToken());
49 "d", st.sval);
52 StreamTokenizer.TT_NUMBER, st.nextToken());
54 8.0, st.nval);
57 39, st.nextToken());
59 "h", st.sval);
68 StreamTokenizer.TT_WORD, st.nextToken());
70 "d", st
[all...]
/external/quake/quake/src/QW/client/
H A Dmath.s81 fxch %st(2) // in[1]*vright[1] | in[1]*vup[1] | in[1]*vpn[1] | ...
83 faddp %st(0),%st(5) // in[1]*vup[1] | in[1]*vpn[1] | ...
84 faddp %st(0),%st(3) // in[1]*vpn[1] | ...
85 faddp %st(0),%st(1) // vpn_accum | vup_accum | vright_accum
93 fxch %st(2) // in[2]*vright[2] | in[2]*vup[2] | in[2]*vpn[2] | ...
95 faddp %st(0),%st(
[all...]
H A Dr_aliasa.s78 fld %st(2) // v[0] | v[2] | v[1] | v[0]
80 fld %st(2) // v[1] | accum | v[2] | v[1] | v[0]
82 fxch %st(1) // accum | accum2 | v[2] | v[1] | v[0]
84 fld %st(2) // v[2] | accum | accum2 | v[2] | v[1] | v[0]
87 fxch %st(1) // accum | accum3 | accum2 | v[2] | v[1] | v[0]
88 faddp %st(0),%st(2) // accum3 | accum | v[2] | v[1] | v[0]
92 faddp %st(0),%st(1) // z | v[2] | v[1] | v[0]
114 fxch %st(
[all...]
/external/quake/quake/src/WinQuake/
H A Dmath.s82 fxch %st(2) // in[1]*vright[1] | in[1]*vup[1] | in[1]*vpn[1] | ...
84 faddp %st(0),%st(5) // in[1]*vup[1] | in[1]*vpn[1] | ...
85 faddp %st(0),%st(3) // in[1]*vpn[1] | ...
86 faddp %st(0),%st(1) // vpn_accum | vup_accum | vright_accum
94 fxch %st(2) // in[2]*vright[2] | in[2]*vup[2] | in[2]*vpn[2] | ...
96 faddp %st(0),%st(
[all...]
H A Dr_aliasa.s78 fld %st(2) // v[0] | v[2] | v[1] | v[0]
80 fld %st(2) // v[1] | accum | v[2] | v[1] | v[0]
82 fxch %st(1) // accum | accum2 | v[2] | v[1] | v[0]
84 fld %st(2) // v[2] | accum | accum2 | v[2] | v[1] | v[0]
87 fxch %st(1) // accum | accum3 | accum2 | v[2] | v[1] | v[0]
88 faddp %st(0),%st(2) // accum3 | accum | v[2] | v[1] | v[0]
92 faddp %st(0),%st(1) // z | v[2] | v[1] | v[0]
114 fxch %st(
[all...]
/external/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c20 void getB(IB *st, Hdr2 *usedtobeundef);
26 static void getID(IB *st, char str[4]) { argument
27 str[0] = gb(st);
28 str[1] = gb(st);
29 str[2] = gb(st);
30 str[3] = gb(st);
32 static void getH(IB *st, Hdr *header) { argument
33 getID (st, header->I);
34 header->S = gl(st);
36 static void readILBM(IB *st, Inf argument
50 bitmapImageRepFromIFF(IB st, const unsigned char *ib, int il) argument
[all...]
/external/speex/include/speex/
H A Dspeex_buffer.h48 void speex_buffer_destroy(SpeexBuffer *st);
50 int speex_buffer_write(SpeexBuffer *st, void *data, int len);
52 int speex_buffer_writezeros(SpeexBuffer *st, int len);
54 int speex_buffer_read(SpeexBuffer *st, void *data, int len);
56 int speex_buffer_get_available(SpeexBuffer *st);
58 int speex_buffer_resize(SpeexBuffer *st, int len);
/external/v8/test/mjsunit/regress/
H A Dregress-486.js28 var st = "\u0422\u0435\u0441\u0442"; // Test in Cyrillic characters. variable
29 var cyrillicMatch = /^[\u0430-\u044fa-z]+$/i.test(st); // a-ja a-z.
/external/valgrind/main/none/tests/ppc32/
H A Dldstrev.stdout.exp5 st be16 0xabcd5678
6 st le16 0xcdab5678
7 st be32 0xabcd1425
8 st le32 0x2514cdab
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DStringTokenizerTest.java40 StringTokenizer st = new StringTokenizer("This:is:a:test:String", ":");
41 assertTrue("Created incorrect tokenizer", st.countTokens() == 5
42 && (st.nextElement().equals("This")));
52 StringTokenizer st = new StringTokenizer("This:is:a:test:String", ":",
54 st.nextElement();
55 assertTrue("Created incorrect tokenizer", st.countTokens() == 8
56 && (st.nextElement().equals(":")));
64 StringTokenizer st = new StringTokenizer("This is a test String");
66 assertEquals("Incorrect token count returned", 5, st.countTokens());
75 StringTokenizer st
[all...]
/external/skia/src/ports/
H A DSkTime_win.cpp16 SYSTEMTIME st; local
17 GetSystemTime(&st);
19 dt->fYear = st.wYear;
20 dt->fMonth = SkToU8(st.wMonth + 1);
21 dt->fDayOfWeek = SkToU8(st.wDayOfWeek);
22 dt->fDay = SkToU8(st.wDay);
23 dt->fHour = SkToU8(st.wHour);
24 dt->fMinute = SkToU8(st.wMinute);
25 dt->fSecond = SkToU8(st.wSecond);
/external/valgrind/main/none/tests/
H A Dshorts.c29 Stuff st; local
30 st.ot = -332;
31 st.ob = -301;
32 st.nt = 0;
33 st.nb = 31;
34 PaintThumb( &st );

Completed in 358 milliseconds

1234567891011>>