/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProfWriter.cpp | 277 TheSummary->set(Summary::MaxFunctionCount, PS.getMaxFunctionCount()); in setSummary() 278 TheSummary->set(Summary::MaxBlockCount, PS.getMaxCount()); in setSummary() 279 TheSummary->set(Summary::MaxInternalBlockCount, PS.getMaxInternalCount()); in setSummary() 280 TheSummary->set(Summary::TotalBlockCount, PS.getTotalCount()); in setSummary() 281 TheSummary->set(Summary::TotalNumBlocks, PS.getNumCounts()); in setSummary() 282 TheSummary->set(Summary::TotalNumFunctions, PS.getNumFunctions()); in setSummary()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | FloatArrayListTest.java | 81 list.set(0, 1F); in testModificationWithIteration() 226 assertEquals(2F, (float) list.set(0, 3F), 0.0f); in testSet() 229 assertEquals(4F, (float) list.set(1, 0F), 0.0f); in testSet() 233 list.set(-1, 0F); in testSet() 240 list.set(2, 0F); in testSet() 530 list.set(0, 0F); in assertImmutable()
|
H A D | DoubleArrayListTest.java | 81 list.set(0, 1D); in testModificationWithIteration() 226 assertEquals(2D, (double) list.set(0, 3D), 0.0); in testSet() 229 assertEquals(4D, (double) list.set(1, 0D), 0.0); in testSet() 233 list.set(-1, 0D); in testSet() 240 list.set(2, 0D); in testSet() 530 list.set(0, 0D); in assertImmutable()
|
H A D | LongArrayListTest.java | 81 list.set(0, 1L); in testModificationWithIteration() 226 assertEquals(2L, (long) list.set(0, 3L)); in testSet() 229 assertEquals(4L, (long) list.set(1, 0L)); in testSet() 233 list.set(-1, 0L); in testSet() 240 list.set(2, 0L); in testSet() 528 list.set(0, 0L); in assertImmutable()
|
/third_party/python/Lib/test/ |
H A D | test_reprlib.py | 81 eq(r(set([])), "set()") 82 eq(r(set([1])), "{1}") 83 eq(r(set([1, 2, 3])), "{1, 2, 3}") 84 eq(r(set([1, 2, 3, 4, 5, 6])), "{1, 2, 3, 4, 5, 6}") 85 eq(r(set([1, 2, 3, 4, 5, 6, 7])), "{1, 2, 3, 4, 5, 6, ...}") 220 x = set([1j, 2j, 3j])
|
H A D | test_kqueue.py | 146 events = set((e.ident, e.filter) for e in events) 147 self.assertEqual(events, set([ 163 events = set((e.ident, e.filter) for e in events) 164 self.assertEqual(events, set([ 185 events = set((e.ident, e.filter) for e in events) 186 self.assertEqual(events, set([
|
H A D | test_pprint.py | 38 class set2(set): 41 class set3(set): 43 return set.__repr__(self) 45 class set_custom_repr(set): 47 return '*'*len(set.__repr__(self)) 231 set(), set2(), set3(), 240 set({7}), set2({7}), set3({7}), 579 self.assertEqual(pprint.pformat(set()), 'set()') 580 self.assertEqual(pprint.pformat(set(rang [all...] |
H A D | test_itertools.py | 266 if len(set(indices)) == r: 274 self.assertEqual(len(result), len(set(result))) # no repeats 278 self.assertEqual(len(set(c)), r) # no duplicate elements 298 self.assertEqual(len(set(map(id, combinations('abcde', 3)))), 1) 299 self.assertNotEqual(len(set(map(id, list(combinations('abcde', 3))))), 1) 354 self.assertEqual(len(result), len(set(result))) # no repeats 361 self.assertTrue(set(result) >= set(regular_combs)) # rest should be supersets of regular combs 366 self.assertEqual(len(noruns), len(set(noruns))) # no repeats other than consecutive 386 self.assertEqual(len(set(ma [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | extension.h | 139 // flags are set. This is for when width/precision are specified. 273 // Width and precison are not specified, no flags are set. 417 // Checks whether `c` exists in `set`. 418 constexpr bool Contains(FormatConversionCharSet set, char c) { in Contains() argument 419 return (static_cast<uint64_t>(set) & in Contains() 423 // Checks whether all the characters in `c` are contained in `set` 424 constexpr bool Contains(FormatConversionCharSet set, in Contains() argument 426 return (static_cast<uint64_t>(set) & static_cast<uint64_t>(c)) == in Contains() 430 // Checks whether all the characters in `c` are contained in `set` 431 constexpr bool Contains(FormatConversionCharSet set, FormatConversionCha argument [all...] |
/third_party/skia/gm/ |
H A D | composeshader.cpp | 37 pts[0].set(0, 0); in make_shader() 38 pts[1].set(SkIntToScalar(100), 0); in make_shader() 43 pts[0].set(0, 0); in make_shader() 44 pts[1].set(0, SkIntToScalar(100)); in make_shader() 159 pts[0].set(0, 0); in make_linear_gradient_shader() 160 pts[1].set(SkIntToScalar(length), 0); in make_linear_gradient_shader()
|
H A D | gradients_no_texture.cpp | 50 center.set(SkScalarAve(pts[0].fX, pts[1].fX), in MakeRadial() 57 center.set(SkScalarAve(pts[0].fX, pts[1].fX), in MakeSweep() 64 center0.set(SkScalarAve(pts[0].fX, pts[1].fX), in Make2Radial() 66 center1.set(SkScalarInterp(pts[0].fX, pts[1].fX, SkIntToScalar(3)/5), in Make2Radial() 78 center0.set(pts[0].fX + radius0, pts[0].fY + radius0); in Make2Conical() 79 center1.set(pts[1].fX - radius1, pts[1].fY - radius1); in Make2Conical()
|
/third_party/vk-gl-cts/scripts/ |
H A D | mustpass.py | 182 preparerElement.set("class", "com.android.tradefed.targetprep.suite.SuiteApkInstaller") 188 preparerElement.set("class", "com.android.compatibility.common.tradefed.targetprep.FilePusher") 201 preparerElement.set("class", "com.android.compatibility.common.tradefed.targetprep.IncrementalDeqpPreparer") 212 controllerElement.set("class", "com.android.tradefed.testtype.suite.module.TestFailureModuleController") 213 controllerElement.set("type", "module_controller") 222 testElement.set("class", RUNNER_CLASS)
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrGLContext.hpp | 33 #include <set> 240 std::set<deUint32> m_allocatedTextures; 241 std::set<deUint32> m_allocatedFbos; 242 std::set<deUint32> m_allocatedRbos; 243 std::set<deUint32> m_allocatedBuffers; 244 std::set<deUint32> m_allocatedVaos;
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 116 .set noat 136 .set reorder 227 .set noreorder 431 .set noreorder 439 .set reorder 643 .set noreorder 673 .set reorder 710 .set noreorder 741 .set reorder 832 .set noreorde [all...] |
/third_party/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 116 .set noat 136 .set reorder 227 .set noreorder 431 .set noreorder 439 .set reorder 643 .set noreorder 673 .set reorder 710 .set noreorder 741 .set reorder 832 .set noreorde [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | core.c | 415 * call will be ignored if the provider_entry_time was either never set (if in uv_run() 610 int uv__nonblock_ioctl(int fd, int set) { in uv__nonblock_ioctl() argument 614 r = ioctl(fd, FIONBIO, &set); in uv__nonblock_ioctl() 625 int uv__nonblock_fcntl(int fd, int set) { in uv__nonblock_fcntl() argument 636 /* Bail out now if already set/clear. */ in uv__nonblock_fcntl() 637 if (!!(r & O_NONBLOCK) == !!set) in uv__nonblock_fcntl() 640 if (set) in uv__nonblock_fcntl() 656 int uv__cloexec(int fd, int set) { in uv__cloexec() argument 661 if (set) in uv__cloexec() 1085 /* Check if the HOME environment variable is set firs in uv_os_homedir() 1632 cpu_set_t set; uv_available_parallelism() local [all...] |
/third_party/rust/crates/libc/src/unix/bsd/ |
H A D | mod.rs | 553 pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () { in FD_CLR() 554 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_CLR() 556 (*set).fds_bits[fd / bits] &= !(1 << (fd % bits)); in FD_CLR() 560 pub fn FD_ISSET(fd: ::c_int, set: *const fd_set) -> bool { in FD_ISSET() 561 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_ISSET() 563 return ((*set).fds_bits[fd / bits] & (1 << (fd % bits))) != 0 in FD_ISSET() 566 pub fn FD_SET(fd: ::c_int, set: *mut fd_set) -> () { in FD_SET() 567 let bits = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_SET() 569 (*set).fds_bits[fd / bits] |= 1 << (fd % bits); in FD_SET() 573 pub fn FD_ZERO(set [all...] |
/third_party/python/Lib/ |
H A D | mailbox.py | 1150 all_keys = set(self.keys()) 1154 keys = set() 1181 for key in sorted(set(keys)): 1327 labels = set() 1550 """Return as a string the flags that are set.""" 1562 self.set_flags(''.join(set(self.get_flags()) | set(flag))) 1567 self.set_flags(''.join(set(self.get_flags()) - set(flag))) 1598 flags = set(sel [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | normalizer2impl.cpp | 465 Normalizer2Impl::addLcccChars(UnicodeSet &set) const { 472 set.add(start, end); 475 if (fcd16 > 0xff) { set.add(start, end); } 488 sa->add(sa->set, start); 497 sa->add(sa->set, start); 507 sa->add(sa->set, c); 508 sa->add(sa->set, c+1); 510 sa->add(sa->set, Hangul::HANGUL_LIMIT); /* add Hangul+1 to continue with other properties */ 522 sa->add(sa->set, start); 1125 * Bit 0 set i [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context.cpp | 442 // Implementations now require the display to be set at context creation. in Context() 470 mZeroTextures[TextureType::_2D].set(this, zeroTexture2D); in initializeDefaultResources() 473 mZeroTextures[TextureType::CubeMap].set(this, zeroTextureCube); in initializeDefaultResources() 478 mZeroTextures[TextureType::_3D].set(this, zeroTexture3D); in initializeDefaultResources() 484 mZeroTextures[TextureType::_2DArray].set(this, zeroTexture2DArray); in initializeDefaultResources() 490 mZeroTextures[TextureType::_2DMultisample].set(this, zeroTexture2DMultisample); in initializeDefaultResources() 496 mZeroTextures[TextureType::_2DMultisampleArray].set(this, zeroTexture2DMultisampleArray); in initializeDefaultResources() 513 mZeroTextures[TextureType::CubeMapArray].set(this, zeroTextureCubeMapArray); in initializeDefaultResources() 519 mZeroTextures[TextureType::Buffer].set(this, zeroTextureBuffer); in initializeDefaultResources() 526 mZeroTextures[TextureType::Rectangle].set(thi in initializeDefaultResources() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | ContextVk.cpp | 503 mGraphicsDirtyBits.set(DIRTY_BIT_RENDER_PASS); in onRenderPassFinished() 585 mNonIndexedDirtyBitsMask.set(); in GetImpl() 588 mIndexedDirtyBitsMask.set(); in GetImpl() 594 // Note that currently these dirty bits are set every time a new render pass command buffer is in GetImpl() 605 mNewGraphicsCommandBufferDirtyBits.set(DIRTY_BIT_TRANSFORM_FEEDBACK_BUFFERS); in GetImpl() 682 mPipelineDirtyBitsMask.set(); in GetImpl() 811 // Init driver uniforms and get the descriptor set layouts. in initialize() 984 mGraphicsDirtyBits.set(DIRTY_BIT_VERTEX_BUFFERS); in setupDraw() 990 mGraphicsDirtyBits.set(DIRTY_BIT_DESCRIPTOR_SETS); in setupDraw() 995 mGraphicsDirtyBits.set(DIRTY_BIT_DESCRIPTOR_SET in setupDraw() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
H A D | CollectionUtilities.java | 215 public ObjectMatcher set(ObjectMatcher toInverse) { in set() method in CollectionUtilities.InverseMatcher 386 * Returns an int with bits set, according to a "Venn Diagram" view of A vs B.<br> 476 * Modifies Unicode set to flatten the strings. Eg [abc{da}] => [abcd] 477 * Returns the set for chaining. 492 if (gotString) exemplar1.set(result); in flatten() 504 public FilteredIterator set(Iterator baseIterator) { in set() method in CollectionUtilities.FilteredIterator 533 public PrefixIterator set(Iterator baseIterator, String prefix) { in set() method in CollectionUtilities.PrefixIterator 534 super.set(baseIterator); in set() 545 public RegexIterator set(Iterator baseIterator, Matcher matcher) { in set() method in CollectionUtilities.RegexIterator 546 super.set(baseIterato in set() [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | CollectionUtilities.java | 212 public ObjectMatcher set(ObjectMatcher toInverse) { in set() method in CollectionUtilities.InverseMatcher 383 * Returns an int with bits set, according to a "Venn Diagram" view of A vs B.<br> 473 * Modifies Unicode set to flatten the strings. Eg [abc{da}] => [abcd] 474 * Returns the set for chaining. 489 if (gotString) exemplar1.set(result); in flatten() 501 public FilteredIterator set(Iterator baseIterator) { in set() method in CollectionUtilities.FilteredIterator 530 public PrefixIterator set(Iterator baseIterator, String prefix) { in set() method in CollectionUtilities.PrefixIterator 531 super.set(baseIterator); in set() 542 public RegexIterator set(Iterator baseIterator, Matcher matcher) { in set() method in CollectionUtilities.RegexIterator 543 super.set(baseIterato in set() [all...] |
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/ |
H A D | normalize.js | 102 changes?.push('Missing "name" field was set to an empty string') 138 changes?.push(`"version" was cleaned and set to "${version}"`) 156 changes?.push(`"_id" was set to ${pkgId}`) 216 changes?.push(`"scripts.install" was set to "node-gyp rebuild"`) 217 changes?.push(`"gypfile" was set to "true"`) 228 changes?.push('"scripts.start" was set to "node server.js"') 296 changes?.push(`"readme" was set to the contents of ${readmeFile}`) 297 changes?.push(`"readmeFilename" was set to ${readmeFile}`) 437 changes?.push(`"repository" was set to the first entry in "repositories" (${data.repository})`)
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_util.h | 497 inline void set(unsigned int i) 546 BitSet& operator=(const BitSet& set) 548 assert(data && set.data); 549 assert(size == set.size); 550 memcpy(data, set.data, (set.size + 7) / 8); 698 template<typename T> void set(const T *obj, T *clone)
|