Home
last modified time | relevance | path

Searched refs:erase (Results 201 - 225 of 1448) sorted by relevance

12345678910>>...58

/third_party/node/src/
H A Dnode_binding.cc207 dlhandles.erase(wrap); in wrapped_dlclose()
311 void erase(void* handle) { in erase() function
321 map_.erase(handle); in erase()
361 global_handle_map.erase(handle_); in Close()
384 global_handle_map.erase(handle_); in Close()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseBitVector.h503 Elements.erase(ElementIter);
614 Elements.erase(IterTmp);
622 Elements.erase(IterTmp);
627 Elements.erase(Iter1, Elements.end());
668 Elements.erase(IterTmp);
H A DTinyPtrVector.h282 iterator erase(iterator I) { in erase() function in llvm::TinyPtrVector
283 assert(I >= begin() && "Iterator to erase is out of bounds."); in erase()
291 // multiple items in a vector; just do the erase, there is no in erase()
293 return Vec->erase(I); in erase()
298 iterator erase(iterator S, iterator E) { in erase() function
299 assert(S >= begin() && "Range to erase is out of bounds."); in erase()
300 assert(S <= E && "Trying to erase invalid range."); in erase()
301 assert(E <= end() && "Trying to erase past the end."); in erase()
307 return Vec->erase(S, E); in erase()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dunordered_map_modifiers_test.h222 // In openmap we chose not to return the iterator from erase because that's
223 // more expensive. As such we adapt erase to return an iterator here.
227 -> IfNotVoid<decltype(m->erase(m->begin()))> {
228 return m->erase(m->begin());
233 m->erase(it++); in operator ()()
264 auto it = m.erase(m.begin(), m.end()); in TYPED_TEST_P()
276 EXPECT_EQ(1, m.erase(values[0].first)); in TYPED_TEST_P()
/kernel/linux/linux-5.10/drivers/misc/eeprom/
H A Deeprom_93xx46.c189 dev_err(&edev->spi->dev, "erase/write %sable error %d\n", in eeprom_93xx46_ew()
261 /* erase/write enable */ in eeprom_93xx46_write()
285 /* erase/write disable */ in eeprom_93xx46_write()
329 dev_err(&edev->spi->dev, "erase error %d\n", ret); in eeprom_93xx46_eral()
330 /* have to wait erase cycle time Tec ms */ in eeprom_93xx46_eral()
345 int erase = 0, ret; in eeprom_93xx46_store_erase() local
347 sscanf(buf, "%d", &erase); in eeprom_93xx46_store_erase()
348 if (erase) { in eeprom_93xx46_store_erase()
361 static DEVICE_ATTR(erase, S_IWUSR, NULL, eeprom_93xx46_store_erase);
498 dev_err(&spi->dev, "can't create erase interfac in eeprom_93xx46_probe()
[all...]
/kernel/linux/linux-5.10/lib/
H A Drbtree_test.c69 static inline void erase(struct test_node *node, struct rb_root_cached *root) in erase() function
263 erase(nodes + j, &root); in rbtree_test_init()
330 erase(nodes + i, &root); in rbtree_test_init()
341 erase(nodes + j, &root); in rbtree_test_init()
/kernel/linux/linux-6.6/drivers/misc/eeprom/
H A Deeprom_93xx46.c206 dev_err(&edev->spi->dev, "erase/write %sable error %d\n", in eeprom_93xx46_ew()
282 /* erase/write enable */ in eeprom_93xx46_write()
306 /* erase/write disable */ in eeprom_93xx46_write()
350 dev_err(&edev->spi->dev, "erase error %d\n", ret); in eeprom_93xx46_eral()
351 /* have to wait erase cycle time Tec ms */ in eeprom_93xx46_eral()
366 int erase = 0, ret; in eeprom_93xx46_store_erase() local
368 sscanf(buf, "%d", &erase); in eeprom_93xx46_store_erase()
369 if (erase) { in eeprom_93xx46_store_erase()
382 static DEVICE_ATTR(erase, S_IWUSR, NULL, eeprom_93xx46_store_erase);
551 dev_err(&spi->dev, "can't create erase interfac in eeprom_93xx46_probe()
[all...]
/kernel/linux/linux-6.6/lib/
H A Drbtree_test.c69 static inline void erase(struct test_node *node, struct rb_root_cached *root) in erase() function
263 erase(nodes + j, &root); in rbtree_test_init()
330 erase(nodes + i, &root); in rbtree_test_init()
341 erase(nodes + j, &root); in rbtree_test_init()
/third_party/json/tests/src/
H A Dunit-udt_macro.cpp305 j.erase("age");
334 j.erase("name");
335 j.erase("age");
336 j.erase("metadata");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp316 SymbolDeps.erase(&SourceJD); in registerDependencies()
388 TrackedAllocs.erase(AllocItr); in removeModule()
450 InProcessLinks.erase(EHFrameRangeItr); in notifyEmitted()
467 TrackedEHFrameRanges.erase(EHFrameRangeItr); in notifyRemovingModule()
/third_party/vk-gl-cts/executor/
H A DxeTestCase.cpp344 nodeSet.erase(child); in removeChildren()
365 nodeSet.erase(group); in removeEmptyGroups()
412 m_set.erase(testCase); in removeCase()
421 m_set.erase(testGroup); in removeGroup()
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dsmall_vector.h258 iterator erase(const_iterator pos) { return erase(pos, pos + 1); } in erase() function in spvtools::utils::SmallVector
260 iterator erase(const_iterator first, const_iterator last) { in erase() function in spvtools::utils::SmallVector
264 auto r = large_data_->erase(large_data_->begin() + start_index, in erase()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dlocal_access_chain_convert_pass.cpp221 seen_target_vars_.erase(varId); in FindTargetVars()
229 seen_target_vars_.erase(varId); in FindTargetVars()
235 seen_target_vars_.erase(varId); in FindTargetVars()
302 dead_instructions.erase(i); in ConvertLocalAccessChains()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dlocal_access_chain_convert_pass.cpp221 seen_target_vars_.erase(varId); in FindTargetVars()
229 seen_target_vars_.erase(varId); in FindTargetVars()
235 seen_target_vars_.erase(varId); in FindTargetVars()
302 dead_instructions.erase(i); in ConvertLocalAccessChains()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dsmall_vector.h258 iterator erase(const_iterator pos) { return erase(pos, pos + 1); } in erase() function in spvtools::utils::SmallVector
260 iterator erase(const_iterator first, const_iterator last) { in erase() function in spvtools::utils::SmallVector
264 auto r = large_data_->erase(large_data_->begin() + start_index, in erase()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86ExpandPseudo.cpp173 JTMBB->erase(JTInst); in ExpandICallBranchFunnel()
281 MBB.erase(MBBI); in ExpandMI()
299 // Adjust stack to erase error code in ExpandMI()
305 MBB.erase(MBBI); in ExpandMI()
309 // Adjust stack to erase error code in ExpandMI()
331 MBB.erase(MBBI); in ExpandMI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp128 Deps.erase(&GV); // Remove self-reference. in UpdateGVDependencies()
216 VFESafeVTables.erase(VTable); in ScanVTableLoad()
223 VFESafeVTables.erase(VTable); in ScanVTableLoad()
256 VFESafeVTables.erase(VTableInfo.first); in ScanTypeCheckedLoadIntrinsics()
/third_party/spirv-tools/source/util/
H A Dsmall_vector.h268 iterator erase(const_iterator pos) { return erase(pos, pos + 1); } in erase() function in spvtools::utils::SmallVector
270 iterator erase(const_iterator first, const_iterator last) { in erase() function in spvtools::utils::SmallVector
274 auto r = large_data_->erase(large_data_->begin() + start_index, in erase()
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgVariableManager.cpp141 m_liveVariables.erase(pos); in removeLive()
219 m_entries.erase(pos); in removeValue()
306 m_entryCache.erase(pos); in declareVariable()
332 m_entryCache.erase(pos); in removeValueFromCurrentScope()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DResourceManager.cpp86 if (!mObjectMap.erase(handle, &resource)) in deleteObject()
206 objectMap->erase(id, &object); in deleteObject()
456 if (!mMemoryObjects.erase(handle, &memoryObject)) in deleteMemoryObject()
505 if (!mSemaphores.erase(handle, &semaphore)) in deleteSemaphore()
/third_party/ltp/testcases/kernel/security/mmc_security/
H A Dforce_erase.sh26 #* Description: used to force-erase a card, usually when the user has forgot *#
51 echo "erase operation on locked cards."
65 echo erase > /sys/bus/mmc/devices/mmc0\:*/lockable || \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DOrderedInstructions.h59 void invalidateBlock(const BasicBlock *BB) { OBBMap.erase(BB); } in invalidateBlock()
/third_party/skia/docs/examples/
H A DPixmap_writable_addr.cpp13 pixmap.erase(0x00000000); in REG_FIDDLE()
H A DPixmap_writable_addr_2.cpp13 pixmap.erase(0x00000000); in REG_FIDDLE()
H A DPixmap_erase_2.cpp10 pixmap.erase(SK_ColorBLUE); in REG_FIDDLE()

Completed in 18 milliseconds

12345678910>>...58