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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/z80/
ld-group.s 127 ;; 16-bit load group --- ld, pop and push
128 pop af
132 pop bc
136 pop de define
140 pop hl
150 pop ix
154 pop iy
  /external/toolchain-utils/binary_search_tool/full_bisect_test/
stack.c 6 pop (struct stack_struct **stack) function
  /prebuilts/go/darwin-x86/src/runtime/
lfstack.go 41 func (head *lfstack) pop() unsafe.Pointer { func
mgcsweepbuf.go 16 // pop operations, but not both simultaneously.
54 // with other push operations, but NOT to call concurrently with pop.
117 // pop removes and returns a span from buffer b, or nil if b is empty.
118 // pop is safe to call concurrently with other pop operations, but NOT
120 func (b *gcSweepBuf) pop() *mspan { func
128 // pop, so we can omit the atomics.
  /prebuilts/go/linux-x86/src/runtime/
lfstack.go 41 func (head *lfstack) pop() unsafe.Pointer { func
mgcsweepbuf.go 16 // pop operations, but not both simultaneously.
54 // with other push operations, but NOT to call concurrently with pop.
117 // pop removes and returns a span from buffer b, or nil if b is empty.
118 // pop is safe to call concurrently with other pop operations, but NOT
120 func (b *gcSweepBuf) pop() *mspan { func
128 // pop, so we can omit the atomics.
  /external/clang/test/CodeGen/
count-builtins.c 3 int leading, trailing, pop; variable
17 pop = __builtin_popcount(P);
28 pop = __builtin_popcountll(P);
mips-count-builtins.c 6 int leading, trailing, pop; variable
  /external/llvm/test/MC/ARM/
thumb-load-store-multiple.s 73 .global pop
74 .type pop,%function
75 pop: label
76 pop {sp}
78 pop {lr, pc}
80 @ CHECK: pop {lr, pc}
92 pop {sp}
94 pop {sp, pc}
95 @ CHECK-V7A: pop.w {sp, pc}
98 pop.w {r0
    [all...]
  /system/chre/core/
event_ref_queue.cc 39 Event *EventRefQueue::pop() { function in class:chre::EventRefQueue
43 mQueue.pop();
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 120 /** Pop the stack. */
121 public void pop() throws java.lang.Exception method in class:virtual_parse_stack
125 "Internal parser error: pop from empty virtual stack");
127 /* pop it */
128 vstack.pop();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()
  /external/annotation-tools/scene-lib/src/annotations/util/
PersistentStack.java 12 public PersistentStack<E> pop(); method in interface:PersistentStack
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 57 public static T pop<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
59 return stack.Pop();
81 stack.Pop();
  /external/icu/icu4c/source/common/
ustack.cpp 38 void* UStack::pop(void) { function in class:UStack
  /external/python/cpython2/Demo/turtle/
tdemo_minimal_hanoi.py 39 def pop(self): member in class:Tower
40 d = list.pop(self)
47 to_.push(from_.pop())
  /external/python/cpython2/Lib/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()
  /external/python/cpython3/Lib/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()
  /external/python/cpython3/Lib/turtledemo/
minimal_hanoi.py 39 def pop(self): member in class:Tower
40 d = list.pop(self)
47 to_.push(from_.pop())
  /external/tensorflow/tensorflow/contrib/py2tf/utils/
tensor_list.py 35 def pop(self): member in class:TensorList
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rc_binomial_heap_/
erase_fn_imps.hpp 44 pop() function in class:PB_DS_CLASS_C_DEC
48 base_type::pop();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rc_binomial_heap_/
erase_fn_imps.hpp 44 pop() function in class:PB_DS_CLASS_C_DEC
48 base_type::pop();
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 111 self.used_names = set() # Aliased to self.rootnode.used_names in pop()
130 # Pop while we are in an accept-only state
133 self.pop()
151 # An accepting state, pop it and try something else
152 self.pop()
191 def pop(self): member in class:Parser
192 """Pop a nonterminal. (Internal)"""
193 popdfa, popstate, popnode = self.stack.pop()

Completed in 781 milliseconds

1 2 3 4 5 6 7 8 91011>>