/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | SimpleFilteredSentenceBreakIterator.java | 341 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()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | SimpleFilteredSentenceBreakIterator.java | 354 int[] partials = new int[subCount]; in wrapIteratorWithFilter() local 362 partials[i] = 0; // default: no partial in wrapIteratorWithFilter() 377 if (partials[j] == 0) { // hasn't been processed yet in wrapIteratorWithFilter() 378 partials[j] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 379 } else if ((partials[j] & SuppressInReverse) != 0) { in wrapIteratorWithFilter() 385 if ((sameAs == -1) && (partials[i] == 0)) { in wrapIteratorWithFilter() 391 partials[i] = SuppressInReverse | AddToForward; in wrapIteratorWithFilter() 398 if (partials[i] == 0) { in wrapIteratorWithFilter()
|
/third_party/flutter/skia/third_party/externals/icu/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()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | filteredbrk.cpp | 606 LocalMemory<int> partials; in build() local 607 partials.allocateInsteadAndReset(subCount); in build() 626 partials[n] = 0; // default: not partial in build() 642 if(partials[j]==0) { // hasn't been processed yet in build() 643 partials[j] = kSuppressInReverse | kAddToForward; in build() 645 } else if(partials[j] & kSuppressInReverse) { in build() 651 FB_TRACE(" == partial #",&ustrs[i],FALSE,partials[i]); in build() 653 if(sameAs == -1 && partials[i] == 0) { in build() 660 partials[i] = kSuppressInReverse | kAddToForward; in build() 668 if(partials[i]==0) { in build()
|
/third_party/node/deps/icu-small/source/common/ |
D | filteredbrk.cpp | 605 LocalMemory<int> partials; in build() local 606 partials.allocateInsteadAndReset(subCount); in build() 625 partials[n] = 0; // default: not partial in build() 641 if(partials[j]==0) { // hasn't been processed yet in build() 642 partials[j] = kSuppressInReverse | kAddToForward; in build() 644 } else if(partials[j] & kSuppressInReverse) { in build() 650 FB_TRACE(" == partial #",&ustrs[i],FALSE,partials[i]); in build() 652 if(sameAs == -1 && partials[i] == 0) { in build() 659 partials[i] = kSuppressInReverse | kAddToForward; in build() 667 if(partials[i]==0) { in build()
|
/third_party/icu/icu4c/source/common/ |
D | filteredbrk.cpp | 606 LocalMemory<int> partials; in build() local 607 partials.allocateInsteadAndReset(subCount); in build() 626 partials[n] = 0; // default: not partial in build() 642 if(partials[j]==0) { // hasn't been processed yet in build() 643 partials[j] = kSuppressInReverse | kAddToForward; in build() 645 } else if(partials[j] & kSuppressInReverse) { in build() 651 FB_TRACE(" == partial #",&ustrs[i],FALSE,partials[i]); in build() 653 if(sameAs == -1 && partials[i] == 0) { in build() 660 partials[i] = kSuppressInReverse | kAddToForward; in build() 668 if(partials[i]==0) { in build()
|
/third_party/python/Lib/ |
D | statistics.py | 183 partials = {} 184 partials_get = partials.get 190 partials[d] = partials_get(d, 0) + n 191 if None in partials: 194 total = partials[None] 198 total = sum(Fraction(n, d) for d, n in partials.items()) 710 partials = Counter() 714 partials[diff_d * diff_d] += diff_n * diff_n 715 if None in partials: 718 total = partials[None] [all …]
|
/third_party/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()
|
/third_party/libdrm/ |
D | xf86drmHash.h | 42 unsigned long partials; /* Not at top of linked list */ member
|
D | xf86drmHash.c | 155 ++table->partials; in HashFind()
|
/third_party/flutter/skia/src/pathops/ |
D | SkPathWriter.h | 42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
|
D | SkPathWriter.cpp | 252 const SkTArray<SkPath>& partPartials = partWriter.partials(); in assemble()
|
/third_party/skia/src/pathops/ |
D | SkPathWriter.h | 42 const SkTArray<SkPath>& partials() const { return fPartials; } in partials() function
|
D | SkPathWriter.cpp | 249 const SkTArray<SkPath>& partPartials = partWriter.partials(); in assemble()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-adopt-udp/ |
D | README.md | 12 happen next time around the event loop if there are no pending partials.
|
/third_party/libdrm/tests/ |
D | hash.c | 110 table->entries, table->hits, table->partials, table->misses); in compute_dist()
|
/third_party/node/test/fixtures/wpt/resources/ |
D | idlharness.js | 192 this.partials = []; property in self.IdlArray 247 this.partials.map(p => p.name).forEach(v => all_deps.add(v)); 249 for (const obj of [this.members, this.partials]) { 315 || this.partials.some(function(p) { 391 this.partials.push(parsed_idl); 849 this.partials.forEach(function(parsed_idl) 924 this.partials = []; property
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_subdiv_patch.txt | 55 * View dependency is simple per-object but complex for partials.
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_subdiv_patch.txt | 55 * View dependency is simple per-object but complex for partials.
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_cs.c | 191 LLVMValueRef partials = LLVMBuildURem(gallivm->builder, x_size_arg, vec_length, ""); in generate_compute() local 234 args[13] = partials; in generate_compute() 310 partials = LLVMGetParam(coro, 13); in generate_compute() 345 …LLVMValueRef has_partials = LLVMBuildICmp(gallivm->builder, LLVMIntNE, partials, lp_build_const_in… in generate_compute() 391 lp_build_loop_begin(&mask_loop_state, gallivm, partials); in generate_compute()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_evaluators.txt | 206 partials of U (tangents), partials of V, and/or binormals? 216 The partials of U and partials of V are fairly straightforward
|
D | NV_fragment_program.txt | 270 computing partials of the computed depth value and using these 271 partials to derive the depth values for each of the extra samples. 284 values since the partials used to generate the offset may not match 285 the partials of the computed depth value. Polygon offset for filled 287 partials obtained by the DDX and DDY instructions. This will not work 288 properly for line- and point-mode polygons, since the partials used 289 for offset are computed over the polygon, while the partials resulting 1966 TXD[C][_SAT] v,v,v v texture lookup w/partials 2424 inputs), the resulting partials may be encoded as large floating-point 2443 inputs), the resulting partials may be encoded as large floating-point
|
/third_party/openGLES/extensions/NV/ |
D | NV_evaluators.txt | 206 partials of U (tangents), partials of V, and/or binormals? 216 The partials of U and partials of V are fairly straightforward
|
D | NV_fragment_program.txt | 270 computing partials of the computed depth value and using these 271 partials to derive the depth values for each of the extra samples. 284 values since the partials used to generate the offset may not match 285 the partials of the computed depth value. Polygon offset for filled 287 partials obtained by the DDX and DDY instructions. This will not work 288 properly for line- and point-mode polygons, since the partials used 289 for offset are computed over the polygon, while the partials resulting 1966 TXD[C][_SAT] v,v,v v texture lookup w/partials 2424 inputs), the resulting partials may be encoded as large floating-point 2443 inputs), the resulting partials may be encoded as large floating-point
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_fragment_shader.txt | 316 depth values since the partials used to generate the offset may not 317 match the partials of the computed depth value.
|