Home
last modified time | relevance | path

Searched refs:st (Results 1 – 25 of 2772) sorted by relevance

12345678910>>...111

/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/X86/
Dfp-stack.txt4 # 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/llvm/test/MC/Disassembler/X86/
Dfp-stack.txt4 # 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/syzkaller/vendor/github.com/ianlancetaylor/demangle/
Ddemangle.go162 st := &state{str: name, verbose: verbose}
163 a := st.encoding(params)
167 …for len(st.str) > 1 && st.str[0] == '.' && (isLower(st.str[1]) || st.str[1] == '_' || isDigit(st.s…
168 a = st.cloneSuffix(a)
172 if clones && len(st.str) > 0 {
173 st.fail("unparsed characters at end of mangled name")
189 func (st *state) copy() *state {
191 *n = *st
196 func (st *state) fail(err string) {
197 panic(demangleErr{err: err, off: st.off})
[all …]
/external/speex/libspeexdsp/
Dpreprocess.c396 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 …]
Dbuffer.c53 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 …]
Dresample.c333 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 …]
Dmdf.c128 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 …]
Dscal.c88 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/
Dopus_encoder.c182 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 …]
Dopus_decoder.c82 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()
90st->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/
Dst_atom_shader.c97 st_update_fp( struct st_context *st ) in st_update_fp() argument
102 assert(st->ctx->FragmentProgram._Current); in st_update_fp()
103 stfp = st_fragment_program(st->ctx->FragmentProgram._Current); in st_update_fp()
108 if (st->shader_has_one_variant[MESA_SHADER_FRAGMENT] && in st_update_fp()
117 key.st = st->has_shareable_shaders ? NULL : st; in st_update_fp()
120 key.clamp_color = st->clamp_frag_color_in_shader && in st_update_fp()
121 st->ctx->Color._ClampFragmentColor; in st_update_fp()
125 st->force_persample_in_shader && in st_update_fp()
126 _mesa_is_multisample_enabled(st->ctx) && in st_update_fp()
127 st->ctx->Multisample.SampleShading && in st_update_fp()
[all …]
Dst_context.c96 struct st_context *st = st_context(ctx); in st_Enable() local
101 st_update_debug_callback(st); in st_Enable()
169 st_invalidate_buffers(struct st_context *st) in st_invalidate_buffers() argument
171 st->dirty |= ST_NEW_BLEND | in st_invalidate_buffers()
192 struct st_context *st = st_context(ctx); in st_invalidate_state() local
195 st_invalidate_buffers(st); in st_invalidate_state()
201 st->dirty |= ST_NEW_RASTERIZER; in st_invalidate_state()
204 st->dirty |= ST_NEW_FS_STATE; in st_invalidate_state()
207 if (st->clamp_frag_color_in_shader) in st_invalidate_state()
208 st->dirty |= ST_NEW_FS_STATE; in st_invalidate_state()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Znver1/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Broadwell/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SLM/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SkylakeClient/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Haswell/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Generic/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SkylakeServer/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Atom/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SandyBridge/
Dresources-x87.s8 fadd %st(0), %st(1)
9 fadd %st(2)
12 faddp %st(1)
13 faddp %st(2)
24 fcmovb %st(1), %st(0)
25 fcmovbe %st(1), %st(0)
26 fcmove %st(1), %st(0)
27 fcmovnb %st(1), %st(0)
28 fcmovnbe %st(1), %st(0)
29 fcmovne %st(1), %st(0)
[all …]
/external/strace/tests/
Dxstatx.c148 print_stat(const STRUCT_STAT *st) in print_stat() argument
151 (unsigned int) major(zero_extend_signed_to_ull(st->st_dev)), in print_stat()
152 (unsigned int) minor(zero_extend_signed_to_ull(st->st_dev))); in print_stat()
153 printf(", st_ino=%llu", zero_extend_signed_to_ull(st->st_ino)); in print_stat()
155 print_ftype(st->st_mode); in print_stat()
157 print_perms(st->st_mode); in print_stat()
158 printf(", st_nlink=%llu", zero_extend_signed_to_ull(st->st_nlink)); in print_stat()
159 printf(", st_uid=%llu", zero_extend_signed_to_ull(st->st_uid)); in print_stat()
160 printf(", st_gid=%llu", zero_extend_signed_to_ull(st->st_gid)); in print_stat()
164 printf(", st_blksize=%llu", zero_extend_signed_to_ull(st->st_blksize)); in print_stat()
[all …]
/external/strace/tests-mx32/
Dxstatx.c148 print_stat(const STRUCT_STAT *st) in print_stat() argument
151 (unsigned int) major(zero_extend_signed_to_ull(st->st_dev)), in print_stat()
152 (unsigned int) minor(zero_extend_signed_to_ull(st->st_dev))); in print_stat()
153 printf(", st_ino=%llu", zero_extend_signed_to_ull(st->st_ino)); in print_stat()
155 print_ftype(st->st_mode); in print_stat()
157 print_perms(st->st_mode); in print_stat()
158 printf(", st_nlink=%llu", zero_extend_signed_to_ull(st->st_nlink)); in print_stat()
159 printf(", st_uid=%llu", zero_extend_signed_to_ull(st->st_uid)); in print_stat()
160 printf(", st_gid=%llu", zero_extend_signed_to_ull(st->st_gid)); in print_stat()
164 printf(", st_blksize=%llu", zero_extend_signed_to_ull(st->st_blksize)); in print_stat()
[all …]
/external/strace/tests-m32/
Dxstatx.c148 print_stat(const STRUCT_STAT *st) in print_stat() argument
151 (unsigned int) major(zero_extend_signed_to_ull(st->st_dev)), in print_stat()
152 (unsigned int) minor(zero_extend_signed_to_ull(st->st_dev))); in print_stat()
153 printf(", st_ino=%llu", zero_extend_signed_to_ull(st->st_ino)); in print_stat()
155 print_ftype(st->st_mode); in print_stat()
157 print_perms(st->st_mode); in print_stat()
158 printf(", st_nlink=%llu", zero_extend_signed_to_ull(st->st_nlink)); in print_stat()
159 printf(", st_uid=%llu", zero_extend_signed_to_ull(st->st_uid)); in print_stat()
160 printf(", st_gid=%llu", zero_extend_signed_to_ull(st->st_gid)); in print_stat()
164 printf(", st_blksize=%llu", zero_extend_signed_to_ull(st->st_blksize)); in print_stat()
[all …]

12345678910>>...111