Home
last modified time | relevance | path

Searched refs:fast_path (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-iterator-gen.cc200 Label fast_path(this), slow_path(this), done(this); in IterableToList() local
204 Branch(IsFastJSArrayWithNoCustomIteration(iterable, context), &fast_path, in IterableToList()
208 BIND(&fast_path); in IterableToList()
Dbuiltins-regexp-gen.cc1741 Label fast_path(this), slow_path(this); in TF_BUILTIN() local
1742 BranchIfFastRegExp(context, receiver, &fast_path, &slow_path); in TF_BUILTIN()
1744 BIND(&fast_path); in TF_BUILTIN()
1986 Label fast_path(this), slow_path(this); in TF_BUILTIN() local
1987 BranchIfFastRegExp(context, receiver, &fast_path, &slow_path); in TF_BUILTIN()
1989 BIND(&fast_path); in TF_BUILTIN()
2303 Label fast_path(this), slow_path(this); in TF_BUILTIN() local
2304 BranchIfFastRegExp(context, receiver, &fast_path, &slow_path); in TF_BUILTIN()
2306 BIND(&fast_path); in TF_BUILTIN()
Dbuiltins-string-gen.cc1025 fast_path(this); in Generate() local
1042 Goto(&fast_path); in Generate()
1050 Goto(&fast_path); in Generate()
1052 BIND(&fast_path); in Generate()
1541 Label fast_path(this), slow_path(this); in Generate() local
1542 regexp_asm.BranchIfFastRegExp(context, regexp, initial_map, &fast_path, in Generate()
1545 BIND(&fast_path); in Generate()
Dbuiltins-typed-array-gen.cc640 Label fast_path(this), slow_path(this), done(this); in ConstructByIterable() local
1624 Label check_iterator(this), from_array_like(this), fast_path(this), in TF_BUILTIN() local
1726 Branch(mapping.value(), &slow_path, &fast_path); in TF_BUILTIN()
1729 BIND(&fast_path); in TF_BUILTIN()
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_grad_op.cc764 const bool fast_path = base_output_index <= output_last_vector_index; in ComputeBackpropFilter() local
766 if (fast_path) { in ComputeBackpropFilter()