Searched refs:partials (Results 1 – 11 of 11) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | SimpleFilteredSentenceBreakIterator.java | 338 int[] partials = new int[subCount]; in wrapIteratorWithFilter() local 346 partials[i] = 0; // default: no partial in wrapIteratorWithFilter() 361 if (partials[j] == 0) { // hasn't been processed yet in wrapIteratorWithFilter() 362 partials[j] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 363 } else if ((partials[j] & SuppressInReverse) != 0) { in wrapIteratorWithFilter() 369 if ((sameAs == -1) && (partials[i] == 0)) { in wrapIteratorWithFilter() 375 partials[i] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 382 if (partials[i] == 0) { in wrapIteratorWithFilter()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | SimpleFilteredSentenceBreakIterator.java | 336 int[] partials = new int[subCount]; in wrapIteratorWithFilter() local 344 partials[i] = 0; // default: no partial in wrapIteratorWithFilter() 359 if (partials[j] == 0) { // hasn't been processed yet in wrapIteratorWithFilter() 360 partials[j] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 361 } else if ((partials[j] & SuppressInReverse) != 0) { in wrapIteratorWithFilter() 367 if ((sameAs == -1) && (partials[i] == 0)) { in wrapIteratorWithFilter() 373 partials[i] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 380 if (partials[i] == 0) { in wrapIteratorWithFilter()
|
/external/icu/icu4c/source/common/ |
D | filteredbrk.cpp | 579 LocalMemory<int> partials; in build() local 580 partials.allocateInsteadAndReset(subCount); in build() 599 partials[n] = 0; // default: not partial in build() 615 if(partials[j]==0) { // hasn't been processed yet in build() 616 partials[j] = kSuppressInReverse | kAddToForward; in build() 618 } else if(partials[j] & kSuppressInReverse) { in build() 624 FB_TRACE(" == partial #",&ustrs[i],FALSE,partials[i]); in build() 626 if(sameAs == -1 && partials[i] == 0) { in build() 633 partials[i] = kSuppressInReverse | kAddToForward; in build() 641 if(partials[i]==0) { in build()
|
/external/python/cpython3/Lib/ |
D | statistics.py | 143 partials = {d: n} 144 partials_get = partials.get 150 partials[d] = partials_get(d, 0) + n 151 if None in partials: 154 total = partials[None] 159 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
|
/external/mesa3d/src/glx/ |
D | glxhash.c | 119 unsigned long partials; /* Not at top of linked list */ member 167 table->partials = 0; in __glxHashCreate() 217 ++table->partials; in HashFind() 362 table->hits, table->partials, table->misses); in compute_dist()
|
/external/libdrm/ |
D | xf86drmHash.c | 117 table->partials = 0; in drmHashCreate() 163 ++table->partials; in HashFind()
|
D | xf86drmHash.h | 42 unsigned long partials; /* Not at top of linked list */ member
|
/external/skia/src/pathops/ |
D | SkPathWriter.h | 42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
|
/external/skqp/src/pathops/ |
D | SkPathWriter.h | 42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_ops_test.py | 314 partials = [] 316 partials.append(math_ops.add_n([constant_op.constant(1)])) 317 partials.append( 321 res = math_ops.add_n(partials) + constant_op.constant(0)
|
/external/libdrm/tests/ |
D | hash.c | 110 table->entries, table->hits, table->partials, table->misses); in compute_dist()
|