/external/llvm-project/llvm/test/MC/Disassembler/X86/ |
D | fp-stack.txt | 4 # CHECK: fadd %st(0), %st 7 # CHECK: fadd %st(1), %st 10 # CHECK: fadd %st(2), %st 13 # CHECK: fadd %st(3), %st 16 # CHECK: fadd %st(4), %st 19 # CHECK: fadd %st(5), %st 22 # CHECK: fadd %st(6), %st 25 # CHECK: fadd %st(7), %st 28 # CHECK: fmul %st(0), %st 31 # CHECK: fmul %st(1), %st [all …]
|
/external/llvm/test/MC/Disassembler/X86/ |
D | fp-stack.txt | 4 # CHECK: fadd %st(0) 7 # CHECK: fadd %st(1) 10 # CHECK: fadd %st(2) 13 # CHECK: fadd %st(3) 16 # CHECK: fadd %st(4) 19 # CHECK: fadd %st(5) 22 # CHECK: fadd %st(6) 25 # CHECK: fadd %st(7) 28 # CHECK: fmul %st(0) 31 # CHECK: fmul %st(1) [all …]
|
/external/speex/libspeexdsp/ |
D | buffer.c | 53 SpeexBuffer *st = speex_alloc(sizeof(SpeexBuffer)); in speex_buffer_init() local 54 st->data = speex_alloc(size); in speex_buffer_init() 55 st->size = size; in speex_buffer_init() 56 st->read_ptr = 0; in speex_buffer_init() 57 st->write_ptr = 0; in speex_buffer_init() 58 st->available = 0; in speex_buffer_init() 59 return st; in speex_buffer_init() 62 EXPORT void speex_buffer_destroy(SpeexBuffer *st) in speex_buffer_destroy() argument 64 speex_free(st->data); in speex_buffer_destroy() 65 speex_free(st); in speex_buffer_destroy() [all …]
|
D | preprocess.c | 396 SpeexPreprocessState *st = (SpeexPreprocessState *)speex_alloc(sizeof(SpeexPreprocessState)); in speex_preprocess_state_init() local 397 st->frame_size = frame_size; in speex_preprocess_state_init() 402 st->ps_size = st->frame_size; in speex_preprocess_state_init() 405 if (st->ps_size & ~i) in speex_preprocess_state_init() 407 st->ps_size &= ~i; in speex_preprocess_state_init() 415 if (st->ps_size < 3*st->frame_size/4) in speex_preprocess_state_init() 416 st->ps_size = st->ps_size * 3 / 2; in speex_preprocess_state_init() 418 st->ps_size = st->frame_size; in speex_preprocess_state_init() 421 N = st->ps_size; in speex_preprocess_state_init() 422 N3 = 2*N - st->frame_size; in speex_preprocess_state_init() [all …]
|
D | resample.c | 333 static int resampler_basic_direct_single(SpeexResamplerState *st, spx_uint32_t channel_index, const… in resampler_basic_direct_single() argument 335 const int N = st->filt_len; in resampler_basic_direct_single() 337 int last_sample = st->last_sample[channel_index]; in resampler_basic_direct_single() 338 spx_uint32_t samp_frac_num = st->samp_frac_num[channel_index]; in resampler_basic_direct_single() 339 const spx_word16_t *sinc_table = st->sinc_table; in resampler_basic_direct_single() 340 const int out_stride = st->out_stride; in resampler_basic_direct_single() 341 const int int_advance = st->int_advance; in resampler_basic_direct_single() 342 const int frac_advance = st->frac_advance; in resampler_basic_direct_single() 343 const spx_uint32_t den_rate = st->den_rate; in resampler_basic_direct_single() 383 st->last_sample[channel_index] = last_sample; in resampler_basic_direct_single() [all …]
|
D | mdf.c | 128 void speex_echo_get_residual(SpeexEchoState *st, spx_word32_t *Yout, int len); 410 SpeexEchoState *st = (SpeexEchoState *)speex_alloc(sizeof(SpeexEchoState)); in speex_echo_state_init_mc() local 412 st->K = nb_speakers; in speex_echo_state_init_mc() 413 st->C = nb_mic; in speex_echo_state_init_mc() 414 C=st->C; in speex_echo_state_init_mc() 415 K=st->K; in speex_echo_state_init_mc() 424 st->frame_size = frame_size; in speex_echo_state_init_mc() 425 st->window_size = 2*frame_size; in speex_echo_state_init_mc() 426 N = st->window_size; in speex_echo_state_init_mc() 427 M = st->M = (filter_length+st->frame_size-1)/frame_size; in speex_echo_state_init_mc() [all …]
|
D | scal.c | 88 SpeexDecorrState *st = speex_alloc(sizeof(SpeexDecorrState)); in speex_decorrelate_new() local 89 st->rate = rate; in speex_decorrelate_new() 90 st->channels = channels; in speex_decorrelate_new() 91 st->frame_size = frame_size; in speex_decorrelate_new() 93 st->psy = vorbis_psy_init(rate, 2*frame_size); in speex_decorrelate_new() 94 spx_drft_init(&st->lookup, 2*frame_size); in speex_decorrelate_new() 95 st->wola_mem = speex_alloc(frame_size*sizeof(float)); in speex_decorrelate_new() 96 st->curve = speex_alloc(frame_size*sizeof(float)); in speex_decorrelate_new() 98 st->y = speex_alloc(frame_size*sizeof(float)); in speex_decorrelate_new() 100 st->buff = speex_alloc(channels*2*frame_size*sizeof(float)); in speex_decorrelate_new() [all …]
|
/external/libopus/src/ |
D | opus_encoder.c | 182 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application) in opus_encoder_init() argument 194 OPUS_CLEAR((char*)st, opus_encoder_get_size(channels)); in opus_encoder_init() 200 st->silk_enc_offset = align(sizeof(OpusEncoder)); in opus_encoder_init() 201 st->celt_enc_offset = st->silk_enc_offset+silkEncSizeBytes; in opus_encoder_init() 202 silk_enc = (char*)st+st->silk_enc_offset; in opus_encoder_init() 203 celt_enc = (CELTEncoder*)((char*)st+st->celt_enc_offset); in opus_encoder_init() 205 st->stream_channels = st->channels = channels; in opus_encoder_init() 207 st->Fs = Fs; in opus_encoder_init() 209 st->arch = opus_select_arch(); in opus_encoder_init() 211 ret = silk_InitEncoder( silk_enc, st->arch, &st->silk_mode ); in opus_encoder_init() [all …]
|
D | opus_decoder.c | 82 static void validate_opus_decoder(OpusDecoder *st) in validate_opus_decoder() argument 84 celt_assert(st->channels == 1 || st->channels == 2); in validate_opus_decoder() 85 …celt_assert(st->Fs == 48000 || st->Fs == 24000 || st->Fs == 16000 || st->Fs == 12000 || st->Fs == … in validate_opus_decoder() 86 celt_assert(st->DecControl.API_sampleRate == st->Fs); in validate_opus_decoder() 87 …_assert(st->DecControl.internalSampleRate == 0 || st->DecControl.internalSampleRate == 16000 || st… in validate_opus_decoder() 88 celt_assert(st->DecControl.nChannelsAPI == st->channels); in validate_opus_decoder() 89 …celt_assert(st->DecControl.nChannelsInternal == 0 || st->DecControl.nChannelsInternal == 1 || st->… in validate_opus_decoder() 90 …st->DecControl.payloadSize_ms == 0 || st->DecControl.payloadSize_ms == 10 || st->DecControl.payloa… in validate_opus_decoder() 92 celt_assert(st->arch >= 0); in validate_opus_decoder() 93 celt_assert(st->arch <= OPUS_ARCHMASK); in validate_opus_decoder() [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_atom_shader.c | 99 st_update_fp( struct st_context *st ) in st_update_fp() argument 103 assert(st->ctx->FragmentProgram._Current); in st_update_fp() 104 stfp = st_program(st->ctx->FragmentProgram._Current); in st_update_fp() 109 if (st->shader_has_one_variant[MESA_SHADER_FRAGMENT] && in st_update_fp() 122 key.st = st->has_shareable_shaders ? NULL : st; in st_update_fp() 124 key.lower_flatshade = st->lower_flatshade && in st_update_fp() 125 st->ctx->Light.ShadeModel == GL_FLAT; in st_update_fp() 129 if (st->lower_alpha_test && _mesa_is_alpha_test_enabled(st->ctx)) in st_update_fp() 130 key.lower_alpha_func = st->ctx->Color.AlphaFunc; in st_update_fp() 133 key.lower_two_sided_color = st->lower_two_sided_color && in st_update_fp() [all …]
|
D | st_context.c | 103 struct st_context *st = st_context(ctx); in st_Enable() local 108 st_update_debug_callback(st); in st_Enable() 111 st->pipe->set_frontend_noop(st->pipe, ctx->IntelBlackholeRender); in st_Enable() 179 st_invalidate_buffers(struct st_context *st) in st_invalidate_buffers() argument 181 st->dirty |= ST_NEW_BLEND | in st_invalidate_buffers() 210 struct st_context *st = st_context(ctx); in st_invalidate_state() local 213 st_invalidate_buffers(st); in st_invalidate_state() 219 st->dirty |= ST_NEW_RASTERIZER; in st_invalidate_state() 222 st->dirty |= ST_NEW_FS_STATE; in st_invalidate_state() 227 st->dirty |= ST_NEW_RASTERIZER; in st_invalidate_state() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Atom/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/lib/ |
D | gm107.asm | 14 sched (st 0xd wr 0x0 wt 0x3f) (st 0x1 wt 0x1) (st 0x6) 18 sched (st 0x1) (st 0xf wr 0x0) (st 0x6 wr 0x0 wt 0x1) 22 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) 26 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) 30 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 rd 0x1 wt 0x1) 34 sched (st 0x6 wt 0x2) (st 0x6 wr 0x0 rd 0x1 wt 0x1) (st 0xf wr 0x0 rd 0x1 wt 0x2) 38 sched (st 0x6 wr 0x0 wt 0x3) (st 0xd wt 0x1) (st 0x1) 42 sched (st 0x5) (st 0xd) (st 0x1) 46 sched (st 0x1) (st 0xf) (st 0xf) 58 sched (st 0xd wt 0x3f) (st 0x1) (st 0x1 wr 0x0) [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/SandyBridge/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/SkylakeClient/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Broadwell/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/SkylakeServer/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Znver2/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Haswell/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/BdVer2/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/SLM/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/BtVer2/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Znver1/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Barcelona/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Generic/ |
D | resources-x87.s | 8 fadd %st, %st(1) 9 fadd %st(2) 12 faddp %st(1) 13 faddp %st(2) 24 fcmovb %st(1), %st 25 fcmovbe %st(1), %st 26 fcmove %st(1), %st 27 fcmovnb %st(1), %st 28 fcmovnbe %st(1), %st 29 fcmovne %st(1), %st [all …]
|