HomeSort by relevance Sort by last modified time
    Searched refs:st (Results 1 - 25 of 1826) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/speex/libspeexdsp/
buffer.c 53 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)
64 speex_free(st->data);
65 speex_free(st);
    [all...]
mdf.c 128 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->window_size = 2*frame_size
    [all...]
resample.c 333 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)
335 const int N = st->filt_len;
337 int last_sample = st->last_sample[channel_index];
338 spx_uint32_t samp_frac_num = st->samp_frac_num[channel_index];
339 const spx_word16_t *sinc_table = st->sinc_table;
340 const int out_stride = st->out_stride;
341 const int int_advance = st->int_advance;
342 const int frac_advance = st->frac_advance;
343 const spx_uint32_t den_rate = st->den_rate;
383 st->last_sample[channel_index] = last_sample
791 SpeexResamplerState *st; local
    [all...]
scal.c 88 SpeexDecorrState *st = speex_alloc(sizeof(SpeexDecorrState)); local
89 st->rate = rate;
90 st->channels = channels;
91 st->frame_size = frame_size;
93 st->psy = vorbis_psy_init(rate, 2*frame_size);
94 spx_drft_init(&st->lookup, 2*frame_size);
95 st->wola_mem = speex_alloc(frame_size*sizeof(float));
96 st->curve = speex_alloc(frame_size*sizeof(float));
98 st->y = speex_alloc(frame_size*sizeof(float));
100 st->buff = speex_alloc(channels*2*frame_size*sizeof(float))
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
sintstack.c 60 sint_freestack(SIntStack *st)
62 sint_freestack(st)
63 SIntStack *st;
66 if ( st==NULL ) return;
67 if ( st->data==NULL ) return;
68 free(st->data);
69 free(st);
74 sint_push(SIntStack *st,int i)
76 sint_push(st,i)
77 SIntStack *st;
    [all...]
  /bionic/libm/x86/
libm_tancot_huge.S 123 fmul %st(1), %st
124 faddp %st, %st(2)
126 fmul %st(1), %st
127 faddp %st, %st(2)
129 fmulp %st, %st(1
    [all...]
libm_sincos_huge.S 123 fmul %st(1), %st
124 faddp %st, %st(2)
126 fmul %st(1), %st
127 faddp %st, %st(2)
129 fmulp %st, %st(1
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_msaa.c 42 st_update_sample_mask(struct st_context *st)
45 unsigned sample_count = st->state.fb_num_samples;
47 if (_mesa_is_multisample_enabled(st->ctx) && sample_count > 1) {
49 if (st->ctx->Multisample.SampleCoverage) {
51 (st->ctx->Multisample.SampleCoverageValue * (float) sample_count);
59 if (st->ctx->Multisample.SampleCoverageInvert)
62 if (st->ctx->Multisample.SampleMask)
63 sample_mask &= st->ctx->Multisample.SampleMaskValue;
66 cso_set_sample_mask(st->cso_context, sample_mask);
71 st_update_sample_shading(struct st_context *st)
    [all...]
st_cb_flush.c 49 void st_flush(struct st_context *st,
53 st_flush_bitmap_cache(st);
55 st->pipe->flush(st->pipe, fence, flags);
62 void st_finish( struct st_context *st )
66 st_flush(st, &fence, PIPE_FLUSH_ASYNC | PIPE_FLUSH_HINT_FINISH);
69 st->pipe->screen->fence_finish(st->pipe->screen, NULL, fence,
71 st->pipe->screen->fence_reference(st->pipe->screen, &fence, NULL)
84 struct st_context *st = st_context(ctx); local
102 struct st_context *st = st_context(ctx); local
137 struct st_context *st = st_context(ctx); local
154 struct st_context *st = data; local
    [all...]
st_atom_viewport.c 43 st_update_viewport( struct st_context *st )
45 struct gl_context *ctx = st->ctx;
50 for (i = 0; i < st->state.num_viewports; i++) {
51 float *scale = st->state.viewport[i].scale;
52 float *translate = st->state.viewport[i].translate;
58 if (st->state.fb_orientation == Y_0_TOP) {
60 translate[1] = st->state.fb_height - translate[1];
64 cso_set_viewport(st->cso_context, &st->state.viewport[0]);
66 if (st->state.num_viewports > 1)
    [all...]
st_cb_clear.h 37 st_init_clear(struct st_context *st);
41 st_destroy_clear(struct st_context *st);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_adapt.cpp 102 st -- double pointer to GainAdaptState
105 st -- double ponter to GainAdaptState
159 Word16 gain_adapt_init(GainAdaptState **st)
163 if (st == (GainAdaptState **) NULL)
168 *st = NULL;
177 *st = s;
189 st -- double pointer to GainAdaptState
192 st -- double ponter to GainAdaptState
245 Word16 gain_adapt_reset(GainAdaptState *st)
249 if (st == (GainAdaptState *) NULL
    [all...]
sid_sync.cpp 127 the pointer to state struct in *st. This pointer has to be passed to sid_sync
258 Word16 sid_sync_reset(void *st)
260 sid_syncState *state = (sid_syncState *) st;
337 sid_syncState **st = (sid_syncState **) state; local
339 if (st == NULL || *st == NULL)
345 free(*st);
346 *st = NULL;
361 st = pointer to the state structure used for SID synchronization
366 st->sid_handover_debt is set to debtFrame
500 sid_syncState *st = (sid_syncState *) state; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
open_wmemstream.c 43 struct state *st = v; local
47 end = (st->pos + l);
49 if (end >= st->size) {
51 size_t sz = st->size * 8 / 5;
55 p = reallocarray(st->string, sz, sizeof(wchar_t));
58 bzero(p + st->size, (sz - st->size) * sizeof(wchar_t));
59 *st->pbuf = st->string = p;
60 st->size = sz
82 struct state *st = v; local
116 struct state *st = v; local
126 struct state *st; local
    [all...]
open_memstream.c 41 struct state *st = v; local
45 end = (st->pos + l);
47 if (end >= st->size) {
49 size_t sz = st->size * 8 / 5;
53 p = realloc(st->string, sz);
56 bzero(p + st->size, sz - st->size);
57 *st->pbuf = st->string = p;
58 st->size = sz
78 struct state *st = v; local
106 struct state *st = v; local
116 struct state *st; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AVR/
inst-st.s 7 st X, r10
8 st X, r17
10 st Y, r30
11 st Y, r19
13 st Z, r10
14 st Z, r2
18 st X+, r10
19 st X+, r17
21 st Y+, r30
22 st Y+, r1
    [all...]
  /external/clang/test/Analysis/engine/
replay-without-inlining.c 21 void getB(IB *st, Hdr2 *usedtobeundef);
27 static void getID(IB *st, char str[4]) {
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) {
34 getID (st, header->I);
35 header->S = gl(st);
37 static void readILBM(IB *st, Info *pic)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/X86/
PPRO-32.s 67 // CHECK: fcmovbe %st(4), %st(0)
69 fcmovbe %st(4), %st(0)
71 // CHECK: fcmovb %st(4), %st(0)
73 fcmovb %st(4), %st(0)
75 // CHECK: fcmove %st(4), %st(0)
    [all...]
PPRO-64.s 67 // CHECK: fcmovbe %st(4), %st(0)
69 fcmovbe %st(4), %st(0)
71 // CHECK: fcmovb %st(4), %st(0)
73 fcmovb %st(4), %st(0)
75 // CHECK: fcmove %st(4), %st(0)
    [all...]
  /external/speex/include/speex/
speex_buffer.h 48 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);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dtx_dec.cpp 136 st = pointer to a structure of type dtx_decState
139 Structure pointed to by st is initialized to a set of initial values.
169 int dtx_dec_reset (dtx_decState *st)
173 if (st == (dtx_decState *) NULL){
178 st->since_last_sid = 0;
179 st->true_sid_period_inv = (1 << 13);
181 st->log_en = 3500;
182 st->old_log_en = 3500;
185 st->L_pn_seed_rx = PN_INITIAL_SEED;
188 Copy(lsp_init_data, &st->lsp[0], M)
    [all...]
  /external/strace/
print_struct_stat.c 41 print_struct_stat(struct tcb *tcp, const struct strace_stat *const st)
46 print_dev_t(st->dev);
47 tprintf(", st_ino=%llu, st_mode=", st->ino);
48 print_symbolic_mode_t(st->mode);
50 st->nlink, st->uid, st->gid);
51 tprintf(", st_blksize=%llu", st->blksize);
52 tprintf(", st_blocks=%llu", st->blocks);
55 print_symbolic_mode_t(st->mode)
    [all...]
  /external/strace/tests/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))
  /external/strace/tests-m32/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))
  /external/strace/tests-mx32/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))

Completed in 1409 milliseconds

1 2 3 4 5 6 7 8 91011>>