Searched refs:captures (Results 1 – 25 of 196) sorted by relevance
12345678
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/BasicAA/ |
D | noalias-param.ll | 3 declare i32* @captures(i32* %cap) nounwind readonly 8 %cap = call i32* @captures(i32* %a) nounwind readonly 18 %cap = call i32* @captures(i32* %c) nounwind readonly
|
/external/llvm/test/Analysis/BasicAA/ |
D | noalias-param.ll | 3 declare i32* @captures(i32* %cap) nounwind readonly 8 %cap = call i32* @captures(i32* %a) nounwind readonly 18 %cap = call i32* @captures(i32* %c) nounwind readonly
|
/external/tensorflow/tensorflow/python/framework/ |
D | func_graph.py | 187 self.captures = py_collections.OrderedDict() 367 reverse_captures = dict((v, k) for k, v in self.captures.items()) 494 captured_tensor = self.captures.get(tensor, None) 498 self.captures[tensor] = captured_tensor 507 return list(self.captures.keys()) 512 return list(self.captures.values()) 714 resource_placeholder = func_graph.captures.pop(arg.handle, None) 722 func_graph.inputs = inputs + list(func_graph.captures.values()) 757 for input_t, placeholder_t in tensor.op.graph.captures.items(): 969 while func_graph.captures: [all …]
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | templates.cpp | 19 T captures(T x, T y) { in captures() function 35 template int captures(int, int); 36 template X captures(X, X);
|
/external/tensorflow/tensorflow/python/eager/ |
D | lift_to_graph.py | 279 captures = collections.OrderedDict() 282 captures = base_graph.captures 283 inverse_captures = {v: k for k, v in captures.items()} 292 for s in six.itervalues(captures):
|
D | wrap_function.py | 132 self.graph.captures[new_variable.handle] = old_variable.handle 193 for external_capture, internal_capture in self.graph.captures.items(): 194 pruned_graph.captures[external_capture] = lift_map[internal_capture] 196 pruned_graph.inputs.extend(pruned_graph.captures.values()) 289 fn_inputs = self.graph.inputs[:-len(self.graph.captures)]
|
D | lift_to_graph_test.py | 40 original_captures = concrete_fn.graph.captures 48 lifted_captures = g.captures
|
/external/clang/test/SemaObjC/ |
D | arc-jump-block.m | 22 …eLeft]; }); // expected-note 3 {{jump enters lifetime of block which strongly captures a variable}} 25 …Right]; }); // expected-note 2 {{jump enters lifetime of block which strongly captures a variable}}
|
/external/grpc-grpc/examples/android/helloworld/ |
D | .gitignore | 8 /captures
|
/external/grpc-grpc/src/android/test/interop/ |
D | .gitignore | 8 /captures
|
/external/autotest/server/cros/chaos_lib/ |
D | chaos_analyzer_usage.txt | 1 Used to analyze the chaos logs & packet captures and produce a consolidated analysis of each test a… 17 3. The analysis output for each attempt is stored in the same folder as the packet captures with th…
|
/external/walt/android/WALT/ |
D | .gitignore | 8 /captures
|
/external/v8/src/regexp/ |
D | interpreter-irregexp.h | 22 int* captures,
|
/external/subsampling-scale-image-view/ |
D | .gitignore | 10 captures/
|
/external/catch2/projects/SelfTest/Baselines/ |
D | console.swa4.approved.txt | 160 #748 - captures with unexpected exceptions 172 #748 - captures with unexpected exceptions 185 #748 - captures with unexpected exceptions
|
/external/tensorflow/tensorflow/python/ops/ |
D | cond_v2.py | 250 func_graph.captures = collections.OrderedDict(zip(inputs, 471 true_graph.captures = collections.OrderedDict(zip(new_inputs, 473 false_graph.captures = collections.OrderedDict(zip(new_inputs, 645 if tensor not in self.captures:
|
/external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | HOW_TO_RUN | 4 It's just a GL application that sets R600_DEBUG and captures stderr.
|
/external/tensorflow/tensorflow/lite/java/demo/ |
D | .gitignore | 28 /captures
|
/external/tensorflow/tensorflow/examples/android/ |
D | .gitignore | 28 /captures
|
/external/vulkan-validation-layers/layers/ |
D | gpu_validation.cpp | 831 std::smatch captures; in GetLineAndFilename() local 833 bool found_line = std::regex_match(string, captures, line_regex); in GetLineAndFilename() 837 if (captures[2].matched && captures[3].matched) { in GetLineAndFilename() 839 filename = captures[3].str().substr(1, captures[3].str().size() - 2); in GetLineAndFilename() 841 *linenumber = std::stoul(captures[1]); in GetLineAndFilename()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | ast.ml | 19 (* proto - This type represents the "prototype" for a function, which captures
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | ast.ml | 19 (* proto - This type represents the "prototype" for a function, which captures
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/ |
D | ast.ml | 19 (* proto - This type represents the "prototype" for a function, which captures
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
D | ast.ml | 19 (* proto - This type represents the "prototype" for a function, which captures
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
D | ast.ml | 19 (* proto - This type represents the "prototype" for a function, which captures
|
12345678