Home
last modified time | relevance | path

Searched refs:f_c (Results 1 – 9 of 9) sorted by relevance

/external/strace/
Dmpers.sh51 f_c="${BITS_DIR}/${m_type}.c"
61 ' "${PARSER_FILE}" > "${f_c}"
62 $CPP $CPPFLAGS "${f_c}" > "${f_i}"
65 sed -i -e '/DEF_MPERS_TYPE/d' "${f_c}"
66 $CC $CFLAGS $CC_ARCH_FLAG "${f_c}" -o "${f_o}"
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_op.h221 for (int64 f_c = 0; f_c < args.filter_cols; ++f_c) {
222 const int64 in_c = in_c_start + f_c;
232 if (f_c == args.filter_cols - 1) {
275 for (int64 f_c = 0; f_c < args.filter_cols; ++f_c) {
276 const int64 in_c = in_c_start + f_c;
308 for (int64 f_c = 0; f_c < args.filter_cols; ++f_c) {
309 const int64 in_c = in_c_start + f_c;
Ddepthwise_conv_grad_op.cc231 const int64 f_c = in_c + pad_cols - out_c * stride; in CopyOutputBackpropRegion() local
233 (f_r * filter_cols + f_c) * padded_filter_inner_dim_size; in CopyOutputBackpropRegion()
501 int f_c = in_c + args.pad_cols - out_c * stride; in DepthwiseConvBackpropInputReference() local
510 (in_d + args.in_depth * (f_c + args.filter_cols * f_r)); in DepthwiseConvBackpropInputReference()
1001 for (int f_c = 0; f_c < args.filter_cols; ++f_c) { in DepthwiseConvBackpropFilterReference() local
1003 const int in_c = in_c_start + f_c; in DepthwiseConvBackpropFilterReference()
1018 (in_d + args.in_depth * (f_c + args.filter_cols * f_r)); in DepthwiseConvBackpropFilterReference()
Ddeep_conv2d.cc337 const int64 f_c = f_c_start + b_c; in operator ()() local
338 if (f_c >= args.filter_cols) continue; in operator ()()
342 (args.in_depth * (f_r * args.filter_cols + f_c)) + in operator ()()
/external/libffi/testsuite/libffi.call/
Dcls_align_complex.inc52 struct cls_struct_align f_c = { 1, 9320 + 1 * I, 13 };
73 args_c[1] = &f_c;
84 res_c = ((cls_struct_align(*)(cls_struct_align, cls_struct_align))(code))(g_c, f_c);
/external/libffi/testsuite/libffi.complex/
Dcls_align_complex.inc52 struct cls_struct_align f_c = { 1, 9320 + 1 * I, 13 };
73 args_c[1] = &f_c;
84 res_c = ((cls_struct_align(*)(cls_struct_align, cls_struct_align))(code))(g_c, f_c);
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py910 f_c = self.loop.create_connection(MyBaseProto, host, port,
912 client, pr = self.loop.run_until_complete(f_c)
943 f_c = self.loop.create_unix_connection(
947 client, pr = self.loop.run_until_complete(f_c)
981 f_c = self.loop.create_connection(MyProto, host, port,
987 self.loop.run_until_complete(f_c)
1010 f_c = self.loop.create_unix_connection(MyProto, path,
1017 self.loop.run_until_complete(f_c)
1041 f_c = self.loop.create_connection(MyProto, host, port,
1049 self.loop.run_until_complete(f_c)
[all …]
/external/tensorflow/tensorflow/python/eager/
Dfunction_gradients_test.py238 f_c = f(c)
239 g, = gradients_impl.gradients(f_c, c)
252 f_c = f(c)
253 g, = gradients_impl.gradients(f_c, c)
/external/llvm-project/clang/test/SemaCXX/
Dcxx2a-consteval.cpp237 constexpr int f_c(int i) { in f_c() function