Searched defs:Fs (Results 1 - 25 of 25) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
H A Dattr_value_util_test.cc48 AttrValue Fs( function in namespace:tensorflow
66 EXPECT_TRUE(AttrValueHasType(Fs({{"f", {}}, {"g", {}}}), "list(func)").ok());
121 auto v = Fs({{"f", {{"T", P("T")}}}, {"g", {{"T", P("T")}}}});
/external/libopus/celt/
H A Dmodes.h53 opus_int32 Fs; member in struct:OpusCustomMode
H A Dmodes.c90 static opus_int16 *compute_ebands(opus_int32 Fs, int frame_size, int res, int *nbEBands) argument
96 if (Fs == 400*(opus_int32)frame_size)
106 if (bark_freq[nBark+1]*2 >= Fs)
179 if (mode->Fs == 400*(opus_int32)mode->shortMdctSize)
195 if (400*(opus_int32)eband5ms[k] > mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize)
202 a1 = mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize - 400*(opus_int32)eband5ms[k-1];
203 a0 = 400*(opus_int32)eband5ms[k] - mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize;
224 CELTMode *opus_custom_mode_create(opus_int32 Fs, int frame_size, int *error) argument
247 if (Fs == static_mode_list[i]->Fs
[all...]
/external/libopus/celt/dump_modes/
H A Ddump_modes.c61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts);
80 standard = (mode->Fs == 400*(opus_int32)mode->shortMdctSize);
81 framerate = mode->Fs/mode->shortMdctSize;
85 fprintf(file, "#ifndef DEF_EBANDS%d_%d\n", mode->Fs, mdctSize);
86 fprintf(file, "#define DEF_EBANDS%d_%d\n", mode->Fs, mdctSize);
87 fprintf (file, "static const opus_int16 eBands%d_%d[%d] = {\n", mode->Fs, mdctSize, mode->nbEBands+2);
106 fprintf(file, "#ifndef DEF_ALLOC_VECTORS%d_%d\n", mode->Fs, mdctSize);
107 fprintf(file, "#define DEF_ALLOC_VECTORS%d_%d\n", mode->Fs, mdctSize);
108 fprintf (file, "static const unsigned char allocVectors%d_%d[%d] = {\n", mode->Fs, mdctSize, mode->nbEBands*mode->nbAllocVectors);
130 fprintf(file, "#ifndef DEF_PULSE_CACHE%d\n", mode->Fs/mdctSiz
329 int Fs, frame; local
[all...]
/external/tensorflow/tensorflow/contrib/specs/python/
H A Dspecs_test.py68 spec = "net = Fs(10) + Fr(10)"
128 spec = "net = Conc(1, Fs(20), Fs(10))"
155 spec = "import re; net = Conc(1, Fs(20), Fs(10))" namespace
H A Dspecs_ops.py90 Fs = Fun(layers.fully_connected, activation_fn=math_ops.sigmoid) variable
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
H A DTypeInference.java101 List<ResolvedType> Fs = formalParameterTypes(methodDeclaration);
109 C = testForApplicabilityByStrictInvocation(Fs, es, theta);
115 C = testForApplicabilityByLooseInvocation(Fs, es, theta);
121 C = testForApplicabilityByVariableArityInvocation(Fs, es, theta);
641 private Optional<ConstraintFormulaSet> testForApplicabilityByStrictInvocation(List<ResolvedType> Fs, List<Expression> es, argument
643 int n = Fs.size();
655 ResolvedType fi = Fs.get(i);
670 return Optional.of(constraintSetFromArgumentsSubstitution(Fs, es, theta, k));
677 private Optional<ConstraintFormulaSet> testForApplicabilityByLooseInvocation(List<ResolvedType> Fs, List<Expression> es, argument
679 int n = Fs
692 constraintSetFromArgumentsSubstitution(List<ResolvedType> Fs, List<Expression> es, Substitution theta, int k) argument
704 testForApplicabilityByVariableArityInvocation(List<ResolvedType> Fs, List<Expression> es, Substitution theta) argument
[all...]
/external/libopus/src/
H A Danalysis.h49 opus_int32 Fs; member in struct:__anon12272
99 void tonality_analysis_init(TonalityAnalysisState *analysis, opus_int32 Fs);
110 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs,
H A Dopus.c174 opus_int32 Fs)
180 audiosize = (Fs<<audiosize)/400;
183 audiosize = (data[0]&0x08) ? Fs/50 : Fs/100;
187 audiosize = Fs*60/1000;
189 audiosize = (Fs<<audiosize)/100;
173 opus_packet_get_samples_per_frame(const unsigned char *data, opus_int32 Fs) argument
H A Dopus_multistream_decoder.c65 opus_int32 Fs,
96 ret=opus_decoder_init((OpusDecoder*)ptr, Fs, 2);
102 ret=opus_decoder_init((OpusDecoder*)ptr, Fs, 1);
111 opus_int32 Fs,
135 ret = opus_multistream_decoder_init(st, Fs, channels, streams, coupled_streams, mapping);
156 opus_int32 len, int nb_streams, opus_int32 Fs)
174 tmp_samples = opus_packet_get_nb_samples(data, packet_offset, Fs);
195 opus_int32 Fs; local
205 opus_multistream_decoder_ctl(st, OPUS_GET_SAMPLE_RATE(&Fs));
206 frame_size = IMIN(frame_size, Fs/2
63 opus_multistream_decoder_init( OpusMSDecoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping ) argument
110 opus_multistream_decoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int *error ) argument
155 opus_multistream_packet_validate(const unsigned char *data, opus_int32 len, int nb_streams, opus_int32 Fs) argument
[all...]
H A Dopus_decoder.c59 opus_int32 Fs; /** Sampling rate (at the API level) */ member in struct:OpusDecoder
96 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) argument
102 if ((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000)
119 st->Fs = Fs;
120 st->DecControl.API_sampleRate = st->Fs;
139 opus_decoder_create(opus_int32 Fs, int channels, int *error) argument
168 smooth_fade(const opus_val16 *in1, const opus_val16 *in2, opus_val16 *out, int overlap, int channels, const opus_val16 *window, opus_int32 Fs) argument
980 opus_packet_get_nb_samples(const unsigned char packet[], opus_int32 len, opus_int32 Fs) argument
[all...]
H A Danalysis.c159 static opus_val32 downmix_and_resample(downmix_func downmix, const void *_x, opus_val32 *y, opus_val32 S[3], int subframe, int offset, int c1, int c2, int C, int Fs) argument
168 if (Fs == 48000)
172 } else if (Fs == 16000) {
190 if (Fs == 48000)
193 } else if (Fs == 24000) {
195 } else if (Fs == 16000) {
213 void tonality_analysis_init(TonalityAnalysisState *tonal, opus_int32 Fs) argument
217 tonal->Fs = Fs;
247 if (len > tonal->Fs/5
911 run_analysis(TonalityAnalysisState *analysis, const CELTMode *celt_mode, const void *analysis_pcm, int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs, int lsb_depth, downmix_func downmix, AnalysisInfo *analysis_info) argument
[all...]
H A Dopus_multistream_encoder.c464 opus_int32 Fs,
509 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 2, application);
517 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 1, application);
534 opus_int32 Fs,
542 return opus_multistream_encoder_init_impl(st, Fs, channels, streams,
549 opus_int32 Fs,
619 return opus_multistream_encoder_init_impl(st, Fs, channels, *streams,
625 opus_int32 Fs,
650 ret = opus_multistream_encoder_init(st, Fs, channels, streams, coupled_streams, mapping, application);
662 opus_int32 Fs,
462 opus_multistream_encoder_init_impl( OpusMSEncoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, MappingType mapping_type ) argument
532 opus_multistream_encoder_init( OpusMSEncoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application ) argument
547 opus_multistream_surround_encoder_init( OpusMSEncoder *st, opus_int32 Fs, int channels, int mapping_family, int *streams, int *coupled_streams, unsigned char *mapping, int application ) argument
624 opus_multistream_encoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, int *error ) argument
661 opus_multistream_surround_encoder_create( opus_int32 Fs, int channels, int mapping_family, int *streams, int *coupled_streams, unsigned char *mapping, int application, int *error ) argument
862 opus_int32 Fs; local
900 opus_int32 Fs; local
[all...]
H A Dopus_encoder.c79 opus_int32 Fs; member in struct:OpusEncoder
182 int opus_encoder_init(OpusEncoder* st, opus_int32 Fs, int channels, int application) argument
189 if((Fs!=48000&&Fs!=24000&&Fs!=16000&&Fs!=12000&&Fs!=8000)||(channels!=1&&channels!=2)||
207 st->Fs = Fs;
217 st->silk_mode.API_sampleRate = st->Fs;
345 hp_cutoff(const opus_val16 *in, opus_int32 cutoff_Hz, opus_val16 *out, opus_val32 *hp_mem, int len, int channels, opus_int32 Fs, int arch) argument
383 dc_reject(const opus_val16 *in, opus_int32 cutoff_Hz, opus_val16 *out, opus_val32 *hp_mem, int len, int channels, opus_int32 Fs) argument
408 dc_reject(const opus_val16 *in, opus_int32 cutoff_Hz, opus_val16 *out, opus_val32 *hp_mem, int len, int channels, opus_int32 Fs) argument
465 stereo_fade(const opus_val16 *in, opus_val16 *out, opus_val16 g1, opus_val16 g2, int overlap48, int frame_size, int channels, const opus_val16 *window, opus_int32 Fs) argument
497 gain_fade(const opus_val16 *in, opus_val16 *out, opus_val16 g1, opus_val16 g2, int overlap48, int frame_size, int channels, const opus_val16 *window, opus_int32 Fs) argument
536 opus_encoder_create(opus_int32 Fs, int channels, int application, int *error) argument
631 frame_size_select(opus_int32 frame_size, int variable_duration, opus_int32 Fs) argument
656 compute_stereo_width(const opus_val16 *pcm, int frame_size, opus_int32 Fs, StereoWidthState *mem) argument
[all...]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
H A DFs.java25 abstract public class Fs { class
26 public static Fs fromJar(URL url) {
44 Fs fs = new JarFs(new File(parts[0]));
58 Fs fs = fromJar(new URL(parts[0]));
80 static class JarFs extends Fs {
/external/skia/src/shaders/gradients/
H A DSkGradientShader.cpp222 static void add_stop_color(SkJumper_GradientCtx* ctx, size_t stop, SkPM4f Fs, SkPM4f Bs) { argument
223 (ctx->fs[0])[stop] = Fs.r();
224 (ctx->fs[1])[stop] = Fs.g();
225 (ctx->fs[2])[stop] = Fs.b();
226 (ctx->fs[3])[stop] = Fs.a();
242 SkPM4f Fs = {{ local
249 c_l.r() - Fs.r()*(stop/gapCount),
250 c_l.g() - Fs.g()*(stop/gapCount),
251 c_l.b() - Fs.b()*(stop/gapCount),
252 c_l.a() - Fs
262 SkPM4f Fs = {{ local
[all...]
/external/skqp/src/shaders/gradients/
H A DSkGradientShader.cpp222 static void add_stop_color(SkJumper_GradientCtx* ctx, size_t stop, SkPM4f Fs, SkPM4f Bs) { argument
223 (ctx->fs[0])[stop] = Fs.r();
224 (ctx->fs[1])[stop] = Fs.g();
225 (ctx->fs[2])[stop] = Fs.b();
226 (ctx->fs[3])[stop] = Fs.a();
242 SkPM4f Fs = {{ local
249 c_l.r() - Fs.r()*(stop/gapCount),
250 c_l.g() - Fs.g()*(stop/gapCount),
251 c_l.b() - Fs.b()*(stop/gapCount),
252 c_l.a() - Fs
262 SkPM4f Fs = {{ local
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerMIPS32.cpp298 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); local
302 Opcode |= Fs << 11;
313 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); local
316 Opcode |= Fs << 11;
328 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); local
332 Opcode |= Fs << 11;
345 const IValueT Fs local
360 const IValueT Fs = encodeFPRegister(OpFs, "Fs", InsnName); local
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp3139 unsigned Fs = MI.getOperand(3).getReg(); local
3146 .addReg(Fs)
3175 unsigned Fs = MI.getOperand(3).getReg(); local
3180 .addReg(Fs)
3333 unsigned Fs = MI.getOperand(1).getReg(); local
3340 .addReg(Fs)
3364 unsigned Fs = MI.getOperand(1).getReg(); local
3371 .addReg(Fs)
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
H A DDebugSupport.h119 UINT32 Fs; member in struct:__anon24979
213 UINT64 Fs; member in struct:__anon24981
/external/robolectric/v3/
H A Drobolectric-resources-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/shadows/ org/robolectric/manifest/ org/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 4219 milliseconds