HomeSort by relevance Sort by last modified time
    Searched defs:Drop (Results 1 - 25 of 26) sorted by null

1 2

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
Table.py 65 ## Drop a table
67 # Drop the table
69 def Drop(self):
70 SqlCommand = """drop table IF EXISTS %s""" % self.Table
72 EdkLogger.verbose("Drop tabel %s ... DONE!" % self.Table)
  /development/tools/axl/
axl.py 59 class Drop(BaseProtocol):
67 """Read 1st line of request, then drop connection"""
81 """Drop connection after a header is half-sent"""
112 """Drop connection in body"""
129 """Drop every other connection"""
242 for protocol in Drop, ReadAndDrop, GarbageStatus, BadHeader, PauseHeader, \
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaDataTable.py 58 self.Drop()
93 ## Drop a table
95 # Drop the table
97 def Drop(self):
98 SqlCommand = """drop table IF EXISTS %s""" % self.Table
102 print "An error occurred when Drop a table:", e.args[0]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.cpp 91 unsigned Drop = MRI.createVirtualRegister(PtrRC);
99 BuildMI(MBB, InsertStore, DL, TII->get(WebAssembly::STORE_I32), Drop)
  /external/tensorflow/tensorflow/core/common_runtime/
scoped_allocator_mgr.cc 86 void ScopedAllocatorContainer::Drop(int32 scope_id, ScopedAllocator* sa) {
87 VLOG(2) << "Drop " << scope_id << " from container " << this << " step "
104 // contents deleted via Drop. When when a step ends early
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaDataTable.py 58 self.Drop()
93 ## Drop a table
95 # Drop the table
97 def Drop(self):
98 SqlCommand = """drop table IF EXISTS %s""" % self.Table
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Input.c 270 UINT32 Drop;
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
299 Drop--;
315 if (Drop != 0) {
316 NetbufTrim (Nbuf, Drop, NET_BUF_HEAD);
325 Drop = TCP_SUB_SEQ (Seg->End, Right);
330 Drop--;
333 if (Drop != 0) {
334 NetbufTrim (Nbuf, Drop, NET_BUF_TAIL);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpInput.c 294 UINT32 Drop;
317 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
323 Drop--;
339 if (Drop != 0) {
340 NetbufTrim (Nbuf, Drop, NET_BUF_HEAD);
349 Drop = TCP_SUB_SEQ (Seg->End, Right);
354 Drop--;
357 if (Drop != 0) {
358 NetbufTrim (Nbuf, Drop, NET_BUF_TAIL);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyExplicitLocals.cpp 80 /// Get the appropriate drop opcode for the given register class.
282 MachineInstr *Drop =
285 // After the drop instruction, this reg operand will not be used
286 Drop->getOperand(0).setIsKill();
295 // This register operand is now being used by the inserted drop
  /external/python/cpython2/Lib/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /external/python/cpython3/PC/
pyshellext.cpp 344 OutputDebugString(L"PyShellExt::DragEnter - failed to update drop description");
364 STDMETHODIMP Drop(IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect) {
367 OutputDebugString(L"PyShellExt::Drop");
371 OutputDebugString(L"PyShellExt::Drop - unexpected data object");
384 OutputDebugString(L"PyShellExt::Drop - failed to get launch arguments");
  /external/v8/src/compiler/
register-allocator-verifier.h 138 void Drop(InstructionOperand operand) { map_.erase(operand); }
143 // Drop the assignment
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
MicrosoftDemangle.cpp 140 enum class QualifierMangleMode { Drop, Mangle, Result };
1000 Type *Ty = demangleType(MangledName, QualifierMangleMode::Drop);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 303 void TurboAssembler::Drop(int count, Condition cond) {
309 void TurboAssembler::Drop(Register count, Condition cond) {
313 void TurboAssembler::Ret(int drop, Condition cond) {
314 Drop(drop, cond);
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 410 // Check whether we need to drop frames to restart a function on the stack.
973 // after we drop current frame.
    [all...]
  /external/v8/src/parsing/
scanner.h 475 void Drop() {
590 // Stops scanning of a literal and drop the collected characters,
593 next().literal_chars.Drop();
594 next().raw_literal_chars.Drop();
  /external/v8/src/ppc/
macro-assembler-ppc.cc 290 void TurboAssembler::Drop(int count) {
296 void TurboAssembler::Drop(Register count, Register scratch) {
967 // Drop the execution stack down to the frame pointer and restore
    [all...]
  /external/v8/src/wasm/baseline/
liftoff-compiler.cc     [all...]
  /external/v8/src/wasm/
function-body-decoder.cc 236 void Drop(FullDecoder* decoder, const Value& value) {}
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc     [all...]
  /external/vixl/src/aarch64/
macro-assembler-aarch64.cc     [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc     [all...]
  /external/v8/src/s390/
macro-assembler-s390.cc 272 void TurboAssembler::Drop(int count) {
285 void TurboAssembler::Drop(Register count, Register scratch) {
1032 // Drop the execution stack down to the frame pointer and restore
    [all...]

Completed in 1025 milliseconds

1 2