Home
last modified time | relevance | path

Searched full:cut (Results 1 – 25 of 2176) sorted by relevance

12345678910>>...88

/external/guava/guava/src/com/google/common/collect/
DTreeRangeSet.java46 @VisibleForTesting final NavigableMap<Cut<C>, Range<C>> rangesByLowerBound;
50 return new TreeRangeSet<>(new TreeMap<Cut<C>, Range<C>>()); in create()
75 private TreeRangeSet(NavigableMap<Cut<C>, Range<C>> rangesByLowerCut) { in TreeRangeSet()
124 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(Cut.belowValue(value)); in rangeContaining()
136 Entry<Cut<C>, Range<C>> ceilingEntry = rangesByLowerBound.ceilingEntry(range.lowerBound); in intersects()
142 Entry<Cut<C>, Range<C>> priorEntry = rangesByLowerBound.lowerEntry(range.lowerBound); in intersects()
151 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound); in encloses()
158 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound); in rangeEnclosing()
166 Entry<Cut<C>, Range<C>> firstEntry = rangesByLowerBound.firstEntry(); in span()
167 Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry(); in span()
[all …]
DCut.java30 * always be represented by a pair of {@code Cut} instances.
36 abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { class
39 Cut(C endpoint) { in Cut() method in Cut
49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType()
51 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType()
64 * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
67 Cut<C> canonical(DiscreteDomain<C> domain) { in canonical()
73 public int compareTo(Cut<C> that) { in compareTo()
95 if (obj instanceof Cut) { in equals()
96 // It might not really be a Cut<C>, but we'll catch a CCE if it's not in equals()
[all …]
DTreeRangeMap.java57 private final NavigableMap<Cut<K>, RangeMapEntry<K, V>> entriesByLowerBound;
72 RangeMapEntry(Cut<K> lowerBound, Cut<K> upperBound, V value) { in RangeMapEntry()
95 Cut<K> getLowerBound() { in getLowerBound()
99 Cut<K> getUpperBound() { in getUpperBound()
114 Entry<Cut<K>, RangeMapEntry<K, V>> mapEntry = in getEntry()
115 entriesByLowerBound.floorEntry(Cut.belowValue(key)); in getEntry()
147 Entry<Cut<K>, RangeMapEntry<K, V>> lowerEntry = in coalescedRange()
151 Entry<Cut<K>, RangeMapEntry<K, V>> higherEntry = in coalescedRange()
160 Range<K> range, V value, @CheckForNull Entry<Cut<K>, RangeMapEntry<K, V>> entry) { in coalesce()
183 Entry<Cut<K>, RangeMapEntry<K, V>> firstEntry = entriesByLowerBound.firstEntry(); in span()
[all …]
DRange.java128 static class LowerBoundFn implements Function<Range, Cut> {
132 public Cut apply(Range range) { in apply()
137 static class UpperBoundFn implements Function<Range, Cut> {
141 public Cut apply(Range range) { in apply()
147 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> lowerBoundFn() { in lowerBoundFn()
152 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> upperBoundFn() { in upperBoundFn()
160 static <C extends Comparable<?>> Range<C> create(Cut<C> lowerBound, Cut<C> upperBound) { in create()
174 return create(Cut.aboveValue(lower), Cut.belowValue(upper)); in open()
186 return create(Cut.belowValue(lower), Cut.aboveValue(upper)); in closed()
198 return create(Cut.belowValue(lower), Cut.belowValue(upper)); in closedOpen()
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DTreeRangeSet.java46 @VisibleForTesting final NavigableMap<Cut<C>, Range<C>> rangesByLowerBound;
50 return new TreeRangeSet<>(new TreeMap<Cut<C>, Range<C>>()); in create()
75 private TreeRangeSet(NavigableMap<Cut<C>, Range<C>> rangesByLowerCut) { in TreeRangeSet()
124 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(Cut.belowValue(value)); in rangeContaining()
136 Entry<Cut<C>, Range<C>> ceilingEntry = rangesByLowerBound.ceilingEntry(range.lowerBound); in intersects()
142 Entry<Cut<C>, Range<C>> priorEntry = rangesByLowerBound.lowerEntry(range.lowerBound); in intersects()
151 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound); in encloses()
158 Entry<Cut<C>, Range<C>> floorEntry = rangesByLowerBound.floorEntry(range.lowerBound); in rangeEnclosing()
166 Entry<Cut<C>, Range<C>> firstEntry = rangesByLowerBound.firstEntry(); in span()
167 Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry(); in span()
[all …]
DCut.java30 * always be represented by a pair of {@code Cut} instances.
36 abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { class
39 Cut(C endpoint) { in Cut() method in Cut
49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); in withLowerBoundType()
51 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); in withUpperBoundType()
64 * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
67 Cut<C> canonical(DiscreteDomain<C> domain) { in canonical()
73 public int compareTo(Cut<C> that) { in compareTo()
95 if (obj instanceof Cut) { in equals()
96 // It might not really be a Cut<C>, but we'll catch a CCE if it's not in equals()
[all …]
DRange.java128 static class LowerBoundFn implements Function<Range, Cut> {
132 public Cut apply(Range range) { in apply()
137 static class UpperBoundFn implements Function<Range, Cut> {
141 public Cut apply(Range range) { in apply()
147 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> lowerBoundFn() { in lowerBoundFn()
152 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> upperBoundFn() { in upperBoundFn()
160 static <C extends Comparable<?>> Range<C> create(Cut<C> lowerBound, Cut<C> upperBound) { in create()
174 return create(Cut.aboveValue(lower), Cut.belowValue(upper)); in open()
186 return create(Cut.belowValue(lower), Cut.aboveValue(upper)); in closed()
198 return create(Cut.belowValue(lower), Cut.belowValue(upper)); in closedOpen()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math3/geometry/partitioning/
DBSPTree.java35 * sub-regions at each side of a cut hyperplane. The root tree
70 /** Cut sub-hyperplane. */
71 private SubHyperplane<S> cut; field in BSPTree
73 /** Tree at the plus side of the cut hyperplane. */
76 /** Tree at the minus side of the cut hyperplane. */
88 cut = null; in BSPTree()
99 cut = null; in BSPTree()
113 * @param cut cut sub-hyperplane for the tree
119 public BSPTree(final SubHyperplane<S> cut, final BSPTree<S> plus, final BSPTree<S> minus, in BSPTree() argument
121 this.cut = cut; in BSPTree()
[all …]
DCharacterization.java25 /** Cut sub-hyperplanes characterization with respect to inside/outside cells.
32 /** Part of the cut sub-hyperplane that touch outside cells. */
35 /** Part of the cut sub-hyperplane that touch inside cells. */
48 * twice for each cut sub-hyperplane in the tree, once on the plus
68 * each cut sub-hyperplane in the tree, once on the plus node and
110 /** Add a part of the cut sub-hyperplane known to touch an outside cell.
111 * @param sub part of the cut sub-hyperplane known to touch an outside cell
124 /** Add a part of the cut sub-hyperplane known to touch an inside cell.
125 * @param sub part of the cut sub-hyperplane known to touch an inside cell
138 /** Check if the cut sub-hyperplane touches outside cells.
[all …]
DBoundaryAttribute.java26 * set to {@code true}. It contains the parts of the node cut
36 /** Part of the node cut sub-hyperplane that belongs to the
42 /** Part of the node cut sub-hyperplane that belongs to the
52 * @param plusOutside part of the node cut sub-hyperplane that
55 * @param plusInside part of the node cut sub-hyperplane that
69 * @param plusOutside part of the node cut sub-hyperplane that
72 * @param plusInside part of the node cut sub-hyperplane that
87 /** Get the part of the node cut sub-hyperplane that belongs to the
90 * @return part of the node cut sub-hyperplane that belongs to the
98 /** Get the part of the node cut sub-hyperplane that belongs to the
[all …]
/external/python/cpython3/Objects/stringlib/
Dstringlib_find_two_way_notes.txt27 * "Very carefully" cut the needle in two.
47 cut: <<<<>>>>
53 cut: <<<<>>>>
55 Why are we allowed to do this? Because we cut the needle very
56 carefully, in such a way that if the cut is ...abcd + EFGH... then
66 cut, then the following alignments do not work, so we can skip them:
166 This is because no matter how you cut it, you'll get
167 s[cut-3:cut] == s[cut:cut+3]. So what do we do? We still cut the
179 since ?AA == bAA. We already knew that a cut to make length-3
184 that no matter the period of the original needle, you can cut it in
[all …]
Dfastsearch.h243 >>> needle = (left := needle[:cut]) + (right := needle[cut:]) in STRINGLIB()
244 where the "local period" of the cut is maximal. in STRINGLIB()
246 The local period of the cut is the minimal length of a string w in STRINGLIB()
253 Crochemore and Perrin (1991) show that this cut can be computed in STRINGLIB()
260 >>> cut, period = factorize(x) in STRINGLIB()
261 >>> x[:cut], (right := x[cut:]) in STRINGLIB()
274 Py_ssize_t cut1, period1, cut2, period2, cut, period; in STRINGLIB() local
278 // Take the later cut. in STRINGLIB()
281 cut = cut1; in STRINGLIB()
285 cut = cut2; in STRINGLIB()
[all …]
/external/arm-trusted-firmware/drivers/renesas/rcar/qos/
Dqos_init.c70 ERROR("LSI Cut ID(PRR=0x%x) QoS " \
127 case PRR_PRODUCT_21: /* M3 Cut 13 */ in rcar_qos_init()
130 case PRR_PRODUCT_30: /* M3 Cut 30 */ in rcar_qos_init()
195 /* H3 Cut 10 */ in rcar_qos_init()
202 /* H3 Cut 11 */ in rcar_qos_init()
209 /* H3 Cut 20 */ in rcar_qos_init()
216 /* H3 Cut 30 or later */ in rcar_qos_init()
224 /* H3N Cut 30 or later */ in rcar_qos_init()
232 /* M3 Cut 10 */ in rcar_qos_init()
239 /* M3 Cut 11 */ in rcar_qos_init()
[all …]
/external/trusty/arm-trusted-firmware/drivers/renesas/rcar/qos/
Dqos_init.c70 ERROR("LSI Cut ID(PRR=0x%x) QoS " \
127 case PRR_PRODUCT_21: /* M3 Cut 13 */ in rcar_qos_init()
130 case PRR_PRODUCT_30: /* M3 Cut 30 */ in rcar_qos_init()
195 /* H3 Cut 10 */ in rcar_qos_init()
202 /* H3 Cut 11 */ in rcar_qos_init()
209 /* H3 Cut 20 */ in rcar_qos_init()
216 /* H3 Cut 30 or later */ in rcar_qos_init()
224 /* H3N Cut 30 or later */ in rcar_qos_init()
232 /* M3 Cut 10 */ in rcar_qos_init()
239 /* M3 Cut 11 */ in rcar_qos_init()
[all …]
/external/python/cpython3/Tools/peg_generator/pegen/
Dgrammar_parser.py15 Cut,
338 cut = False
346 (cut := True)
352 if cut: return None
353 cut = False
359 (cut := True)
365 if cut: return None
387 cut = False
393 (cut := True)
399 if cut: return None
[all …]
/external/aws-crt-java/codebuild/
Dcommon-linux.sh14 …value --secret-id "unit-test/certificate" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") &…
15 …-value --secret-id "unit-test/privatekey" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") &…
16 …-value --secret-id "ecc-test/certificate" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") &…
17 …t-value --secret-id "ecc-test/privatekey" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") &…
18 …lue --secret-id "unit-test/privatekey-p8" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") &…
19 …get-secret-value --secret-id "unit-test/endpoint" --query "SecretString" | cut -f2 -d":" | sed -e …
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
DDecoder.java83 int cut = header.indexOf('"', pos); in getHeaderElements() local
84 if (cut == -1) in getHeaderElements()
87 result.put(key, header.substring(pos, cut)); in getHeaderElements()
88 pos = cut + 2; in getHeaderElements()
96 int cut = header.indexOf(';', pos); in getHeaderElements() local
97 if (cut == -1) { in getHeaderElements()
101 result.put(key, header.substring(pos, cut)); in getHeaderElements()
102 pos = cut + 1; in getHeaderElements()
105 int cut = header.indexOf('=', pos); in getHeaderElements() local
107 if (cut == -1) in getHeaderElements()
[all …]
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/
Dfunctions21 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
22 file=`echo $line | cut -f1 -d:`
27 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
28 file=`echo $line | cut -f1 -d:`
43 echo 0 > `echo $line | cut -f1 -d:`
53 tr=`echo $t | cut -d: -f2`
60 name=`echo $t | cut -d: -f1 | cut -d' ' -f1`
62 tr=`echo $t | cut -d: -f2-4`
63 limit=`echo $t | cut -d: -f5`
65 tr=`echo $t | cut -d: -f2`
[all …]
/external/arm-trusted-firmware/drivers/renesas/rzg/qos/
Dqos_init.c54 ERROR("LSI Cut ID(PRR=0x%x) QoS " \
83 case PRR_PRODUCT_21: /* G2M Cut 13 */ in rzg_qos_init()
86 case PRR_PRODUCT_30: /* G2M Cut 30 */ in rzg_qos_init()
138 /* G2M Cut 10 */ in rzg_qos_init()
145 /* G2M Cut 11 */ in rzg_qos_init()
152 /* G2M Cut 13 */ in rzg_qos_init()
159 /* G2M Cut 30 or later */ in rzg_qos_init()
167 /* G2H Cut 30 or later */ in rzg_qos_init()
173 /* G2N Cut 10 or later */ in rzg_qos_init()
179 /* G2E Cut 10 or later */ in rzg_qos_init()
[all …]
/external/trusty/arm-trusted-firmware/drivers/renesas/rzg/qos/
Dqos_init.c54 ERROR("LSI Cut ID(PRR=0x%x) QoS " \
83 case PRR_PRODUCT_21: /* G2M Cut 13 */ in rzg_qos_init()
86 case PRR_PRODUCT_30: /* G2M Cut 30 */ in rzg_qos_init()
138 /* G2M Cut 10 */ in rzg_qos_init()
145 /* G2M Cut 11 */ in rzg_qos_init()
152 /* G2M Cut 13 */ in rzg_qos_init()
159 /* G2M Cut 30 or later */ in rzg_qos_init()
167 /* G2H Cut 30 or later */ in rzg_qos_init()
173 /* G2N Cut 10 or later */ in rzg_qos_init()
179 /* G2E Cut 10 or later */ in rzg_qos_init()
[all …]
/external/ltp/testcases/kernel/security/integrity/ima/tests/
Dima_setup.sh29 digest="$(${algorithm}sum $file 2>/dev/null | cut -f1 -d ' ')"
35 digest="$(openssl $algorithm $file 2>/dev/null | cut -f2 -d ' ')"
48 digest="$(rdigest --$arg $file 2>/dev/null | cut -f1 -d ' ')"
133 dir="$(grep ^$type /proc/mounts | cut -d ' ' -f2 | head -1)"
201 local template="$(tail -1 $ASCII_MEASUREMENTS | cut -d' ' -f 3)"
237 digest=$(echo "$line" | cut -d' ' -f $DIGEST_INDEX)
244 algorithm=$(echo "$digest" | cut -d $delimiter -f 1)
245 digest=$(echo "$digest" | cut -d $delimiter -f 2)
278 algorithm=$(echo "$tmp" | cut -d'|' -f1)
279 digest=$(echo "$tmp" | cut -d'|' -f2)
[all …]
/external/aws-crt-java/utils/
Dmqtt5_test_setup.sh30 unset $(grep -v '^#' ${PWD}/environment_files.txt | xargs | cut -d "=" -f 1)
64 …TIFICATE_FILE_SECRET}" --query "SecretString" --region ${region} | cut -f2 -d":" | cut -f2 -d\") &…
65 …QTT5_KEY_FILE_SECRET}" --query "SecretString" --region ${region} | cut -f2 -d":" | cut -f2 -d\") &…
73 unset $(grep -v '^#' environment_files.txt | xargs | cut -d "=" -f 1)
87 unset $(grep -v '^#' environment_files.txt | xargs | cut -d "=" -f 1)
101 …TIFICATE_PATH_SECRET}" --query "SecretString" --region ${region} | cut -f2 -d":" | cut -f2 -d\") &…
102 …_IOT_KEY_PATH_SECRET}" --query "SecretString" --region ${region} | cut -f2 -d":" | cut -f2 -d\") &…
111 unset $(grep -v '^#' environment_files.txt | xargs | cut -d "=" -f 1)
129 unset $(grep -v '^#' environment_files.txt | xargs | cut -d "=" -f 1)
/external/mesa3d/src/nouveau/compiler/nak/
Dopt_out.rs9 fn try_combine_outs(emit: &mut Instr, cut: &Instr) -> bool { in try_combine_outs()
14 let Op::Out(cut) = &cut.op else { in try_combine_outs()
18 if emit.out_type != OutType::Emit || cut.out_type != OutType::Cut { in try_combine_outs()
26 if cut.handle.as_ssa() != Some(handle) { in try_combine_outs()
30 if emit.stream != cut.stream { in try_combine_outs()
34 emit.dst = cut.dst; in try_combine_outs()
/external/AFLplusplus/test/
Dtest-qemu-mode.sh31 echo CUT------------------------------------------------------------------CUT
33 echo CUT------------------------------------------------------------------CUT
52 echo CUT------------------------------------------------------------------CUT
54 echo CUT------------------------------------------------------------------CUT
73 echo CUT------------------------------------------------------------------CUT
75 echo CUT------------------------------------------------------------------CUT
96 echo CUT------------------------------------------------------------------CUT
98 echo CUT------------------------------------------------------------------CUT
146 echo CUT------------------------------------------------------------------CUT
148 echo CUT------------------------------------------------------------------CUT
Dtest-unicorn-mode.sh41 echo CUT------------------------------------------------------------------CUT
43 echo CUT------------------------------------------------------------------CUT
69 echo CUT------------------------------------------------------------------CUT
71 echo CUT------------------------------------------------------------------CUT
89 echo CUT------------------------------------------------------------------CUT
91 echo CUT------------------------------------------------------------------CUT

12345678910>>...88