Home
last modified time | relevance | path

Searched defs:fc (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/external/clang/test/Sema/
Doverloadable-complex.c4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2()
/external/javasqlite/src/main/java/SQLite/
DFunction.java40 public void function(FunctionContext fc, String args[]); in function()
49 public void step(FunctionContext fc, String args[]); in step()
57 public void last_step(FunctionContext fc); in last_step()
/external/trusty/musl/src/stdio/
Dfopencookie.c16 struct fcookie fc; member
22 struct fcookie *fc = f->cookie; in cookieread() local
56 struct fcookie *fc = f->cookie; in cookiewrite() local
75 struct fcookie *fc = f->cookie; in cookieseek() local
93 struct fcookie *fc = f->cookie; in cookieclose() local
/external/musl/src/stdio/
Dfopencookie.c16 struct fcookie fc; member
22 struct fcookie *fc = f->cookie; in cookieread() local
56 struct fcookie *fc = f->cookie; in cookiewrite() local
75 struct fcookie *fc = f->cookie; in cookieseek() local
93 struct fcookie *fc = f->cookie; in cookieclose() local
/external/clang/test/SemaCXX/
Dcomplex-overload.cpp4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1()
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2()
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3()
33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert()
41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2()
/external/rust/android-crates-io/crates/quiche/src/
Dflowcontrol.rs135 let fc = FlowControl::new(100, 20, 100); in max_data() localVariable
142 let mut fc = FlowControl::new(100, 20, 100); in should_update_max_data() localVariable
153 let mut fc = FlowControl::new(100, 20, 100); in max_data_next() localVariable
164 let mut fc = FlowControl::new(100, 20, 100); in update_max_data() localVariable
181 let mut fc = FlowControl::new(100, w, 100); in autotune_window() localVariable
210 let mut fc = FlowControl::new(100, w, 100); in ensure_window_lower_bound() localVariable
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/default/
Dfully_connected_selector.cc35 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local
43 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local
50 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local
/external/drm_hwcomposer/compositor/
DFlatteningController.cpp42 auto fc = std::shared_ptr<FlatteningController>(new FlatteningController()); in CreateInstance() local
80 const std::shared_ptr<FlatteningController> &fc) { in ThreadFn()
/external/guice/core/src/com/google/inject/internal/
DDefaultConstructionProxyFactory.java49 net.sf.cglib.reflect.FastClass fc = BytecodeGen.newFastClassForMember(constructor); in create() local
71 final net.sf.cglib.reflect.FastClass fc; field in DefaultConstructionProxyFactory.FastClassProxy
77 net.sf.cglib.reflect.FastClass fc, in FastClassProxy()
/external/mesa3d/src/amd/common/
Dac_vcn_dec.c55 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_init_mode_probs() local
119 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_init_mv_probs() local
176 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_default_coef_probs() local
198 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_init_mode_probs() local
262 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_init_mv_probs() local
319 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_default_coef_probs() local
/external/tcpdump/
Dprint-802_11.c162 #define FC_VERSION(fc) ((fc) & 0x3) argument
163 #define FC_TYPE(fc) (((fc) >> 2) & 0x3) argument
164 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF) argument
165 #define FC_TO_DS(fc) ((fc) & 0x0100) argument
166 #define FC_FROM_DS(fc) ((fc) & 0x0200) argument
167 #define FC_MORE_FLAG(fc) ((fc) & 0x0400) argument
168 #define FC_RETRY(fc) ((fc) & 0x0800) argument
169 #define FC_POWER_MGMT(fc) ((fc) & 0x1000) argument
170 #define FC_MORE_DATA(fc) ((fc) & 0x2000) argument
171 #define FC_PROTECTED(fc) ((fc) & 0x4000) argument
[all …]
/external/webrtc/modules/audio_processing/agc2/rnn_vad/
Drnn_fc_unittest.cc55 FullyConnectedLayer fc(kInputLayerInputSize, kInputLayerOutputSize, in TEST_P() local
66 FullyConnectedLayer fc(kInputLayerInputSize, kInputLayerOutputSize, in TEST_P() local
/external/tensorflow/tensorflow/python/feature_column/
Dserialization.py39 def serialize_feature_column(fc): argument
189 def _column_name_with_class_name(fc): argument
/external/rust/android-crates-io/crates/predicates/src/path/
Dmod.rs17 mod fc; module
/external/clang/test/CodeGen/
Dcomplex-builtints.c27 volatile float _Complex fc = 1.0F + 2.0iF; in main() local
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
DFileConverterTest.java40 … InplaceFileConverter fc = new InplaceFileConverter(new EmptyRuleSet(), new NopProgressListener()); in XtestNOP() local
/external/libvpx/vp9/common/
Dvp9_entropymode.c323 static void init_mode_probs(FRAME_CONTEXT *fc) { in init_mode_probs()
342 FRAME_CONTEXT *fc = cm->fc; in vp9_adapt_mode_probs() local
/external/cronet/stable/third_party/apache-portable-runtime/src/file_io/netware/
Dflock.c23 int fc; in apr_file_lock() local
/external/clang/test/Headers/
Dtgmath.c10 float complex fc; variable
/external/cronet/tot/third_party/apache-portable-runtime/src/file_io/netware/
Dflock.c23 int fc; in apr_file_lock() local
/external/libcxx/test/std/numerics/complex.number/complex.member.ops/
Ddivide_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
Dplus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
Dtimes_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
Dminus_equal_complex.pass.cpp41 std::complex<float> fc (1,1); in test() local
/external/ComputeLibrary/tests/validation/NEON/
DFullyConnectedLayer.cpp108 auto fc = std::make_unique<cpu::CpuFullyConnected>(); in TEST_SUITE() local
161 auto fc = std::make_unique<NEFullyConnectedLayer>(); in TEST_CASE() local
198 auto fc = std::make_unique<cpu::CpuFullyConnected>(); in TEST_CASE() local

12345678910>>...13