Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 5503) sorted by relevance

12345678910>>...221

/external/mesa3d/src/mesa/tnl/
Dt_split_inplace.c67 flush_vertex( struct split_context *split) in flush_vertex() argument
69 struct gl_context *ctx = split->ctx; in flush_vertex()
73 if (!split->dstprim_nr) in flush_vertex()
76 if (split->ib) { in flush_vertex()
77 ib = *split->ib; in flush_vertex()
79 ib.count = split->max_index - split->min_index + 1; in flush_vertex()
81 (split->min_index << ib.index_size_shift)); in flush_vertex()
84 for (i = 0; i < split->dstprim_nr; i++) in flush_vertex()
85 split->dstprim[i].start -= split->min_index; in flush_vertex()
88 assert(split->max_index >= split->min_index); in flush_vertex()
[all …]
/external/guava/android/guava-tests/test/com/google/common/base/
DSplitterTest.java40 COMMA_SPLITTER.split(null); in testSplitNullString()
48 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit()
66 assertEquals("[]", COMMA_SPLITTER.split("").toString()); in testToString()
67 assertEquals("[a, b, c]", COMMA_SPLITTER.split("a,b,c").toString()); in testToString()
68 assertEquals("[yam, bam, jam, ham]", Splitter.on(", ").split("yam, bam, jam, ham").toString()); in testToString()
73 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter()
79 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter()
85 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace()
91 Iterable<String> letters = COMMA_SPLITTER.split(trailing); in testCharacterSplitWithTrailingDelimiter()
97 Iterable<String> letters = COMMA_SPLITTER.split(leading); in testCharacterSplitWithLeadingDelimiter()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DSplitterTest.java41 COMMA_SPLITTER.split(null); in testSplitNullString()
49 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit()
73 assertEquals("[]", COMMA_SPLITTER.split("").toString()); in testToString()
74 assertEquals("[a, b, c]", COMMA_SPLITTER.split("a,b,c").toString()); in testToString()
75 assertEquals("[yam, bam, jam, ham]", Splitter.on(", ").split("yam, bam, jam, ham").toString()); in testToString()
80 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter()
86 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter()
92 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace()
98 Iterable<String> letters = COMMA_SPLITTER.split(trailing); in testCharacterSplitWithTrailingDelimiter()
104 Iterable<String> letters = COMMA_SPLITTER.split(leading); in testCharacterSplitWithLeadingDelimiter()
[all …]
/external/llvm/test/Transforms/LoopUnswitch/
D2011-11-18-TwoSwitches.ll9 ; CHECK-NEXT: br i1 %1, label %.split.us, label %..split_crit_edge
12 ; CHECK-NEXT: br label %.split
14 ; CHECK: .split.us: ; preds = %0
16 ; CHECK-NEXT: br i1 %2, label %.split.us.split.us, label %.split.us..split.us.split_crit_edge
18 ; CHECK: .split.us..split.us.split_crit_edge: ; preds = %.split.us
19 ; CHECK-NEXT: br label %.split.us.split
21 ; CHECK: .split.us.split.us: ; preds = %.split.us
24 …in.us.us: ; preds = %loop_begin.backedge.us.us, %.split.us.split.us
37 ; CHECK: .split.us.split: ; preds = %.split.us..split.us.spli…
40 …op_begin.us: ; preds = %loop_begin.backedge.us, %.split.us.split
[all …]
D2011-11-18-SimpleSwitch.ll9 ; CHECK-NEXT: br i1 %1, label %.split.us, label %..split_crit_edge
12 ; CHECK-NEXT: br label %.split
14 ; CHECK: .split.us: ; preds = %0
17 … loop_begin.us: ; preds = %loop_begin.backedge.us, %.split.us
26 ; CHECK: .split: ; preds = %..split_crit_edge
28 ; CHECK-NEXT: br i1 %2, label %.split.split.us, label %.split..split.split_crit_edge
30 ; CHECK: .split..split.split_crit_edge: ; preds = %.split
31 ; CHECK-NEXT: br label %.split.split
33 ; CHECK: .split.split.us: ; preds = %.split
36 …p_begin.us1: ; preds = %loop_begin.backedge.us5, %.split.split.us
[all …]
Dtrivial-unswitch.ll11 ; CHECK: br label %.split
13 ; CHECK: .split: ; preds = %..split_crit_edge
14 ; CHECK: br i1 %cond2, label %.split..split.split_crit_edge, label %.split.loop_exit.split1_crit…
16 ; CHECK: .split..split.split_crit_edge: ; preds = %.split
17 ; CHECK: br label %.split.split
19 ; CHECK: .split.split: ; preds = %.split..split.split_crit_edge
22 ; CHECK: loop_begin: ; preds = %do_something, %.split.split
/external/autotest/client/site_tests/platform_ToolchainTests/src/
Dclang-fortify-tests.cpp160 } split = {}; in TestString() local
162 EXPECT_NO_DEATH(memcpy(split.tiny_buffer, &split, sizeof(split))); in TestString()
163 EXPECT_NO_DEATH(memcpy(split.tiny_buffer, &split, sizeof(split))); in TestString()
164 EXPECT_NO_DEATH(memmove(split.tiny_buffer, &split, sizeof(split))); in TestString()
165 EXPECT_NO_DEATH(mempcpy(split.tiny_buffer, &split, sizeof(split))); in TestString()
166 EXPECT_NO_DEATH(memset(split.tiny_buffer, 0, sizeof(split))); in TestString()
168 EXPECT_NO_DEATH(bcopy(&split, split.tiny_buffer, sizeof(split))); in TestString()
169 EXPECT_NO_DEATH(bzero(split.tiny_buffer, sizeof(split))); in TestString()
172 _Static_assert(sizeof(small_string) > sizeof(split.tiny_buffer), ""); in TestString()
177 EXPECT_DEATH_STRUCT(strcpy(split.tiny_buffer, small_string)); in TestString()
[all …]
/external/llvm/test/CodeGen/X86/
D2007-10-30-LSRCrash.ll16 bb76.split: ; preds = %bb69.outer.split.split, %bb69.us208
19 bb69.outer: ; preds = %bb76.split, %bb98.preheader
20 …%from.0.reg2mem.0.ph.rec = phi i32 [ %tmp75.rec, %bb76.split ], [ 0, %bb98.preheader ] ; <i32> [#…
23 br i1 false, label %bb69.us208, label %bb69.outer.split.split
26 switch i32 0, label %bb76.split [
32 bb69.outer.split.split: ; preds = %bb69.outer
33 switch i8 0, label %bb76.split [
39 bb89: ; preds = %bb69.outer.split.split, %bb69.outer.split.split, %bb69.outer.split.split, %bb69.u…
40 …69.us208 ], [ %tmp75, %bb69.outer.split.split ], [ %tmp75, %bb69.outer.split.split ], [ %tmp75, %b…
43 bb103: ; preds = %bb76.split, %bb98.preheader
Dnew-remat.ll21 br i1 %lcmp.mod, label %for.body.preheader.split, label %for.body.prol.preheader
34 br i1 %prol.iter.cmp, label %for.body.preheader.split.loopexit, label %for.body.prol
36 for.body.preheader.split.loopexit: ; preds = %for.body.prol
38 br label %for.body.preheader.split
40 for.body.preheader.split: ; preds = %for.body.preheader.split.loopexit, %fo…
41 …%i.04.unr = phi i32 [ 0, %for.body.preheader ], [ %inc.prol.lcssa, %for.body.preheader.split.loope…
43 br i1 %tmp2, label %for.end.loopexit, label %for.body.preheader.split.split
45 for.body.preheader.split.split: ; preds = %for.body.preheader.split
48 ….body: ; preds = %for.body, %for.body.preheader.split.split
49 %i.04 = phi i32 [ %i.04.unr, %for.body.preheader.split.split ], [ %inc.7, %for.body ]
[all …]
/external/python/cryptography/tests/
Dutils.py68 name, value = [c.strip() for c in line.split("=")]
98 key = line.split(" : ")[1].replace(" ", "").encode("ascii")
100 pt = line.split(" : ")[1].replace(" ", "").encode("ascii")
102 ct = line.split(" : ")[1].replace(" ", "").encode("ascii")
126 length = int(line.split(" = ")[1])
129 key = line.split(" = ")[1].encode("ascii")
134 msg = line.split(" = ")[1].encode("ascii") if length > 0 else b""
136 md = line.split(" = ")[1]
296 salt_length = int(line.split(":")[1].strip())
302 name, value = [c.strip() for c in line.split("=")]
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DDefaultHdfParser.java54 Split split; in parseLine() local
55 if ((split = split(line, "=")) != null) { in parseLine()
57 output.setValue(createFullPath(context, split.left), split.right); in parseLine()
58 } else if ((split = split(line, "<<")) != null) { in parseLine()
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right)); in parseLine()
64 } else if ((split = split(line, "{")) != null) { in parseLine()
67 context.add(split.left); in parseLine()
68 } else if (split(line, "}") != null) { in parseLine()
72 } else if ((split = split(line, ":")) != null) { in parseLine()
74 output.setSymlink(createFullPath(context, split.left), split.right); in parseLine()
[all …]
/external/elfutils/libdw/
Dlibdw_find_split_unit.c54 Dwarf_CU *split = NULL; in try_split_file() local
55 while (dwarf_get_units (split_dwarf, split, &split, in try_split_file()
58 if (split->unit_type == DW_UT_split_compile in try_split_file()
59 && cu->unit_id8 == split->unit_id8) in try_split_file()
61 if (tsearch (split->dbg, &cu->dbg->split_tree, in try_split_file()
70 __libdw_link_skel_split (cu, split); in try_split_file()
79 if (cu->split == (Dwarf_CU *) -1) in try_split_file()
94 if (cu->split != (Dwarf_CU *) -1) in __libdw_find_split_unit()
95 return cu->split; in __libdw_find_split_unit()
120 if (cu->split == (Dwarf_CU *) -1) in __libdw_find_split_unit()
[all …]
/external/brotli/c/enc/
Dmetablock_inc.h48 BlockSplit* split, HistogramType** histograms, size_t* histograms_size) { in FN()
58 self->split_ = split; in FN()
65 split->types, split->types_alloc_size, max_num_blocks); in FN()
67 split->lengths, split->lengths_alloc_size, max_num_blocks); in FN()
86 BlockSplit* split = self->split_; in FN() local
93 split->lengths[0] = (uint32_t)self->block_size_; in FN()
94 split->types[0] = 0; in FN()
99 ++split->num_types; in FN()
121 if (split->num_types < BROTLI_MAX_NUMBER_OF_BLOCK_TYPES && in FN()
125 split->lengths[self->num_blocks_] = (uint32_t)self->block_size_; in FN()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dpr24636.ll18 br i1 undef, label %.lr.ph.split, label %.preheader
21 br i1 undef, label %.lr.ph.split, label %.preheader
23 .lr.ph.split: ; preds = %.preheader, %.lr.ph
24 br i1 undef, label %._crit_edge, label %.lr.ph.split.split
26 .lr.ph.split.split: ; preds = %.lr.ph.split.split, %.lr.ph.split
27 %1 = phi i32 [ %2, %.lr.ph.split.split ], [ undef, %.lr.ph.split ]
30 br i1 %3, label %.lr.ph.split.split, label %._crit_edge
32 ._crit_edge: ; preds = %.lr.ph.split.split, %.lr.ph.split
33 %.lcssa = phi i32 [ undef, %.lr.ph.split ], [ %2, %.lr.ph.split.split ]
/external/elfutils/tests/
Drun-get-units-split.sh23 testrun ${abs_builddir}/get-units-split testfile-debug-types
28 testrun ${abs_builddir}/get-units-split testfile_multi_main
33 testrun ${abs_builddir}/get-units-split testfilebazdbgppc64.debug
40 testrun ${abs_builddir}/get-units-split testfile-dwarf-4
41 testrun ${abs_builddir}/get-units-split testfile-dwarf-5
44 testrun_compare ${abs_builddir}/get-units-split testfile-splitdwarf-4 << \EOF
47 Found a skeleton unit, with split die: hello.c
49 Found a skeleton unit, with split die: world.c
53 testrun_compare ${abs_builddir}/get-units-split testfile-splitdwarf-5 << \EOF
56 Found a skeleton unit, with split die: hello.c
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/tests/
Dimport_quant_stats.mlir6 …%0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2…
10 // CHECK-NEXT: "tfl.split"
16 …%0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2…
20 // CHECK-NEXT: %[[split:.*]]:2 = "tfl.split"
21 // CHECK-NEXT: %[[stats1:.*]] = "quant.stats"(%[[split]]#0) {layerStats = dense<[-1.000000e+00, 1.0…
22 // CHECK-NEXT: %[[stats2:.*]] = "quant.stats"(%[[split]]#1) {layerStats = dense<[-1.000000e+00, 1.0…
28 …%0:2 = "tfl.split"(%cst, %arg0) {num_splits = 2 : i32} : (tensor<i32>, tensor<4xf32>) -> (tensor<2…
32 // CHECK-NEXT: %[[split:.*]]:2 = "tfl.split"
33 // CHECK-NEXT: %[[stats1:.*]] = "quant.stats"(%[[split]]#0) {layerStats = dense<[-2.000000e+00, 2.0…
34 // CHECK-NEXT: return %[[stats1]], %[[split]]#1 : tensor<2xf32>, tensor<2xf32>
[all …]
/external/libaom/libaom/av1/encoder/
Dvar_based_part.c37 VPartVar *split[4]; member
49 node->split[i] = &vt->split[i].part_variances.none; in tree_to_node()
56 node->split[i] = &vt->split[i].part_variances.none; in tree_to_node()
63 node->split[i] = &vt->split[i].part_variances.none; in tree_to_node()
70 node->split[i] = &vt->split[i].part_variances.none; in tree_to_node()
77 node->split[i] = &vt->split[i].part_variances.none; in tree_to_node()
84 for (i = 0; i < 4; i++) node->split[i] = &vt->split[i]; in tree_to_node()
117 sum_2_variances(node.split[0], node.split[1], &node.part_variances->horz[0]); in fill_variance_tree()
118 sum_2_variances(node.split[2], node.split[3], &node.part_variances->horz[1]); in fill_variance_tree()
119 sum_2_variances(node.split[0], node.split[2], &node.part_variances->vert[0]); in fill_variance_tree()
[all …]
/external/llvm/test/Transforms/LoopVectorize/
Dincorrect-dom-info.ll41 br i1 undef, label %thread-pre-split.preheader, label %.preheader
43 thread-pre-split.preheader: ; preds = %9
44 br i1 undef, label %thread-pre-split._crit_edge, label %.lr.ph21
46 .thread-pre-split.loopexit_crit_edge: ; preds = %19
49 br label %thread-pre-split.loopexit
51 thread-pre-split.loopexit: ; preds = %11, %.thread-pre-split.loopexit_crit_e…
52 %d.1.lcssa = phi i8* [ %scevgep45, %.thread-pre-split.loopexit_crit_edge ], [ %d.020, %11 ]
53 br i1 false, label %thread-pre-split._crit_edge, label %.lr.ph21
55 … ; preds = %26, %thread-pre-split.loopexit, %thread-pre-split.preh…
56 …0 = phi i8* [ undef, %26 ], [ %d.1.lcssa, %thread-pre-split.loopexit ], [ undef, %thread-pre-split
[all …]
/external/googletest/googlemock/scripts/generator/cpp/
Dkeywords.py33 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
34 TYPE_MODIFIERS = set('auto register const inline extern static virtual volatile mutable'.split())
35 ACCESS = set('public protected private friend'.split())
37 CASTS = set('static_cast const_cast dynamic_cast reinterpret_cast'.split())
39 OTHERS = set('true false asm class namespace using explicit this operator sizeof'.split())
40 OTHER_TYPES = set('new delete typedef struct union enum typeid typename template'.split())
42 CONTROL = set('case switch default if else return goto'.split())
43 EXCEPTION = set('try catch throw'.split())
44 LOOP = set('while do for break continue'.split())
/external/skia/src/pathops/
DSkOpEdgeBuilder.cpp283 Splitsville* split = &splits[index]; in walk() local
284 split->fT[0] = index ? splitT[index - 1] : 0; in walk()
285 split->fT[1] = index < breaks ? splitT[index] : 1; in walk()
286 SkDCubic part = SkDCubic::SubDivide(pointsPtr, split->fT[0], split->fT[1]); in walk()
287 if (!part.toFloatPoints(split->fPts)) { in walk()
290 split->fVerb = SkReduceOrder::Cubic(split->fPts, split->fReduced); in walk()
291 SkPoint* curve = SkPath::kCubic_Verb == split->fVerb in walk()
292 ? split->fPts : split->fReduced; in walk()
293 split->fCanAdd = can_add_curve(split->fVerb, curve); in walk()
296 Splitsville* split = &splits[index]; in walk() local
[all …]
/external/bcc/tests/python/
Dtest_debuginfo.py25 (addr, t, name) = line.strip().split()[:3]
50 .split())
52 subprocess.check_output('strip dummy'.split())
85 subprocess.check_output('g++ -o dummy dummy.cc'.split())
86 lines = subprocess.check_output('nm dummy'.split()).splitlines()
89 self.mangled_name = line.split(b' ')[2]
95 .split())
99 subprocess.check_output('rm dummy dummy.debug'.split())
112 .split())
113 lines = subprocess.check_output('nm dummy'.split()).splitlines()
[all …]
/external/skia/infra/bots/
Dcheck_deps.py41 split = e.split(': ')
42 if len(split) != 2:
46 if split[0] == 'skia':
48 split = split[1].split('@')
49 if len(split) != 2:
53 repo = split[0]
54 rev = split[1]
/external/toybox/toys/pending/
Dfold.c42 int pos = 0, split = -1; local
54 split = -1;
73 split = pos;
80 if (!(toys.optflags & FLAG_s) || split < 0) split = pos;
81 xwrite(1, buf, split + 1);
83 bufsz -= split + 1;
84 buf += split + 1;
86 split = -1;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DCommandLineSupportTest.java75 assertEquals(Arrays.asList(), CommandLineSupport.split(null)); in testSplit1()
80 assertEquals(Arrays.asList(), CommandLineSupport.split("")); in testSplit2()
85 assertEquals(Arrays.asList("abc"), CommandLineSupport.split("abc")); in testSplit3()
91 CommandLineSupport.split(" aa bbbb cccccc ")); in testSplit4()
97 CommandLineSupport.split("\"a a\" \"b b \" ")); in testSplit5()
102 assertEquals(Arrays.asList("a\"c"), CommandLineSupport.split("a\\\"c")); in testSplit6()
107 assertEquals(Arrays.asList("a\\c"), CommandLineSupport.split("a\\c")); in testSplit7()
112 assertEquals(Arrays.asList("a\\"), CommandLineSupport.split("a\\")); in testSplit8()
118 CommandLineSupport.split("a\\ b")); in testSplit9()
123 assertEquals(Arrays.asList("a\\b"), CommandLineSupport.split("a\\\\b")); in testSplit10()
/external/tensorflow/tensorflow/python/kernel_tests/
Dsplit_op_test.py52 array_ops.split(model_input, [4], axis=1)[0]
60 sess.run(array_ops.split(model_input, [4]), {model_input: inp})
68 array_ops.split(
76 result = array_ops.split(
84 result = array_ops.split(model_input2, [2, 2], axis=0)[0]
97 sess.run(array_ops.split(value, size_splits), {size_splits: [2, 2, 6]})
107 array_ops.split(value, size_splits, num=4)
109 r = self.evaluate(array_ops.split(value, size_splits, num=3))
122 result = self.evaluate(array_ops.split(value, [a, b]))
139 result = self.evaluate(array_ops.split(inp, size_splits, split_dim))
[all …]

12345678910>>...221