/external/libopus/celt/dump_modes/ |
D | dump_modes.c | 61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts); in dump_modes() 80 standard = (mode->Fs == 400*(opus_int32)mode->shortMdctSize); in dump_modes() 81 framerate = mode->Fs/mode->shortMdctSize; in dump_modes() 85 fprintf(file, "#ifndef DEF_EBANDS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 86 fprintf(file, "#define DEF_EBANDS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 87 …fprintf (file, "static const opus_int16 eBands%d_%d[%d] = {\n", mode->Fs, mdctSize, mode->nbEBands… in dump_modes() 106 fprintf(file, "#ifndef DEF_ALLOC_VECTORS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 107 fprintf(file, "#define DEF_ALLOC_VECTORS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 108 …fprintf (file, "static const unsigned char allocVectors%d_%d[%d] = {\n", mode->Fs, mdctSize, mode-… in dump_modes() 130 fprintf(file, "#ifndef DEF_PULSE_CACHE%d\n", mode->Fs/mdctSize); in dump_modes() [all …]
|
D | dump_modes_arm_ne10.c | 60 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts); in dump_modes_arch_init() 78 fprintf(file, "#ifndef NE10_FFT_PARAMS%d_%d\n", mode->Fs, mdctSize); in dump_mode_arch() 79 fprintf(file, "#define NE10_FFT_PARAMS%d_%d\n", mode->Fs, mdctSize); in dump_mode_arch() 151 fprintf(file, "#endif /* end NE10_FFT_PARAMS%d_%d */\n", mode->Fs, mdctSize); in dump_mode_arch()
|
/external/libopus/celt/ |
D | modes.c | 90 static opus_int16 *compute_ebands(opus_int32 Fs, int frame_size, int res, int *nbEBands) in compute_ebands() argument 96 if (Fs == 400*(opus_int32)frame_size) in compute_ebands() 106 if (bark_freq[nBark+1]*2 >= Fs) in compute_ebands() 179 if (mode->Fs == 400*(opus_int32)mode->shortMdctSize) in compute_allocation_table() 195 … if (400*(opus_int32)eband5ms[k] > mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize) in compute_allocation_table() 202 … a1 = mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize - 400*(opus_int32)eband5ms[k-1]; in compute_allocation_table() 203 … a0 = 400*(opus_int32)eband5ms[k] - mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize; in compute_allocation_table() 224 CELTMode *opus_custom_mode_create(opus_int32 Fs, int frame_size, int *error) in opus_custom_mode_create() argument 247 if (Fs == static_mode_list[i]->Fs && in opus_custom_mode_create() 266 if (Fs < 8000 || Fs > 96000) in opus_custom_mode_create() [all …]
|
D | modes.h | 53 opus_int32 Fs; member
|
D | celt_encoder.c | 1431 if (mode->Fs==48000 && mode->shortMdctSize==120) in celt_encode_with_ec() 1454 opus_int32 den=mode->Fs>>BITRES; in celt_encode_with_ec() 1469 (tmp+4*mode->Fs)/(8*mode->Fs)-!!st->signalling)); in celt_encode_with_ec()
|
/external/libopus/src/ |
D | opus_encoder.c | 75 opus_int32 Fs; member 164 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application) in opus_encoder_init() argument 171 if((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000)||(channels!=1&&channels!=2)|| in opus_encoder_init() 189 st->Fs = Fs; in opus_encoder_init() 199 st->silk_mode.API_sampleRate = st->Fs; in opus_encoder_init() 214 err = celt_encoder_init(celt_enc, Fs, channels, st->arch); in opus_encoder_init() 224 st->bitrate_bps = 3000+Fs*channels; in opus_encoder_init() 232 st->encoder_buffer = st->Fs/100; in opus_encoder_init() 238 st->delay_compensation = st->Fs/250; in opus_encoder_init() 326 …n, opus_int32 cutoff_Hz, opus_val16 *out, opus_val32 *hp_mem, int len, int channels, opus_int32 Fs) in hp_cutoff() argument [all …]
|
D | opus_decoder.c | 59 opus_int32 Fs; /** Sampling rate (at the API level) */ member 96 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) in opus_decoder_init() argument 102 if ((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000) in opus_decoder_init() 119 st->Fs = Fs; in opus_decoder_init() 120 st->DecControl.API_sampleRate = st->Fs; in opus_decoder_init() 128 ret = celt_decoder_init(celt_dec, Fs, channels); in opus_decoder_init() 134 st->frame_size = Fs/400; in opus_decoder_init() 139 OpusDecoder *opus_decoder_create(opus_int32 Fs, int channels, int *error) in opus_decoder_create() argument 143 if ((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000) in opus_decoder_create() 157 ret = opus_decoder_init(st, Fs, channels); in opus_decoder_create() [all …]
|
D | opus_multistream_encoder.c | 429 opus_int32 Fs, in opus_multistream_encoder_init_impl() argument 467 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 2, application); in opus_multistream_encoder_init_impl() 475 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 1, application); in opus_multistream_encoder_init_impl() 492 opus_int32 Fs, in opus_multistream_encoder_init() argument 500 return opus_multistream_encoder_init_impl(st, Fs, channels, streams, in opus_multistream_encoder_init() 507 opus_int32 Fs, in opus_multistream_surround_encoder_init() argument 575 return opus_multistream_encoder_init_impl(st, Fs, channels, *streams, in opus_multistream_surround_encoder_init() 581 opus_int32 Fs, in opus_multistream_encoder_create() argument 606 …ret = opus_multistream_encoder_init(st, Fs, channels, streams, coupled_streams, mapping, applicati… in opus_multistream_encoder_create() 618 opus_int32 Fs, in opus_multistream_surround_encoder_create() argument [all …]
|
D | opus_multistream_decoder.c | 65 opus_int32 Fs, in opus_multistream_decoder_init() argument 96 ret=opus_decoder_init((OpusDecoder*)ptr, Fs, 2); in opus_multistream_decoder_init() 102 ret=opus_decoder_init((OpusDecoder*)ptr, Fs, 1); in opus_multistream_decoder_init() 111 opus_int32 Fs, in opus_multistream_decoder_create() argument 135 ret = opus_multistream_decoder_init(st, Fs, channels, streams, coupled_streams, mapping); in opus_multistream_decoder_create() 156 opus_int32 len, int nb_streams, opus_int32 Fs) in opus_multistream_packet_validate() argument 174 tmp_samples = opus_packet_get_nb_samples(data, packet_offset, Fs); in opus_multistream_packet_validate() 195 opus_int32 Fs; in opus_multistream_decode_native() local 205 opus_multistream_decoder_ctl(st, OPUS_GET_SAMPLE_RATE(&Fs)); in opus_multistream_decode_native() 206 frame_size = IMIN(frame_size, Fs/25*3); in opus_multistream_decode_native() [all …]
|
D | opus.c | 174 opus_int32 Fs) in opus_packet_get_samples_per_frame() argument 180 audiosize = (Fs<<audiosize)/400; in opus_packet_get_samples_per_frame() 183 audiosize = (data[0]&0x08) ? Fs/50 : Fs/100; in opus_packet_get_samples_per_frame() 187 audiosize = Fs*60/1000; in opus_packet_get_samples_per_frame() 189 audiosize = (Fs<<audiosize)/100; in opus_packet_get_samples_per_frame()
|
D | opus_private.h | 93 opus_int32 frame_size_select(opus_int32 frame_size, int variable_duration, opus_int32 Fs); 96 int variable_duration, int C, opus_int32 Fs, int bitrate_bps,
|
D | analysis.h | 100 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs,
|
D | opus_demo.c | 200 static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, int application, int *error) 204 …return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled… 206 static OpusDecoder *ms_opus_decoder_create(opus_int32 Fs, int channels, int *error) 213 …return (OpusDecoder *)opus_multistream_decoder_create(Fs, channels, streams, coupled_streams, mapp…
|
D | analysis.c | 647 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs, in run_analysis() argument 656 analysis_frame_size = IMIN((DETECT_SIZE-5)*Fs/100, analysis_frame_size); in run_analysis()
|
/external/libopus/include/ |
D | opus_multistream.h | 258 opus_int32 Fs, 268 opus_int32 Fs, 328 opus_int32 Fs, 338 opus_int32 Fs, 505 opus_int32 Fs, 549 opus_int32 Fs,
|
D | opus.h | 209 opus_int32 Fs, 230 opus_int32 Fs, 424 opus_int32 Fs, 442 opus_int32 Fs, 556 …nt opus_packet_get_samples_per_frame(const unsigned char *data, opus_int32 Fs) OPUS_ARG_NONNULL(1); 584 …et_get_nb_samples(const unsigned char packet[], opus_int32 len, opus_int32 Fs) OPUS_ARG_NONNULL(1);
|
D | opus_custom.h | 121 OPUS_CUSTOM_EXPORT OPUS_WARN_UNUSED_RESULT OpusCustomMode *opus_custom_mode_create(opus_int32 Fs, i…
|
/external/skia/src/shaders/gradients/ |
D | SkGradientShader.cpp | 311 static void add_stop_color(SkJumper_GradientCtx* ctx, size_t stop, SkPM4f Fs, SkPM4f Bs) { in add_stop_color() argument 312 (ctx->fs[0])[stop] = Fs.r(); in add_stop_color() 313 (ctx->fs[1])[stop] = Fs.g(); in add_stop_color() 314 (ctx->fs[2])[stop] = Fs.b(); in add_stop_color() 315 (ctx->fs[3])[stop] = Fs.a(); in add_stop_color() 331 SkPM4f Fs = {{ in init_stop_evenly() local 338 c_l.r() - Fs.r()*(stop/gapCount), in init_stop_evenly() 339 c_l.g() - Fs.g()*(stop/gapCount), in init_stop_evenly() 340 c_l.b() - Fs.b()*(stop/gapCount), in init_stop_evenly() 341 c_l.a() - Fs.a()*(stop/gapCount), in init_stop_evenly() [all …]
|
/external/conscrypt/openjdk/src/test/resources/ |
D | cert-key.pem | 12 83c3DEmmMRvpeH4erpA8gTyzZN3+HvDwhpvLnjMcvBQEdnDUykVqbSBnxrCjO+Fs
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerMIPS32.cpp | 298 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1Fcmp() local 302 Opcode |= Fs << 11; in emitCOP1Fcmp() 313 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtFsFd() local 316 Opcode |= Fs << 11; in emitCOP1FmtFsFd() 328 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtFtFsFd() local 332 Opcode |= Fs << 11; in emitCOP1FmtFtFsFd() 345 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1FmtRtFsFd() local 349 Opcode |= Fs << 11; in emitCOP1FmtRtFsFd() 360 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); in emitCOP1MovRtFs() local 361 Opcode |= Fs << 11; in emitCOP1MovRtFs()
|
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/ |
D | DebugSupport.h | 119 UINT32 Fs; member 213 UINT64 Fs; member
|
/external/svox/pico/lib/ |
D | picosig2.c | 4011 picoos_int16 hop, winlen, Fs; in get_simple_excitation() local 4020 Fs = sig_inObj->Fs_p; in get_simple_excitation() 4063 Ti = (picoos_int32) (rounding + (picoos_single) Fs in get_simple_excitation() 4065 sqrtTi = (picoos_int32) (E * sqrt((double) Fs in get_simple_excitation() 4077 = (picoos_int32) (rounding + (picoos_single) Fs in get_simple_excitation() 4080 * sqrt((double) Fs / (hop * sig_inObj->F0_p)) * fact in get_simple_excitation()
|
/external/ImageMagick/PerlMagick/t/reference/read/ |
D | input_uyvy.miff | 14 …Fs�Gs�P�}��}��x��x��u��u��v��v������qg�qg�ma�ga�nc�rc�ke�ie�jc�\c�^b�eb�j]�g]�a\�^\�__�a_�c^�j^�ia…
|
D | input_rgb_lsb_08bit_mat.miff | 41 …dC'fg7q|Awu;}r<m_-px?u�Fny;en3h}=s�N{�R|�Sz�Mpk4kd*hs/k�5n�:l�=n�Aq�Do�Cr�Fs�Gx�O_1U'ss9��J��M�… 47 …STLSd0nA(\7{_6kN&ka1v�Hx�Lo~?t}?y}@vc9l7 i+j0o<qP)mc-m�<p�Ep�Fs�Gu�Qy�VwW'z�5��8��@�…
|
/external/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 3139 unsigned Fs = MI.getOperand(3).getReg(); in emitINSERT_FW() local 3146 .addReg(Fs) in emitINSERT_FW() 3175 unsigned Fs = MI.getOperand(3).getReg(); in emitINSERT_FD() local 3180 .addReg(Fs) in emitINSERT_FD() 3333 unsigned Fs = MI.getOperand(1).getReg(); in emitFILL_FW() local 3340 .addReg(Fs) in emitFILL_FW() 3364 unsigned Fs = MI.getOperand(1).getReg(); in emitFILL_FD() local 3371 .addReg(Fs) in emitFILL_FD()
|