Home
last modified time | relevance | path

Searched refs:fn (Results 1 – 25 of 2518) sorted by relevance

12345678910>>...101

/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/dominator_tree/
Dgenerated.cpp44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn, in check_dominance() argument
48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_dominance()
49 spvtest::GetBasicBlock(fn, y))); in check_dominance()
62 const Function* fn, uint32_t x, uint32_t y) { in check_no_dominance() argument
65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
66 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
69 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y), in check_no_dominance()
73 spvtest::GetBasicBlock(fn, x))); in check_no_dominance()
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/
Dgenerated.cpp44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn, in check_dominance() argument
48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_dominance()
49 spvtest::GetBasicBlock(fn, y))); in check_dominance()
62 const Function* fn, uint32_t x, uint32_t y) { in check_no_dominance() argument
65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
66 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
69 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y), in check_no_dominance()
73 spvtest::GetBasicBlock(fn, x))); in check_no_dominance()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/
Dgenerated.cpp44 void check_dominance(const DominatorAnalysisBase& dom_tree, const Function* fn, in check_dominance() argument
48 EXPECT_TRUE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_dominance()
49 spvtest::GetBasicBlock(fn, y))); in check_dominance()
62 const Function* fn, uint32_t x, uint32_t y) { in check_no_dominance() argument
65 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
66 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
68 EXPECT_FALSE(dom_tree.StrictlyDominates(spvtest::GetBasicBlock(fn, x), in check_no_dominance()
69 spvtest::GetBasicBlock(fn, y))); in check_no_dominance()
72 EXPECT_FALSE(dom_tree.Dominates(spvtest::GetBasicBlock(fn, y), in check_no_dominance()
73 spvtest::GetBasicBlock(fn, x))); in check_no_dominance()
[all …]
/external/fdlibm/
De_scalb.c24 double __ieee754_scalb(double x, int fn) in __ieee754_scalb() argument
26 double __ieee754_scalb(x,fn) in __ieee754_scalb()
27 double x; int fn; in __ieee754_scalb()
31 double __ieee754_scalb(double x, double fn)
33 double __ieee754_scalb(x,fn)
34 double x, fn;
39 return ieee_scalbn(x,fn);
41 if (ieee_isnan(x)||ieee_isnan(fn)) return x*fn;
42 if (!ieee_finite(fn)) {
43 if(fn>0.0) return x*fn;
[all …]
/external/python/cpython2/Demo/pdist/
Drrcs.py41 for fn in files:
43 func(x, copts, fn)
45 print "%s: %s" % (fn, msg)
47 def checkin(x, copts, fn): argument
48 f = open(fn)
51 new = not x.isvalid(fn)
52 if not new and same(x, copts, fn, data):
53 print "%s: unchanged since last checkin" % fn
55 print "Checking in", fn, "..."
57 messages = x.put(fn, data, message)
[all …]
/external/tpm2-tss/doc/
Ddoxygen.dox21 …\fn TSS2_RC Esys_Initialize(ESYS_CONTEXT ** esys_context, TSS2_TCTI_CONTEXT * tcti, TSS2_ABI_VERSI…
22 \fn void Esys_Finalize(ESYS_CONTEXT * esys_context)
23 \fn TSS2_RC Esys_GetTcti(ESYS_CONTEXT * esys_context, TSS2_TCTI_CONTEXT ** tcti)
24 …\fn TSS2_RC Esys_GetPollHandles(ESYS_CONTEXT * esys_context, TSS2_TCTI_POLL_HANDLE ** handles, siz…
25 \fn TSS2_RC Esys_SetTimeout(ESYS_CONTEXT *esys_context, int32_t timeout)
26 \fn TSS2_RC Esys_GetSysContext(ESYS_CONTEXT *esys_context, TSS2_SYS_CONTEXT **sys_context)
27 \fn void Esys_Free(void *__ptr)
46 …\fn TSS2_RC Esys_TR_SetAuth(ESYS_CONTEXT * esys_context, ESYS_TR esys_handle, TPM2B_AUTH const *au…
47 \fn TSS2_RC Esys_TR_GetName(ESYS_CONTEXT * esys_context, ESYS_TR esys_handle, TPM2B_NAME ** name)
48 …\fn TSS2_RC Esys_TR_FromTPMPublic_Async( ESYS_CONTEXT *esysContext, TPM2_HANDLE tpm_handle, ESYS_T…
[all …]
/external/tensorflow/tensorflow/python/util/
Dfunction_utils.py30 def _is_bound_method(fn): argument
31 _, fn = tf_decorator.unwrap(fn)
32 return tf_inspect.ismethod(fn) and (fn.__self__ is not None)
39 def fn_args(fn): argument
51 if isinstance(fn, functools.partial):
52 args = fn_args(fn.func)
53 args = [a for a in args[len(fn.args):] if a not in (fn.keywords or [])]
55 if _is_callable_object(fn):
56 fn = fn.__call__
57 args = tf_inspect.getfullargspec(fn).args
[all …]
/external/libvpx/libvpx/build/make/
Drtcd.pl76 my $fn=$_[0];
79 eval "\$${fn}_${opt}=${fn}_${opt}";
84 my $fn = splice(@_, -2, 1);
85 $ALL_FUNCS{$fn} = \@_;
86 specialize $fn, "c";
90 foreach my $fn (keys %ALL_FUNCS) {
92 my $ofn = eval "\$${fn}_${opt}";
97 my $best = eval "\$${fn}_default";
104 eval "\$${fn}_default=${fn}_${opt}";
105 eval "\$${fn}_${opt}_link='true'";
[all …]
/external/libaom/libaom/build/cmake/
Drtcd.pl85 my $fn=$_[0];
88 eval "\$${fn}_${opt}=${fn}_${opt}";
93 my $fn = splice(@_, -2, 1);
94 $ALL_FUNCS{$fn} = \@_;
95 specialize $fn, "c";
99 foreach my $fn (keys %ALL_FUNCS) {
101 my $ofn = eval "\$${fn}_${opt}";
106 my $best = eval "\$${fn}_default";
113 eval "\$${fn}_default=${fn}_${opt}";
114 eval "\$${fn}_${opt}_link='true'";
[all …]
/external/python/cpython3/Mac/
DMakefile.in64 for fn in \
72 rm -f $${fn} ; \
73 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\
77 for fn in \
81 rm -f $${fn} ;\
82 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\
87 for fn in \
91 rm -f $${fn} ;\
92 $(LN) -s $(BINDIR)/$${fn} $${fn} ;\
97 for fn in \
[all …]
/external/python/cpython2/Lib/lib2to3/tests/
Dpytree_idempotency.py28 fn = "example.py"
29 tree = dr.parse_file(fn, debug=True)
30 if not diff(fn, tree):
42 fn = mod.__file__
43 if fn.endswith(".pyc"):
44 fn = fn[:-1]
45 if not fn.endswith(".py"):
47 print >>sys.stderr, "Parsing", fn
48 tree = dr.parse_file(fn, debug=True)
49 if diff(fn, tree):
[all …]
/external/python/cpython3/Lib/lib2to3/tests/
Dpytree_idempotency.py30 fn = "example.py"
31 tree = dr.parse_file(fn, debug=True)
32 if not diff(fn, tree):
44 fn = mod.__file__
45 if fn.endswith(".pyc"):
46 fn = fn[:-1]
47 if not fn.endswith(".py"):
49 print("Parsing", fn, file=sys.stderr)
50 tree = dr.parse_file(fn, debug=True)
51 if diff(fn, tree):
[all …]
/external/libcups/vcnet/regex/
Dsplit.c19 register int fn; local
42 fn = nfields;
45 fn--;
46 if (fn == 0)
50 return(nfields - fn);
54 fn = nfields;
58 return(fn);
59 fn++;
66 fn = nfields;
69 fn--;
[all …]
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
DJcopOsDownload.cpp74 static const char fn [] = "JcopOsDwnld::getJcopOsFileInfo"; in getJcopOsFileInfo() local
100 static const char fn [] = "JcopOsDwnld::initialize"; in initialize() local
102 ALOGD ("%s: enter", fn); in initialize()
106 ALOGD("%s: insufficient resources, file not present", fn); in initialize()
120 ALOGD("%s: Memory allocation for IChannel is failed", fn); in initialize()
130 ALOGD("%s: Memory allocation for SendBuf is failed", fn); in initialize()
136 ALOGD("%s: Memory allocation failed", fn); in initialize()
141 ALOGD ("%s: exit", fn); in initialize()
155 static const char fn [] = "JcopOsDwnld::finalize"; in finalize() local
156 ALOGD ("%s: enter", fn); in finalize()
[all …]
DAlaLib.cpp36 static const char fn[] = "ALA_Init"; in ALA_Init() local
39 ALOGD("%s: enter", fn); in ALA_Init()
54 ALOGE("%s: failed", fn); in ALA_Init()
65 ALOGE("%s:Open DWP communication is failed", fn); in ALA_Init()
70 ALOGE("%s:Open DWP communication is success", fn); in ALA_Init()
76 ALOGE("%s: NULL DWP channel", fn); in ALA_Init()
98 static const char fn[] = "ALA_Start"; in ALA_Start() local
103 ALOGE("%s: name is %s", fn, name); in ALA_Start()
105 ALOGE("%s: Dest is %s", fn, dest); in ALA_Start()
115 ALOGE("%s: Exit; status=0x0%X", fn, status); in ALA_Start()
[all …]
DAla.cpp92 static const char fn [] = "Ala_initialize"; in initialize() local
94 ALOGD ("%s: enter", fn); in initialize()
103 ALOGD("%s: Memory allocation failed", fn); in initialize()
118 ALOGD("%s: AID data file does not exists", fn); in initialize()
134 ALOGE ("%s: exit: Error during read AID data", fn); in initialize()
151 ALOGD ("%s: exit", fn); in initialize()
167 static const char fn [] = "Ala_finalize"; in finalize() local
168 ALOGD ("%s: enter", fn); in finalize()
176 ALOGD ("%s: exit", fn); in finalize()
195 static const char fn [] = "Perform_ALA"; in Perform_ALA() local
[all …]
/external/skia/tests/
DColorSpaceTest.cpp133 skcms_TransferFunction fn; in DEF_TEST() local
134 fn.a = 1.0f; in DEF_TEST()
135 fn.b = 0.0f; in DEF_TEST()
136 fn.c = 1.0f; in DEF_TEST()
137 fn.d = 0.5f; in DEF_TEST()
138 fn.e = 0.0f; in DEF_TEST()
139 fn.f = 0.0f; in DEF_TEST()
140 fn.g = 1.0f; in DEF_TEST()
146 test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ), false); in DEF_TEST()
166 skcms_TransferFunction fn; in DEF_TEST() local
[all …]
/external/perfetto/src/profiling/memory/
Dwrap_allocators.cc34 void* wrap_malloc(uint32_t heap_id, void* (*fn)(size_t), size_t size) { in wrap_malloc()
35 void* addr = fn(size); in wrap_malloc()
42 void* (*fn)(size_t, size_t), in wrap_calloc()
45 void* addr = fn(nmemb, size); in wrap_calloc()
52 void* (*fn)(size_t, size_t), in wrap_memalign()
55 void* addr = fn(alignment, size); in wrap_memalign()
62 int (*fn)(void**, size_t, size_t), in wrap_posix_memalign()
66 int res = fn(memptr, alignment, size); in wrap_posix_memalign()
78 void wrap_free(uint32_t heap_id, void (*fn)(void*), void* pointer) { in wrap_free()
91 return fn(pointer); in wrap_free()
[all …]
/external/tensorflow/tensorflow/compiler/aot/tests/
Dtfcompile_test.cc452 SplitsComp fn; in TEST() local
454 fn.set_thread_pool(&device); in TEST()
456 fn.arg0(0, 0) = 1; in TEST()
457 fn.arg0(0, 1) = 2; in TEST()
458 fn.arg0(1, 0) = 3; in TEST()
459 fn.arg0(1, 1) = 4; in TEST()
462 fn.arg1(0, 0) = 10; in TEST()
463 fn.arg1(0, 1) = 20; in TEST()
464 fn.arg1(1, 0) = 30; in TEST()
465 fn.arg1(1, 1) = 40; in TEST()
[all …]
/external/llvm-project/clang/utils/VtableTest/
Dgen.cc155 int fn = old_func + random() % FUNCSPACING + 1; in gs() local
156 funcs[i] = fn; in gs()
161 || !base_present[ret_type][ret_types[s][fn]]) in gs()
162 if (ret_types[s][fn]) { in gs()
164 ret_types[s][fn], fn); in gs()
165 ret_type = ret_types[s][fn]; in gs()
169 printf(" // Wow found one for s%d for fun%d.\n", s, fn); in gs()
170 ret_types[s][fn] = ret_type; in gs()
176 … g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid); in gs()
181 final_override[s][fn] = s; in gs()
[all …]
/external/clang/utils/VtableTest/
Dgen.cc155 int fn = old_func + random() % FUNCSPACING + 1; in gs() local
156 funcs[i] = fn; in gs()
161 || !base_present[ret_type][ret_types[s][fn]]) in gs()
162 if (ret_types[s][fn]) { in gs()
164 ret_types[s][fn], fn); in gs()
165 ret_type = ret_types[s][fn]; in gs()
169 printf(" // Wow found one for s%d for fun%d.\n", s, fn); in gs()
170 ret_types[s][fn] = ret_type; in gs()
176 … g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid); in gs()
181 final_override[s][fn] = s; in gs()
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_win_dll_thunk.h94 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
95 fn(); \
102 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
103 fn(arg); \
110 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
111 fn(arg1, arg2); \
118 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
119 fn(arg1, arg2, arg3); \
126 static fntype fn = (fntype)__sanitizer::dllThunkGetRealAddrOrDie(#name); \
127 return fn(); \
[all …]
/external/bcc/src/cc/frontends/clang/
Darch_helper.h30 static void *run_arch_callback(arch_callback_t fn) in run_arch_callback() argument
38 return fn(BCC_ARCH_PPC_LE); in run_arch_callback()
40 return fn(BCC_ARCH_PPC); in run_arch_callback()
43 return fn(BCC_ARCH_S390X); in run_arch_callback()
45 return fn(BCC_ARCH_ARM64); in run_arch_callback()
47 return fn(BCC_ARCH_X86); in run_arch_callback()
54 return fn(BCC_ARCH_PPC_LE); in run_arch_callback()
56 return fn(BCC_ARCH_PPC); in run_arch_callback()
59 return fn(BCC_ARCH_S390X); in run_arch_callback()
61 return fn(BCC_ARCH_ARM64); in run_arch_callback()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dtransform_unranked_hlo.cc37 #define MAP_XLA_OPERATION_CWISE_UNARY(fn, sep) \ argument
38 fn(AbsOp) sep fn(CeilOp) sep fn(ClzOp) sep fn(ConvertOp) sep fn(CosOp) \
39 sep fn(ExpOp) sep fn(Expm1Op) sep fn(FloorOp) sep fn(ImagOp) \
40 sep fn(IsFiniteOp) sep fn(LogOp) sep fn(Log1pOp) sep fn(LogisticOp) \
41 sep fn(NotOp) sep fn(NegOp) sep fn(PopulationCountOp) \
42 sep fn(RealOp) sep fn(RoundOp) sep fn(RsqrtOp) \
43 sep fn(SignOp) sep fn(SinOp) sep fn(SqrtOp) \
44 sep fn(TanhOp)
47 #define MAP_XLA_OPERATION_CWISE_BINARY(fn, sep) \ argument
48 fn(AddOp) sep fn(AndOp) sep fn(Atan2Op) sep fn(ComplexOp) sep fn(DivOp) \
[all …]
/external/skqp/tests/
DColorSpaceTest.cpp132 skcms_TransferFunction fn; in DEF_TEST() local
133 fn.a = 1.0f; in DEF_TEST()
134 fn.b = 0.0f; in DEF_TEST()
135 fn.c = 1.0f; in DEF_TEST()
136 fn.d = 0.5f; in DEF_TEST()
137 fn.e = 0.0f; in DEF_TEST()
138 fn.f = 0.0f; in DEF_TEST()
139 fn.g = 1.0f; in DEF_TEST()
145 test_serialize(r, SkColorSpace::MakeRGB(fn, toXYZ), false); in DEF_TEST()
165 skcms_TransferFunction fn; in DEF_TEST() local
[all …]

12345678910>>...101