Home
last modified time | relevance | path

Searched full:split (Results 1 – 25 of 15673) sorted by relevance

12345678910>>...627

/aosp_15_r20/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/
H A Diso-639-3_Retirements.tab11 bvs Belgian Sign Language S Split into Langue des signes de Belgique Francophone [sfb], and Vlaams…
12 ccy Southern Zhuang S Split into five languages: Nong Zhuang [zhn]; Yang Zhuang [zyg]; Yongnan Zh…
13 cit Chittagonian S Split into Rohingya [rhg], and Chittagonian (new identifier [ctg]) 2007-07-18
14 flm Falam Chin S Split into Ranglong [rnl], and Falam Chin (new identifier [cfm]). 2007-07-18
17 mob Moinba S Split into five languages: Chug [cvg]; Lish [lsh]; Kalaktang Monpa [kkf]; Tawang Mon…
18 mzf Aiku S Split into four languages: Ambrak [aag]; Yangum Dey [yde]; Yangum Gel [ygl]; Yangum Mon…
20 nhs Southeastern Puebla Nahuatl S Split into Sierra Negra Nahuatl [nsu] and Southeastern Puebla Na…
23 tot Patla-Chicontla Totonac S Split into Upper Necaxa Totonac [tku] and Tecpatlán Totonac [tcw] 20…
32 aiz Aari S Split into Aari [aiw] (new identifier) and Gayil [gyl] 2008-01-14
34 arf Arafundi S Split into three languages: Andai [afd]; Nanubae [afk]; Tapei [afp] 2008-01-14
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/
Dmod_get_split.txt7 go get example.net/split/nested@patch
9 stdout '^example.net/split v0.2.1 '
10 ! stdout '^example.net/split/nested'
16 go get example.net/split/nested/...@patch
18 stdout '^example.net/split v0.2.1 '
19 ! stdout '^example.net/split/nested'
28 # module example.net/split to v0.1.0, despite the fact that
29 # example.net/split v0.2.0 currently provides the package with the requested path.)
35 ! go get example.net/split/[email protected]
36split/nested: ambiguous import: found package example.net/split/nested in multiple modules:\n\texa…
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/base/
H A DSplitterTest.java44 assertThrows(NullPointerException.class, () -> COMMA_SPLITTER.split(null)); in testSplitNullString()
49 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit()
54 * All of the infrastructure of split and splitToString is identical, so we do one test of
55 * splitToString. All other cases should be covered by testing of split.
57 * <p>TODO(user): It would be good to make all the relevant tests run on both split and
67 assertEquals("[]", COMMA_SPLITTER.split("").toString()); in testToString()
68 assertEquals("[a, b, c]", COMMA_SPLITTER.split("a,b,c").toString()); in testToString()
69 assertEquals("[yam, bam, jam, ham]", Splitter.on(", ").split("yam, bam, jam, ham").toString()); in testToString()
74 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter()
80 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter()
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/base/
H A DSplitterTest.java45 assertThrows(NullPointerException.class, () -> COMMA_SPLITTER.split(null)); in testSplitNullString()
50 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit()
55 * All of the infrastructure of split and splitToString is identical, so we do one test of
56 * splitToString. All other cases should be covered by testing of split.
58 * <p>TODO(user): It would be good to make all the relevant tests run on both split and
74 assertEquals("[]", COMMA_SPLITTER.split("").toString()); in testToString()
75 assertEquals("[a, b, c]", COMMA_SPLITTER.split("a,b,c").toString()); in testToString()
76 assertEquals("[yam, bam, jam, ham]", Splitter.on(", ").split("yam, bam, jam, ham").toString()); in testToString()
81 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter()
87 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter()
[all …]
/aosp_15_r20/external/pytorch/test/inductor/
H A Dtest_split_cat_fx_passes.py33 return [torch.relu(s) for s in torch.split(x, 2, 1)]
36 return [torch.relu(s) for s in torch.split(x, 2, 0)]
39 return [torch.relu(s) for s in torch.split(x, 2, dim=1)]
43 torch.relu(s) for s in torch.split(x, split_size_or_sections=2, dim=1)
49 for s in torch.split(tensor=x, split_size_or_sections=2, dim=-1)
53 return [torch.relu(s) for s in torch.split(x, [16, 16], dim=1)]
56 return [torch.split(s, 2, 1) for s in torch.split(x, 2, 1)]
59 return [torch.relu(s) for s in torch.split(x, 3, 1)]
62 return [torch.relu(s) for s in x.split(2, 1)]
65 return [torch.relu(s) for s in x.split(2, dim=1)]
[all …]
/aosp_15_r20/cts/tests/framework/base/windowmanager/jetpack/src/android/server/wm/jetpack/embedding/
H A DSplitAttributesCalculatorTest.java84 // Create a split rule for activity A and activity B where the split ratio is 0.5. in testSetAndClearSplitAttributesCalculator()
93 // Register the split pair rule. in testSetAndClearSplitAttributesCalculator()
96 // Launch the activity A and B split and verify that the split pair matches in testSetAndClearSplitAttributesCalculator()
104 // Choose a split attributes that different from the default one. in testSetAndClearSplitAttributesCalculator()
109 // Only make the customized split attributes apply to the split rule with test tag in in testSetAndClearSplitAttributesCalculator()
122 // Start another Activity to trigger the calculator function, and verify if the split pair in testSetAndClearSplitAttributesCalculator()
123 // matches the customized split attributes. in testSetAndClearSplitAttributesCalculator()
128 // Clear the calculator function, then the split pair should align the default split pair in testSetAndClearSplitAttributesCalculator()
140 * Verifies the behavior to use splitAttributes calculator function to customize a split pair
141 * to expand split type.
[all …]
H A DActivityEmbeddingBoundsTests.java61 * split bounds.
74 * Tests that when two activities are in a split and the parent bounds shrink such that
75 * they can no longer support split activities, then the activities become stacked.
85 // Set split pair rule such that if the parent bounds is any smaller than it is now, then in testParentWindowMetricsPredicate()
86 // the parent cannot support a split. in testParentWindowMetricsPredicate()
105 // Resize multiple times to verify that the activities are correctly split or in testParentWindowMetricsPredicate()
135 // Return the task/display to its original size and verify that the activities are split in testParentWindowMetricsPredicate()
150 * Tests that the activity bounds for activities in a split match the LTR layout direction
157 // Create a split pair rule with layout direction LEFT_TO_RIGHT and a split ratio that in testLayoutDirection_LeftToRight()
163 // Start activities in a split and verify that the layout direction is LEFT_TO_RIGHT, in testLayoutDirection_LeftToRight()
[all …]
/aosp_15_r20/external/llvm/test/Transforms/LoopUnswitch/
H A 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 …]
/aosp_15_r20/external/yapf/
H A DCHANGELOG47 - Adds `FORCE_MULTILINE_DICT` knob to ensure dictionaries always split,
64 - Don't split between two-word comparison operators: "is not", "not in", etc.
99 fits in its starting line, then the subexpression is not split (thus avoiding
107 - Lambda expressions shouldn't have an increased split penalty applied to the
120 set. `SPLIT_PENALTY_ARITHMETIC_OPERATOR` allows you to set the split penalty
133 those are likely to be split anyway. If we do split, it leads to horrible
138 a function call and doesn't fit on a single line, then it forces a split.
146 - `ALLOW_SPLIT_BEFORE_DEFAULT_OR_NAMED_ASSIGNS` allows us to split before
163 Split only if absolutely necessary.
165 - Ignore pseudo tokens when calculating split penalties.
[all …]
/aosp_15_r20/packages/modules/Permission/tests/cts/permission/src/android/permission/cts/
DSplitPermissionsSystemTest.java98 for (SplitPermissionInfo split : mSplitPermissions) { in validateAndroidSystem()
99 String splitPermission = split.getSplitPermission(); in validateAndroidSystem()
111 assertThat(seenSplits).doesNotContain(split); in validateAndroidSystem()
112 seenSplits.add(split); in validateAndroidSystem()
114 List<String> newPermissions = split.getNewPermissions(); in validateAndroidSystem()
120 assertSplit(split, NO_TARGET, ACCESS_COARSE_LOCATION); in validateAndroidSystem()
122 assertSplit(split, Build.VERSION_CODES.Q, ACCESS_BACKGROUND_LOCATION); in validateAndroidSystem()
127 assertSplit(split, NO_TARGET, READ_EXTERNAL_STORAGE); in validateAndroidSystem()
129 assertSplit(split, Build.VERSION_CODES.Q, ACCESS_MEDIA_LOCATION); in validateAndroidSystem()
131 assertSplit(split, Build.VERSION_CODES.S_V2 + 1, READ_MEDIA_AUDIO); in validateAndroidSystem()
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DSplitTest.java36 String[] results = p.split("have/you/done/it/right"); in testSimple()
44 assertArraysEqual(new String[0], "hello".split(".")); in testEmptySplits()
45 assertArraysEqual(new String[] { "1", "2" }, "1:2:".split(":")); in testEmptySplits()
47 assertArraysEqual(new String[0], ":".split(":")); in testEmptySplits()
49 assertArraysEqual(new String[] { "1", "2", "" }, "1:2:".split(":", -1)); in testEmptySplits()
52 assertArraysEqual(new String[] { "", "", "o" }, "hello".split("..")); in testEmptySplits()
55 assertArraysEqual(new String[] { "hello" }, "hello".split("not-present-in-test")); in testEmptySplits()
58 assertArraysEqual(new String[] { "" }, "".split("not-present-in-test")); in testEmptySplits()
59 assertArraysEqual(new String[] { "" }, "".split("A?")); in testEmptySplits()
66 assertArraysEqual(new String[] { "a", "b", "c" }, "a,b,c".split(",", 0)); in testEmptySplits()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/30/
D30e75713470d524ebea5157c2d37793e86f0e98f99 …g/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/javac/art-run-…
100 …g/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/javac/art-run-…
127split/art-run-test-529-long-split/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_DIR__/out/lint-…
130 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
134 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
138 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
142 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
146 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
150 …to: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common/l…
154 …file: "out/soong/.intermediates/art/test/529-long-split/art-run-test-529-long-split/android_common…
[all …]
/aosp_15_r20/out/target/product/shiba/system/etc/permissions/
Dplatform.xml218 <split-permission name="android.permission.ACCESS_FINE_LOCATION">
220 </split-permission>
221 <split-permission name="android.permission.WRITE_EXTERNAL_STORAGE">
223 </split-permission>
224 <split-permission name="android.permission.READ_CONTACTS"
227 </split-permission>
228 <split-permission name="android.permission.WRITE_CONTACTS"
231 </split-permission>
232 <split-permission name="android.permission.ACCESS_FINE_LOCATION"
235 </split-permission>
[all …]
/aosp_15_r20/out/target/product/shiba/obj/ETC/platform.xml_intermediates/
Dplatform.xml218 <split-permission name="android.permission.ACCESS_FINE_LOCATION">
220 </split-permission>
221 <split-permission name="android.permission.WRITE_EXTERNAL_STORAGE">
223 </split-permission>
224 <split-permission name="android.permission.READ_CONTACTS"
227 </split-permission>
228 <split-permission name="android.permission.WRITE_CONTACTS"
231 </split-permission>
232 <split-permission name="android.permission.ACCESS_FINE_LOCATION"
235 </split-permission>
[all …]
/aosp_15_r20/frameworks/base/data/etc/
H A Dplatform.xml218 <split-permission name="android.permission.ACCESS_FINE_LOCATION">
220 </split-permission>
221 <split-permission name="android.permission.WRITE_EXTERNAL_STORAGE">
223 </split-permission>
224 <split-permission name="android.permission.READ_CONTACTS"
227 </split-permission>
228 <split-permission name="android.permission.WRITE_CONTACTS"
231 </split-permission>
232 <split-permission name="android.permission.ACCESS_FINE_LOCATION"
235 </split-permission>
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/data/etc/platform.xml/android_arm64_armv8-2a_cortex-a55/
Dplatform.xml218 <split-permission name="android.permission.ACCESS_FINE_LOCATION">
220 </split-permission>
221 <split-permission name="android.permission.WRITE_EXTERNAL_STORAGE">
223 </split-permission>
224 <split-permission name="android.permission.READ_CONTACTS"
227 </split-permission>
228 <split-permission name="android.permission.WRITE_CONTACTS"
231 </split-permission>
232 <split-permission name="android.permission.ACCESS_FINE_LOCATION"
235 </split-permission>
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/cc/
Dcc70e29738c0b1d039a063a5195cd4559cd1b6c899 …ecker-array-access-split/art-run-test-527-checker-array-access-split/android_common/javac/art-run-…
100 …ecker-array-access-split/art-run-test-527-checker-array-access-split/android_common/javac/art-run-…
127split/art-run-test-527-checker-array-access-split/android_common/lint-srcs.list.rsp __SBOX_SANDBOX…
130 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
134 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
138 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
142 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
146 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
150 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
154 …ng/.intermediates/art/test/527-checker-array-access-split/art-run-test-527-checker-array-access-sp…
[all …]
/aosp_15_r20/external/llvm/test/Transforms/IndVarSimplify/
H A Dpr20680.ll36 …br i1 %tobool5, label %for.body3.lr.ph.split.us, label %for.body3.lr.ph.for.body3.lr.ph.split_crit…
39 br label %for.body3.lr.ph.split
41 for.body3.lr.ph.split.us: ; preds = %for.body3.lr.ph
42 …br i1 %tobool, label %for.body3.lr.ph.split.us.split.us, label %for.body3.lr.ph.split.us.for.body3…
44 for.body3.lr.ph.split.us.for.body3.lr.ph.split.us.split_crit_edge: ; preds = %for.body3.lr.ph.split
45 br label %for.body3.lr.ph.split.us.split
47 for.body3.lr.ph.split.us.split.us: ; preds = %for.body3.lr.ph.split.us
50 … ; preds = %for.cond2.loopexit.us.us, %for.body3.lr.ph.split.us.split.us
83 for.body3.lr.ph.split.us.split: ; preds = %for.body3.lr.ph.split.us.for.body3.lr.…
86 … ; preds = %for.cond2.loopexit.us, %for.body3.lr.ph.split.us.split
[all …]
/aosp_15_r20/external/autotest/client/site_tests/platform_ToolchainTests/src/
H A 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 …]
/aosp_15_r20/external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/utils/
H A DFileUtils.java52 String[] split = line.split("#"); in loadEntriesFromFile() local
54 if (split.length <= 2) { in loadEntriesFromFile()
55 entries.add(new Entry(Float.parseFloat(split[0]), Integer.parseInt(split[1]))); in loadEntriesFromFile()
58 float[] vals = new float[split.length - 1]; in loadEntriesFromFile()
61 vals[i] = Float.parseFloat(split[i]); in loadEntriesFromFile()
64 entries.add(new BarEntry(Integer.parseInt(split[split.length - 1]), vals)); in loadEntriesFromFile()
90 // String[] split = line.split("#"); in loadEntriesFromFile()
91 // entries.add(new Entry(Float.parseFloat(split[0]), in loadEntriesFromFile()
92 // Integer.parseInt(split[1]))); in loadEntriesFromFile()
122 String[] split = line.split("#"); in loadEntriesFromAssets() local
[all …]
/aosp_15_r20/external/clang/test/Driver/
H A Dsplit-debug.c1 // Check that we split debug output properly
6 // CHECK-ACTIONS: objcopy{{.*}}--extract-dwo{{.*}}"split-debug.dwo"
7 // CHECK-ACTIONS: objcopy{{.*}}--strip-dwo{{.*}}"split-debug.o"
13 // CHECK-NO-ACTIONS-NOT: -split-dwarf
24 // CHECK-OPTION: "-split-dwarf-file" "split-debug.dwo"
37 // RUN: FileCheck -check-prefix=CHECK-GMLT-OVER-SPLIT < %t %s
39 // CHECK-GMLT-OVER-SPLIT: "-debug-info-kind=line-tables-only"
40 // CHECK-GMLT-OVER-SPLIT-NOT: "-split-dwarf=Enable"
41 // CHECK-GMLT-OVER-SPLIT-NOT: "-split-dwarf-file"
44 // RUN: FileCheck -check-prefix=CHECK-SPLIT-OVER-GMLT < %t %s
[all …]
/aosp_15_r20/external/executorch/backends/arm/test/ops/
H A Dtest_split.py20 class Split(torch.nn.Module): class in TestSimpleSplit
34 return x.split(split_size=split_size_or_sections, dim=dim)
44 return x.split(split_size=split_size_or_sections, dim=dim)[1]
50 return x.split(split_size=split_size_or_sections, dim=dim)[1:3]
104 .check(["torch.ops.aten.split.Tensor"])
111 @parameterized.expand(Split.test_data)
113 self._test_split_tosa_MI_pipeline(self.Split(), test_data)
115 @parameterized.expand([Split.test_data[3], Split.test_data[5]])
120 @parameterized.expand(Split.test_data)
124 @parameterized.expand(Split.test_data)
[all …]
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/geometry/partitioning/
H A DBSPTree.java47 * instances and propagated to split parts. These attributes are not
300 s = s.split(tree.parent.cut.getHyperplane()).getPlus(); in fitToCell()
302 s = s.split(tree.parent.cut.getHyperplane()).getMinus(); in fitToCell()
455 final BSPTree<S> merged = tree.split(cut); in merge()
533 * another tree (during a merge operation), and is split in several parts,
552 /** Split a BSP tree by an external sub-hyperplane.
553 * <p>Split a tree in two halves, on each side of the
567 * sub-hyperplane, the two parts of the split instance as its two
570 public BSPTree<S> split(final SubHyperplane<S> sub) { in split() method in BSPTree
578 final SubHyperplane.SplitSubHyperplane<S> subParts = sub.split(cHyperplane); in split()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/8e/
D8ec837679e95570fa2750390c9576c679df6dd4d59 from: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/busybox/R.jar"
60 to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/busybox/R.jar"
63 …from: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/combined/Split.ja…
64 to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/combined/Split.jar"
67 …from: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/manifest_fixer/An…
68 …to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/manifest_fixer/Andr…
203Split/Split/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_DIR__/out/lint-srcs.list && rm -rf __…
206 …to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/lint/lint-baseline.…
210 …to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/lint/lint-report.ht…
214 …to: "out/soong/.intermediates/frameworks/base/tests/Split/Split/android_common/lint/lint-report.tx…
[all …]
/aosp_15_r20/external/grpc-grpc/src/core/lib/slice/
H A Dslice.cc294 size_t split, in grpc_slice_split_tail_maybe_ref_impl() argument
300 GPR_ASSERT(source->data.inlined.length >= split); in grpc_slice_split_tail_maybe_ref_impl()
303 static_cast<uint8_t>(source->data.inlined.length - split); in grpc_slice_split_tail_maybe_ref_impl()
304 memcpy(tail.data.inlined.bytes, source->data.inlined.bytes + split, in grpc_slice_split_tail_maybe_ref_impl()
306 source->data.inlined.length = static_cast<uint8_t>(split); in grpc_slice_split_tail_maybe_ref_impl()
308 // refcount == NoopRefcount(), so we can just split in-place in grpc_slice_split_tail_maybe_ref_impl()
310 tail.data.refcounted.bytes = source->data.refcounted.bytes + split; in grpc_slice_split_tail_maybe_ref_impl()
311 tail.data.refcounted.length = source->data.refcounted.length - split; in grpc_slice_split_tail_maybe_ref_impl()
312 source->data.refcounted.length = split; in grpc_slice_split_tail_maybe_ref_impl()
314 size_t tail_length = source->data.refcounted.length - split; in grpc_slice_split_tail_maybe_ref_impl()
[all …]

12345678910>>...627