/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | State.cpp | 293 ASSERT(empty()); in ~ActiveTexturesCache() 304 bool ActiveTexturesCache::empty() const in empty() function in gl::ActiveTexturesCache 3631 ASSERT(!mImageUnits.empty());
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | IntermNode.cpp | 985 // Declaration nodes with no children can appear if it was an empty declaration or if all the in appendStatement() 1007 ASSERT(mDeclarators.empty() || in appendDeclarator() 1596 mInit->getAsDeclarationNode()->getSequence()->empty()) in TIntermLoop() 1614 // Prune empty false blocks so that there won't be unnecessary operations done on it. in TIntermIfElse() 1615 if (mFalseBlock && mFalseBlock->getSequence()->empty()) in TIntermIfElse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 895 if (ECStack.empty()) { // Finished main. Put result into exit code... 2124 assert((ECStack.empty() || !ECStack.back().Caller.getInstruction() || in callFunction() 2161 while (!ECStack.empty()) { in run()
|
/third_party/skia/tests/ |
H A D | ImageFilterTest.cpp | 1266 // Even when there's an empty saveLayer()/restore(), ensure that an image in DEF_TEST() 1708 SkIRect empty = SkIRect::MakeEmpty(); in test_make_with_filter() local 1709 result = sourceImage->makeWithFilter(rContext, filter.get(), empty, clipBounds, in test_make_with_filter() 1713 result = sourceImage->makeWithFilter(rContext, filter.get(), subset, empty, in test_make_with_filter() 1848 // Test empty intersection. in DEF_TEST()
|
/third_party/python/Lib/test/ |
H A D | test_collections.py | 1542 empty = WithSet() 1546 self.assertEqual(s, empty) 1549 self.assertEqual(s, empty)
|
H A D | test_builtin.py | 1650 empty = [] 1651 sum(([x] for x in range(10)), empty) 1652 self.assertEqual(empty, []) 1941 # Issue #7994: object.__format__ with a non-empty format string is
|
H A D | test_functools.py | 138 got, empty = p('x') 139 self.assertTrue(expected == got and empty == {}) 146 empty, got = p(x=None) 147 self.assertTrue(expected == got and empty == ()) 813 self.assertRaises(TypeError, self.reduce, add, []) # arg 2 must not be empty sequence with no initial value 1422 # C version of lru_cache was treating a call with an empty **kwargs
|
H A D | test_dataclasses.py | 691 for typ, empty, non_empty in [(list, [], [1]), 702 x: typ = empty 838 self.assertEqual(param.default, inspect.Parameter.empty) 843 self.assertEqual(param.default, inspect.Parameter.empty) 1935 # Make sure an empty dict works. 1950 # Make sure a non-empty dict works.
|
H A D | test_tarfile.py | 171 "read() at file's end did not return empty string") 404 # Test for issue6123: Allow opening empty archives. 405 # This test checks if tarfile.open() is able to open an empty tar 406 # archive successfully. Note that an empty tar archive is not the 407 # same as an empty file! 414 self.fail("tarfile.open() failed on empty archive") 427 # Test for issue6123: Allow opening empty archives. 428 # This test guarantees that tarfile.open() does not treat an empty 429 # file as an empty tar archive. 717 # the fact that opening an empty fil [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | message_test.py | 462 empty = message_module.TestEmptyMessage() 463 empty.ParseFromString(populated.SerializeToString()) 464 self.assertEqual(str(empty), '') 878 # Make sure the sub message is still immutable after merge from empty.
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 778 FchownatFlags::FollowSymlink => AtFlags::empty(), in fchownat() 1263 LinkatFlags::NoSymlinkFollow => AtFlags::empty(), in linkat() 1322 UnlinkatFlags::NoRemoveDir => AtFlags::empty(), in unlinkat() 1786 //! // We need to setup an empty signal handler to catch the alarm signal, 1792 //! SigSet::empty() 1804 //! let mut sigset = SigSet::empty();
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineShaderModuleIdentifierTests.cpp | 550 DE_ASSERT(graphicsShaders.empty()); in BaseParams() 552 DE_ASSERT(rtShaders.empty()); in BaseParams() 1419 DE_ASSERT(!binaries.empty()); in runTest()
|
/kernel/linux/linux-6.6/lib/ |
H A D | maple_tree.c | 1371 * - If it's an empty tree: NULL & mas->node == MAS_NONE 1397 /* empty tree */ in mas_start() 3369 * accomplish the balance, there are empty slots remaining in both left in mas_split() 4047 * Only update gap when the new entry is empty or there is an empty in mas_wr_slot_store() 4434 * @empty: Can be empty 4439 static void *mas_prev_slot(struct ma_state *mas, unsigned long min, bool empty, in mas_prev_slot() argument 4496 if (!empty) { in mas_prev_slot() 4597 * @empty 4603 mas_next_slot(struct ma_state *mas, unsigned long max, bool empty, bool set_overflow) mas_next_slot() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | js-native-context-specialization.cc | 1376 if (!if_exception_nodes.empty()) { in ReduceNamedAccess() 1647 if (feedback.transition_groups().empty()) return NoChange(); in ReduceElementAccess() 1660 if (!refined_feedback.transition_groups().empty() && in ReduceElementAccess() 1671 access_infos.empty()) { in ReduceElementAccess()
|
H A D | simplified-lowering.cc | 253 if (input_use_infos_.empty()) { in SetAndCheckInput() 591 while (!stack.empty()) { in GenerateTraversal() 665 DCHECK(revisit_queue_.empty()); in RunPropagatePhase() 672 while (!revisit_queue_.empty()) { in RunPropagatePhase() 684 DCHECK(revisit_queue_.empty()); in RunRetypePhase() 699 while (!revisit_queue_.empty()) { in RunRetypePhase()
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 189 * If the substitution text is empty, the source line 193 * If the substitution text is not empty: 232 If the last line is empty, prefix is not prepended 253 If the last line is empty, suffix is not appended 499 If required is empty, left must also be empty. 1176 # (they mustn't be None, but they could be an empty string.) 1203 # and wrap each non-empty value in \n's 1524 not empty, this is the indent *after* removing the 1530 is empty, preinden [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/ |
H A D | vktComputeBasicComputeShaderTests.cpp | 2578 if (!poolSizes.empty()) 2597 (deviceExtensions.empty() ? DE_NULL : &deviceExtensions[0]), // const char* const* ppEnabledExtensionNames; 3391 if (!poolSizes.empty()) 4136 if (!poolSizes.empty()) 4338 // Use an empty workgroup with size 0 on the X axis 4340 // Use an empty workgroup with size 0 on the Y axis 4342 // Use an empty workgroup with size 0 on the Z axis 4344 // Use an empty workgroup with size 0 on the X, Y and Z axes
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Instructions.cpp | 1620 // Handle the special case of the empty set index set, which is always valid. in getIndexedTypeInternal() 1621 if (IdxList.empty()) in getIndexedTypeInternal() 1909 assert(!Mask.empty() && "Shuffle mask must contain elements"); in isSingleSourceMaskImpl() 2107 assert(!Idxs.empty() && "InsertValueInst must have at least one index"); in init() 2136 assert(!Idxs.empty() && "ExtractValueInst must have at least one index"); in init()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 2458 if (shortName.empty()) in getLibraryShortNameByIndex() 3059 assert(!Stack.empty() && "ExportEntry::moveNext() with empty node stack"); in moveNext() 3069 while (!Stack.empty()) { in moveNext() 3091 if (Trie.empty()) in exports()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 590 /// An empty volatile inline asm that prevents callback merge. 837 // We insert an empty inline asm after __msan_report* to avoid callback merge. 3986 if (!VAStartInstrumentationList.empty()) { 4141 if (!VAStartInstrumentationList.empty()) { 4327 if (!VAStartInstrumentationList.empty()) { 4582 if (!VAStartInstrumentationList.empty()) {
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Renderer11.cpp | 526 // mAvailableFeatureLevels defaults to empty in Renderer11() 1112 if (depthStencilBufferFormatCaps.sampleCounts.empty()) in generateSampleSetForEGLConfig() 1116 else if (colorBufferFormatCaps.sampleCounts.empty()) in generateSampleSetForEGLConfig() 3007 if (!streamOutVaryings.empty()) in loadExecutable() 3149 if (!debugInfo.empty()) in compileToExecutable()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/igc/ |
H A D | igc_main.c | 1606 struct sk_buff *empty; in igc_xmit_frame_ring() local 1610 empty = alloc_skb(IGC_EMPTY_FRAME_SIZE, GFP_ATOMIC); in igc_xmit_frame_ring() 1611 if (!empty) in igc_xmit_frame_ring() 1614 data = skb_put(empty, IGC_EMPTY_FRAME_SIZE); in igc_xmit_frame_ring() 1620 empty, in igc_xmit_frame_ring() 1622 dev_kfree_skb_any(empty); in igc_xmit_frame_ring() 2107 * igc_cleanup_headers - Correct corrupted or empty headers
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw89/ |
H A D | mac.c | 226 rtw89_info(rtwdev, "DLE group0 empty: 0x%x\n", qempty.qempty); in rtw89_mac_dump_qta_lost() 1564 rtw89_warn(rtwdev, "dle dfi acq empty %d\n", ret); in mac_is_txq_empty() 1579 rtw89_warn(rtwdev, "dle dfi mgq empty %d\n", ret); in mac_is_txq_empty() 4844 bool empty; in rtw89_mac_flush_txq() local 4850 ret = read_poll_timeout(dle_is_txq_empty, empty, empty, in rtw89_mac_flush_txq() 5689 bool empty; in rtw89_mac_ptk_drop_by_band_and_wait() local 5696 ret = read_poll_timeout(mac_is_txq_empty, empty, empty, 50, in rtw89_mac_ptk_drop_by_band_and_wait()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/ |
H A D | vktMultiViewRenderTests.cpp | 651 if (!parameters.viewMasks.empty()) in fillMissingParameters() 737 DE_ASSERT(m_vertexIndices.empty()); in createVertexBuffer() 873 if (!poolSizes.empty()) in createMultiViewDevices() 891 deviceExtensions.empty() ? DE_NULL : &deviceExtensions[0], //const char* const* pEnabledExtensionNames; in createMultiViewDevices() 3008 DE_ASSERT(!m_occlusionValues.empty()); in iterate() 3032 DE_ASSERT(!m_timestampStartValues.empty()); in iterate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 477 while (!WorkSet.empty()) { in isEphemeralValueOf() 2033 assert(WorkList.empty() && "Should be!"); in isKnownNonNullFromDominatingCondition() 2037 while (!WorkList.empty()) { in isKnownNonNullFromDominatingCondition() 3536 if (idx_range.empty()) in FindInsertedValue() 3822 // an empty string as a length. in GetStringLength() 3965 } while (!Worklist.empty()); in GetUnderlyingObjects() 4029 } while (!Working.empty()); in getUnderlyingObjectsForCodeGen()
|