Searched defs:push (Results 276 - 300 of 363) sorted by relevance

<<1112131415

/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_surface.c77 nvc0_2d_texture_set(struct nouveau_pushbuf *push, boolean dst, argument
110 BEGIN_NVC0(push, SUBC_2D(mthd), 2);
111 PUSH_DATA (push, format);
112 PUSH_DATA (push, 1);
113 BEGIN_NVC0(push, SUBC_2D(mthd + 0x14), 5);
114 PUSH_DATA (push, mt->level[level].pitch);
115 PUSH_DATA (push, width);
116 PUSH_DATA (push, height);
117 PUSH_DATAh(push, bo->offset + offset);
118 PUSH_DATA (push, b
146 nvc0_2d_texture_do_copy(struct nouveau_pushbuf *push, struct nv50_miptree *dst, unsigned dst_level, unsigned dx, unsigned dy, unsigned dz, struct nv50_miptree *src, unsigned src_level, unsigned sx, unsigned sy, unsigned sz, unsigned w, unsigned h) argument
282 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
352 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
405 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
813 struct nouveau_pushbuf *push = blit->screen->base.pushbuf; local
955 struct nouveau_pushbuf *push = screen->base.pushbuf; local
[all...]
/external/skia/src/core/
H A DSkPicturePlayback.cpp31 SkPicturePlayback::PlaybackReplacements::push() { function in class:SkPicturePlayback::PlaybackReplacements
33 return fReplacements.push();
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jar ... void set (int, java.lang.Object) private void push (java.lang.Object) private void pushDesc (java. ...
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py1858 # Stack of indexes used for push/pop calls
2051 def push(self, index): member in class:CommonTreeNodeStream
2063 Seek back to previous index saved during last push() call.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb288 stack.push( cursor.children.dup ) unless cursor.empty?
424 stack.push( Array[ *cursor ] ) unless cursor.empty?
1125 def push( index ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream
/external/chromium_org/v8/src/
H A Dhydrogen-gvn.cc745 return push(zone, block_->dominated_blocks()->at(dominated_index_));
751 GvnBasicBlockState* push(Zone* zone, HBasicBlock* block) { function in class:v8::internal::BASE_EMBEDDED::GvnBasicBlockState
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js86 allObservers.push(observer);
627 arr.push('a');
628 arr.push('b');
629 arr.push('c');
722 thingy.push(1, 2, 3, 4);
741 this.push('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'A', 'Q', 'K');
756 Array.prototype.push.apply(self, cut);
760 Array.prototype.push.apply(self, cut);
1341 array.push(3, 4);
1342 array.push(
[all...]
/external/fonttools/Lib/fontTools/misc/
H A DpsCharStrings.py544 def push(self, value): member in class:SimpleT2Decompiler
885 self.push(d1)
887 self.push(d2)
989 self.push(0)
996 self.push(0)
1058 self.push(bcp1x+rpx)
1059 self.push(bcp1y+rpy)
1060 self.push(bcp2x)
1061 self.push(bcp2y)
1062 self.push(p2
[all...]
/external/fonttools/Tools/fontTools/misc/
H A DpsCharStrings.py544 def push(self, value): member in class:SimpleT2Decompiler
885 self.push(d1)
887 self.push(d2)
989 self.push(0)
996 self.push(0)
1058 self.push(bcp1x+rpx)
1059 self.push(bcp1y+rpy)
1060 self.push(bcp2x)
1061 self.push(bcp2y)
1062 self.push(p2
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java40 private void push(int numstate, ArrayList listNode) throws ParserException, LexerException, IOException method in class:Parser
106 push(0, null);
163 push(this.action[1], list);
172 push(goTo(0), list);
178 push(goTo(0), list);
184 push(goTo(0), list);
190 push(goTo(1), list);
196 push(goTo(1), list);
202 push(goTo(1), list);
208 push(goT
[all...]
/external/libunwind/src/ia64/
H A DGparser.c43 push (struct ia64_state_record *sr) function
293 push (sr);
/external/llvm/lib/IR/
H A DLegacyPassManager.cpp510 activeStack.push(PMDM);
549 // If this pass has a corresponding pass manager, push higher level
1812 void PMStack::push(PMDataManager *PM) { function in class:PMStack
1813 assert(PM && "Unable to push. Pass Manager expected");
1893 // and push new managers into PMS
1897 PMS.push(FPP);
1930 // and push new managers into PMS
1934 PMS.push(BBP);
/external/llvm/test/MC/X86/
H A Dx86-64.s223 push $1 label
893 push %fs label
896 push %gs label
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCodeEmitter.java299 public void push(int i) { method in class:CodeEmitter
313 public void push(long value) { method in class:CodeEmitter
321 public void push(float value) { method in class:CodeEmitter
328 public void push(double value) { method in class:CodeEmitter
336 public void push(String value) { method in class:CodeEmitter
558 push(index);
677 public void push(boolean value) { method in class:CodeEmitter
678 push(value ? 1 : 0);
685 push(1);
692 push(ms
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java721 push(theSaved);
766 private void push(Element e) throws SAXException { method in class:Parser
1061 if (!e.name().equals("<pcdata>")) push(e);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java82 * Used to push/pop values used for the field m_ispreserve, but
1226 m_disableOutputEscapingStates.push(true);
1956 m_elemContext = m_elemContext.push(namespaceURI,localName,name);
2234 * to push the state.
2644 m_preserves.push(m_ispreserve);
3373 public final boolean push(boolean val) method in class:ToStream.BoolStack
/external/checkpolicy/
H A Dpolicy_define.c93 int insert_separator(int push) argument
97 if (push)
109 int insert_id(char *id, int push) argument
120 if (push)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp123 void BitStack::push(bool bit) function in class:blink::BitStack
222 stack.push(fullyClipsContents(node) || (stack.top() && !ignoresContainerClip(node)));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptSource.js48 function push(array, var_args) function
78 push(result, array1[i]);
80 push(result, array2[i]);
344 push(group, id);
448 push(descriptors, descriptor);
559 push(descriptors, descriptor);
578 push(descriptors, descriptor);
591 push(descriptors, { name: "__proto__", value: object.__proto__, writable: true, configurable: true, enumerable: false, isOwn: true, __proto__: null });
1300 push(preview.properties, property);
1336 push(previe
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dandroid.py208 def push(self, host_path, device_path, ignore_error=False): member in class:AndroidCommands
209 return self.run(['push', host_path, device_path], ignore_error=ignore_error)
872 if not self._android_commands.push(self._md5sum_path, MD5SUM_DEVICE_PATH):
873 self._abort('Could not push md5sum to device')
893 # Other directories will be created automatically by adb push.
941 self._android_commands.push(host_file, device_file)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-private.hh340 inline Type *push (void) function in struct:hb_prealloced_array_t
471 item = items.push ();
512 item = items.push ();
/external/chromium_org/third_party/libxml/src/
H A Dxmllint.c166 static int push = 0; variable
2180 else if ((html) && (push)) {
2239 if (push) {
3000 printf("\t--push : use the push mode of the parser\n");
3216 else if ((!strcmp(argv[i], "-push")) ||
3217 (!strcmp(argv[i], "--push")))
3218 push++;
/external/chromium_org/v8/src/arm64/
H A Dmacro-assembler-arm64.h545 // It is valid to push the same register more than once, and there is no
574 // registers are associated with higher memory addresses (as in the A32 push
627 inline void push(Register src) { function in class:v8::internal::MacroAssembler
634 // Sometimes callers need to push or pop multiple registers in a way that is
636 // allows push requests to be queued up, then flushed at once. The
910 // Tag and push in one step.
1665 // slightly more complicated than simple push/pop operations.
1969 // update csp on every push (using BumpSystemStackPointer), so determining its
2039 // Perform necessary maintenance operations before a push or after a pop.
2063 // other than that required for the push o
[all...]
/external/chromium_org/v8/src/mips/
H A Dmacro-assembler-mips.h642 void push(Register src) { function in class:v8::internal::MacroAssembler
646 void Push(Register src) { push(src); }
/external/chromium_org/v8/src/mips64/
H A Dmacro-assembler-mips64.h664 void push(Register src) { function in class:v8::internal::MacroAssembler
668 void Push(Register src) { push(src); }

Completed in 1609 milliseconds

<<1112131415