HomeSort by relevance Sort by last modified time
    Searched full:push (Results 126 - 150 of 1534) sorted by null

1 2 3 4 56 7 8 91011>>

  /dalvik/vm/mterp/x86-atom/
OP_CONST_STRING.S 54 movl %ecx, -4(%esp) # push parameter class ref
55 movl %edx, -8(%esp) # push parameter glue->method->clazz
OP_CONST_STRING_JUMBO.S 56 movl %ecx, -4(%esp) # push parameter class ref
57 movl %edx, -8(%esp) # push parameter glue->method->clazz
OP_DOUBLE_TO_INT.S 35 fildl .LintMax # push max int value
36 fildl .LintMin # push min int value
OP_SGET.S 45 movl %eax, -4(%esp) # push parameter CCCC; field ref
47 movl %edx, -8(%esp) # push parameter method->clazz
OP_SGET_WIDE.S 55 movl %edx, -4(%esp) # push parameter CCCC; field ref
57 movl %eax, -8(%esp) # push parameter method->clazz
OP_SPUT.S 45 movl %eax, -4(%esp) # push parameter CCCC; field ref
47 movl %edx, -8(%esp) # push parameter method->clazz
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation2.java 86 "Push up", "Push left", "Cross fade", "Hyperspace"};
  /external/embunit/src/
TestCase.c 54 TestResult* wr =result_; /*push*/
55 TestCase* ws = self_; /*push*/
  /external/openssl/crypto/bn/asm/x86/
comba.pl 114 &push("esi");
116 &push("edi");
118 &push("ebp");
119 &push("ebx");
199 &push("esi");
200 &push("edi");
201 &push("ebp");
202 &push("ebx");
  /external/openssl/crypto/objects/
obj_dat.pl 99 push(@out,"{NULL,NULL,NID_undef,0,NULL,0},\n");
136 push(@lvalues,sprintf("%-45s/* [%3d] %s */\n",
146 push(@out,$out);
153 push(@sn,sprintf("&(nid_objs[%2d]),/* \"$sn{$nid{$_}}\" */\n",$_));
159 push(@ln,sprintf("&(nid_objs[%2d]),/* \"$ln{$nid{$_}}\" */\n",$_));
169 push(@ob,sprintf("&(nid_objs[%2d]),/* %-32s %s */\n",$_,$m,$v));
303 push(@r,((($t++)?0x80:0)|$x));
305 push(@r,((($t++)?0x80:0)|$_));
  /external/quake/quake/src/QW/client/
r_aclipa.asm 241 push esi
242 push edi
310 push esi
311 push edi
318 push esi
319 push edi
338 push esi
339 push edi
  /external/sqlite/android/
PhoneticStringUtils.h 43 // Creates a "phonetically sortable" Utf8 string and push it into "dst".
50 // Creates a "normalized" Utf8 string and push it into "dst". *dst must be
  /external/strace/
strace-graph 149 push @args, $1;
154 push @subarr, $tmp;
160 push @subarr, "...";
163 push @args, \@subarr;
182 push @args, \%subhash;
186 push @args, $tmp;
229 push @$seq, ['EXEC', $filename, $argv];
237 push @$seq, ['FORK', $result];
  /external/v8/src/ia32/
macro-assembler-ia32.cc 271 // Push the content of the memory location to the stack.
277 push(Operand::StaticVariable(reg_addr));
381 push(eax);
401 push(ebp);
403 push(esi);
404 push(Immediate(Smi::FromInt(type)));
405 push(Immediate(CodeObject()));
427 push(ebp);
430 // Reserve room for entry stack pointer and push the debug marker.
432 push(Immediate(0)); // Saved entry sp, patched before call
    [all...]
  /external/v8/test/mjsunit/regress/
regress-279.js 33 a.foo.push(5);
60 a[0].push(5);
  /external/webkit/WebCore/inspector/front-end/
ContextMenu.js 52 this._items.push({id: id, label: label});
63 this._items.push({});
  /external/webkit/WebCore/manual-tests/memory/
xhr-multiple-requests-responseXML.html 51 storedLocalMailIDList.push( items.childNodes[i].childNodes[j].childNodes[k].firstChild.nodeValue );
89 //storedLocalMailIDList.push( items[i].firstChild.nodeValue );
  /frameworks/base/media/jni/soundpool/
SoundPoolThread.cpp 33 mMsgQueue.push(msg);
54 mMsgQueue.push(SoundPoolMsg(SoundPoolMsg::KILL, 0));
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uqueue.h 40 inline void push (const value_type& v);
51 inline void queue<Sequence>::push (const value_type& v) function in class:ustl::queue
  /packages/apps/IM/src/com/android/im/imps/
PrimitiveContentHandler.java 55 mContentElementsStack.push(mPrimitive.getContentElement());
62 mContentElementsStack.push(childPrimitive);
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmPushReceiver.java 64 Log.d(TAG, "This is not drm rights push mimetype.");
66 Log.d(TAG, "This is not wap push received action.");
  /system/core/libpixelflinger/tinyutils/
Vector.h 122 inline void push();
124 void push(const TYPE& item);
125 //! same as push() but returns the index the item was added at (or an error)
127 //! same as push() but returns the index the item was added at (or an error)
262 void Vector<TYPE>::push(const TYPE& item) { function in class:android::Vector
263 return VectorImpl::push(&item);
287 void Vector<TYPE>::push() { function in class:android::Vector
288 VectorImpl::push();
  /sdk/emulator/qtools/
callstack.h 21 // and defines push() and pop() methods. This derived class is then
29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {}; function in class:StackFrame
77 enum Action { NONE, PUSH, POP, NATIVE_PUSH };
184 if (action == PUSH) {
197 } else if (methodAction == PUSH) {
202 // If the method trace has a push or pop, then do it.
205 // This function is a Java method. Don't push or pop the
211 } else if (action == PUSH) {
217 // If the stack is now empty, then push the current function.
284 // we might be fooled into thinking this is a PUSH to a new functio
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
XPathContext.java 320 m_prefixResolvers.push(null);
321 m_currentNodes.push(DTM.NULL);
322 m_currentExpressionNodes.push(DTM.NULL);
323 m_saxLocations.push(null);
389 m_prefixResolvers.push(null);
390 m_currentNodes.push(DTM.NULL);
391 m_currentExpressionNodes.push(DTM.NULL);
392 m_saxLocations.push(null);
415 m_saxLocations.push(location);
419 * Push a slot on the locations stack so that setSAXLocator can be
    [all...]
  /external/grub/stage2/
tparm.c 86 * codes to manipulate it. Typically a sequence will push one
100 * %p[1-9] push ith parm
102 * %g[a-z] get dynamic variable [a-z] and push it
104 * %g[A-Z] get static variable [A-Z] and push it
105 * %l push strlen(pop)
106 * %'c' push char constant c
107 * %{nn} push integer constant nn
110 * arithmetic (%m is mod): push(pop() op pop())
111 * %& %| %^ bit operations: push(pop() op pop())
112 * %= %> %< logical operations: push(pop() op pop()
    [all...]

Completed in 63 milliseconds

1 2 3 4 56 7 8 91011>>