Home
last modified time | relevance | path

Searched refs:split2 (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/llvm/test/Analysis/MemorySSA/
Dforward-unreachable.ll6 br i1 undef, label %split1, label %split2
11 split2:
19 ; CHECK: 3 = MemoryPhi({split1,1},{split2,liveOnEntry},{forwardunreachable,liveOnEntry})
/external/llvm/test/Transforms/Util/MemorySSA/
Dforward-unreachable.ll6 br i1 undef, label %split1, label %split2
11 split2:
19 ; CHECK: 3 = MemoryPhi({split1,1},{split2,liveOnEntry},{forwardunreachable,liveOnEntry})
/external/rust/crates/form_urlencoded/src/
Dlib.rs48 let mut split2 = self.input.splitn(2, |&b| b == b'&'); in next() localVariable
49 let sequence = split2.next().unwrap(); in next()
50 self.input = split2.next().unwrap_or(&[][..]); in next()
54 let mut split2 = sequence.splitn(2, |&b| b == b'='); in next() localVariable
55 let name = split2.next().unwrap(); in next()
56 let value = split2.next().unwrap_or(&[][..]); in next()
/external/llvm-project/llvm/test/Transforms/NewGVN/
Dphi-of-ops-move-block.ll71 ; CHECK: split2:
90 br i1 undef, label %split1, label %split2
95 split2: ; preds = %lr.ph
98 critedge: ; preds = %split1, %split2, %bb1
99 %lcssa = phi i32 [ 0, %bb1 ], [ -1, %split1 ], [ -1, %split2 ]
/external/selinux/libsemanage/src/
Ddatabase_join.h30 record1_t ** split1, record2_t ** split2);
Duser_record.c375 semanage_user_extra_t ** split2) in semanage_user_split() argument
389 *split2 = tmp_extra_user; in semanage_user_split()
Duser_internal.h175 semanage_user_extra_t ** split2);
/external/rust/crates/regex/tests/
Dapi.rs217 split2,
/external/llvm/test/Transforms/LoopInterchange/
Dprofitability.ll57 ; CHECK: br label %for.body3.split2
66 ; CHECK: for.body3.split2: ; preds = %for.body3.preheader
/external/llvm-project/llvm/test/Transforms/LoopUnrollAndJam/
Dunroll-and-jam.ll691 br i1 %tobool9, label %for.body2.split, label %for.body2.split2
693 for.body2.split2:
700 %storemerge.1 = phi i64 [ 0, %for.body2.split2 ]
709 ….1, %for.inc21.if ], [ %storemerge.2, %for.inc21.then ], [ 4, %for.body2.split2 ], [ 4, %for.body2…
710 … 0, %for.inc21.if ], [ %storemerge.3, %for.inc21.then ], [ 0, %for.body2.split2 ], [ 0, %for.body2…
/external/rust/crates/regex/src/
Dcompile.rs529 let (split1, split2) = split.dup_one(); in c_alternate()
531 prev_hole = (split2, true); in c_alternate()
/external/tensorflow/tensorflow/compiler/tests/
Dimage_ops_test.py66 split2 = list(map(image_ops.hsv_to_rgb, split1))
68 join2 = array_ops.stack(split2)
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_parser.cc4105 std::vector<std::string> split2 = absl::StrSplit(split1[1], "->"); in ParseConvolutionDimensionNumbers() local
4106 if (split2.size() != 2) { in ParseConvolutionDimensionNumbers()
4111 absl::string_view rhs = split2[0]; in ParseConvolutionDimensionNumbers()
4112 absl::string_view out = split2[1]; in ParseConvolutionDimensionNumbers()
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py80 split2 = list(map(image_ops.hsv_to_rgb, split1))
82 join2 = array_ops.stack(split2)
122 split2 = list(map(image_ops.yiq_to_rgb, split1))
124 join2 = array_ops.stack(split2)
154 split2 = list(map(image_ops.yuv_to_rgb, split1))
156 join2 = array_ops.stack(split2)
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer_test.cc3233 ops::SplitV split2(s.WithOpName("split2"), x, size_splits2, axis, 2); in TEST_F() local
3235 s.WithOpName("exp_a2").WithControlDependencies(ctrl1), split2[0]); in TEST_F()
3236 Output exp_b2 = ops::Exp(s.WithOpName("exp_b2"), split2[1]); in TEST_F()