Home
last modified time | relevance | path

Searched refs:partials (Results 1 – 16 of 16) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DSimpleFilteredSentenceBreakIterator.java341 int[] partials = new int[subCount]; in wrapIteratorWithFilter() local
349 partials[i] = 0; // default: no partial in wrapIteratorWithFilter()
364 if (partials[j] == 0) { // hasn't been processed yet in wrapIteratorWithFilter()
365 partials[j] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter()
366 } else if ((partials[j] & SuppressInReverse) != 0) { in wrapIteratorWithFilter()
372 if ((sameAs == -1) && (partials[i] == 0)) { in wrapIteratorWithFilter()
378 partials[i] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter()
385 if (partials[i] == 0) { in wrapIteratorWithFilter()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleFilteredSentenceBreakIterator.java336 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/tensorflow/tensorflow/tools/dockerfiles/
Dassembler.py237 self.partials = kwargs['partials']
250 if ispartial and value not in self.partials:
455 partials = dict()
467 partials[simple_name] = partial_contents
468 return partials
480 partials = gather_existing_partials(FLAGS.partial_dir)
484 v = TfDockerTagValidator(schema, partials=partials)
493 all_tags = assemble_tags(tag_spec, FLAGS.arg, FLAGS.release, partials)
DREADME.md9 `partials/` and the rules in `spec.yml`. See
62 `*.partial.Dockerfile` files in the `partials` directory, then run
Dtools.Dockerfile19 # or set of TF Docker partials. See README.md for usage instructions.
/external/icu/icu4c/source/common/
Dfilteredbrk.cpp579 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/
Dstatistics.py142 partials = {d: n}
143 partials_get = partials.get
149 partials[d] = partials_get(d, 0) + n
150 if None in partials:
153 total = partials[None]
158 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
/external/mesa3d/src/glx/
Dglxhash.c119 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/
Dxf86drmHash.c114 table->partials = 0; in drmHashCreate()
160 ++table->partials; in HashFind()
Dxf86drmHash.h42 unsigned long partials; /* Not at top of linked list */ member
/external/skia/src/pathops/
DSkPathWriter.h42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
DSkPathWriter.cpp252 const SkTArray<SkPath>& partPartials = partWriter.partials(); in assemble()
/external/skqp/src/pathops/
DSkPathWriter.h42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
DSkPathWriter.cpp252 const SkTArray<SkPath>& partPartials = partWriter.partials(); in assemble()
/external/libdrm/tests/
Dhash.c110 table->entries, table->hits, table->partials, table->misses); in compute_dist()
/external/tensorflow/tensorflow/python/ops/
Dmath_ops_test.py355 partials = []
357 partials.append(math_ops.add_n([constant_op.constant(1)]))
358 partials.append(
362 res = math_ops.add_n(partials) + constant_op.constant(0)