HomeSort by relevance Sort by last modified time
    Searched defs:Drop (Results 1 - 25 of 36) 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)
  /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/python/cpython2/Lib/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 33 # When we drop support for python 2.4
783 def Drop(self, table):
  /external/v8/src/compiler/
register-allocator-verifier.h 133 void Drop(InstructionOperand operand) { map_.erase(operand); }
138 // Drop the assignment
ast-graph-builder.h 469 void Drop(int depth) {
  /prebuilts/go/darwin-x86/src/encoding/gob/
decode.go 52 func (d *decBuffer) Drop(n int) {
54 panic("drop")
170 state.b.Drop(n)
404 state.b.Drop(n)
418 state.b.Drop(n)
649 state.b.Drop(n)
700 state.b.Drop(n)
710 state.b.Drop(n)
726 state.b.Drop(n)
753 state.b.Drop(n
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
decode.go 52 func (d *decBuffer) Drop(n int) {
54 panic("drop")
170 state.b.Drop(n)
404 state.b.Drop(n)
418 state.b.Drop(n)
649 state.b.Drop(n)
700 state.b.Drop(n)
710 state.b.Drop(n)
726 state.b.Drop(n)
753 state.b.Drop(n
    [all...]
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.cpp 430 // to drop the frame before passing the frame along to HWC.
452 layer.Drop();
817 // we're going to drop the frame, to flush the Composer object's
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 199 void MacroAssembler::Drop(int count, Condition cond) {
205 void MacroAssembler::Drop(Register count, Condition cond) {
209 void MacroAssembler::Ret(int drop, Condition cond) {
210 Drop(drop, cond);
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h     [all...]
  /external/v8/src/x87/
macro-assembler-x87.cc     [all...]
  /external/vixl/src/aarch64/
macro-assembler-aarch64.cc     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 677 // Check whether we need to drop frames to restart a function on the stack.
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.cc 171 void MacroAssembler::Drop(int count) {
177 void MacroAssembler::Drop(Register count, Register scratch) {
1056 // Drop the execution stack down to the frame pointer and restore
    [all...]
  /external/v8/src/s390/
macro-assembler-s390.cc 147 void MacroAssembler::Drop(int count) {
160 void MacroAssembler::Drop(Register count, Register scratch) {
997 // Drop the execution stack down to the frame pointer and restore
    [all...]

Completed in 1372 milliseconds

1 2