Searched refs:st (Results 1 - 25 of 948) 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...]
/external/chromium_org/third_party/openssl/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...]
/external/chromium_org/third_party/openssl/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...]
/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...]
/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...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_shader.c58 get_passthrough_fs(struct st_context *st) argument
60 if (!st->passthrough_fs) {
61 st->passthrough_fs =
62 util_make_fragment_passthrough_shader(st->pipe);
65 return st->passthrough_fs;
74 update_fp( struct st_context *st )
79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
84 key.st = st;
[all...]
H A Dst_extensions.h35 extern void st_init_limits(struct st_context *st);
37 extern void st_init_extensions(struct st_context *st);
H A Dst_cb_flush.c52 is_front_buffer_dirty(struct st_context *st) argument
54 struct gl_framebuffer *fb = st->ctx->DrawBuffer;
65 display_front_buffer(struct st_context *st) argument
67 struct gl_framebuffer *fb = st->ctx->DrawBuffer;
74 st_manager_flush_frontbuffer(st);
79 void st_flush( struct st_context *st, argument
82 FLUSH_CURRENT(st->ctx, 0);
84 st_flush_bitmap_cache(st);
86 st->pipe->flush( st
113 struct st_context *st = st_context(ctx); local
133 struct st_context *st = st_context(ctx); local
[all...]
H A Dst_context.c78 struct st_context *st = st_context(ctx); local
81 if (st->clamp_frag_color_in_shader && (new_state & _NEW_FRAG_CLAMP)) {
83 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
87 if (st->clamp_vert_color_in_shader && (new_state & _NEW_LIGHT)) {
88 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
91 st->dirty.mesa |= new_state;
92 st->dirty.st |
122 struct st_context *st = ST_CALLOC_STRUCT( st_context ); local
[all...]
H A Dst_cb_bitmap.h47 st_init_bitmap(struct st_context *st);
50 st_destroy_bitmap(struct st_context *st);
53 st_make_bitmap_fragment_program(struct st_context *st,
59 st_flush_bitmap_cache(struct st_context *st);
69 st_init_bitmap(struct st_context *st) argument
74 st_destroy_bitmap(struct st_context *st) argument
79 st_flush_bitmap_cache(struct st_context *st) argument
84 st_flush_bitmap(struct st_context *st) argument
H A Dst_cb_clear.h37 st_init_clear(struct st_context *st);
41 st_destroy_clear(struct st_context *st);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_shader.c58 get_passthrough_fs(struct st_context *st) argument
60 if (!st->passthrough_fs) {
61 st->passthrough_fs =
62 util_make_fragment_passthrough_shader(st->pipe);
65 return st->passthrough_fs;
74 update_fp( struct st_context *st )
79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
84 key.st = st;
[all...]
H A Dst_extensions.h35 extern void st_init_limits(struct st_context *st);
37 extern void st_init_extensions(struct st_context *st);
H A Dst_cb_flush.c52 is_front_buffer_dirty(struct st_context *st) argument
54 struct gl_framebuffer *fb = st->ctx->DrawBuffer;
65 display_front_buffer(struct st_context *st) argument
67 struct gl_framebuffer *fb = st->ctx->DrawBuffer;
74 st_manager_flush_frontbuffer(st);
79 void st_flush( struct st_context *st, argument
82 FLUSH_CURRENT(st->ctx, 0);
84 st_flush_bitmap_cache(st);
86 st->pipe->flush( st
113 struct st_context *st = st_context(ctx); local
133 struct st_context *st = st_context(ctx); local
[all...]
H A Dst_context.c78 struct st_context *st = st_context(ctx); local
81 if (st->clamp_frag_color_in_shader && (new_state & _NEW_FRAG_CLAMP)) {
83 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
87 if (st->clamp_vert_color_in_shader && (new_state & _NEW_LIGHT)) {
88 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
91 st->dirty.mesa |= new_state;
92 st->dirty.st |
122 struct st_context *st = ST_CALLOC_STRUCT( st_context ); local
[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/clang/test/Analysis/engine/
H A Dreplay-without-inlining.c21 void getB(IB *st, Hdr2 *usedtobeundef);
27 static void getID(IB *st, char str[4]) { argument
28 str[0] = gb(st);
29 str[1] = gb(st);
30 str[2] = gb(st);
31 str[3] = gb(st);
33 static void getH(IB *st, Hdr *header) { argument
34 getID (st, header->I);
35 header->S = gl(st);
37 static void readILBM(IB *st, Inf argument
51 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/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_utf8utils_windows.cc11 int UTF8GenericScan(const UTF8ScanObj* st, const char* src, int len, argument
13 return ::UTF8GenericScan(st, reinterpret_cast<const uint8*>(src), len,

Completed in 1593 milliseconds

1234567891011>>