Searched defs:push (Results 76 - 100 of 363) sorted by relevance

1234567891011>>

/external/bison/examples/calc++/
H A Dstack.hh79 push (const T& t) function in class:yy::stack
/external/chromium_org/base/threading/
H A Dthread_collision_warner_unittest.cc134 void push(int value) { function in class:NonThreadSafeQueue
155 queue_.push(0);
183 // Queue with a 5 seconds push execution time, hopefuly the two used threads
184 // in the test will enter the push at same time.
191 void push(int value) { function in class:NonThreadSafeQueue
213 queue_.push(0);
241 // Queue with a 2 seconds push execution time, hopefuly the two used threads
242 // in the test will enter the push at same time.
249 void push(int value) { function in class:NonThreadSafeQueue
276 queue_.push(
318 void push(int) { function in class:NonThreadSafeQueue
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDoublyLinkedList.h82 void push(T*);
126 template<typename T> inline void DoublyLinkedList<T>::push(T* node) function in class:WTF::DoublyLinkedList
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DLoopInfo.cpp201 void TLoopStack::push(TIntermLoop *loop) function in class:TLoopStack
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.pyx60 cpdef push(self): member in class:cWalker
/external/chromium_org/third_party/icu/source/common/
H A Duvector.h320 void* push(void* obj, UErrorCode &status);
322 int32_t push(int32_t i, UErrorCode &status);
401 inline void* UStack::push(void* obj, UErrorCode &status) { function in class:UStack
406 inline int32_t UStack::push(int32_t i, UErrorCode &status) { function in class:UStack
H A Duvectr64.h193 int64_t push(int64_t i, UErrorCode &status);
261 inline int64_t UVector64::push(int64_t i, UErrorCode &status) { function in class:UVector64
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c63 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
105 if (!PUSH_SPACE(push, 8))
107 PUSH_RESET(push, BUFCTX_FRAGPROG);
109 BEGIN_NV04(push, NV30_3D(FP_ACTIVE_PROGRAM), 1);
110 PUSH_RESRC(push, NV30_3D(FP_ACTIVE_PROGRAM), BUFCTX_FRAGPROG, r, 0,
114 BEGIN_NV04(push, NV30_3D(FP_CONTROL), 1);
115 PUSH_DATA (push, fp->fp_control);
117 BEGIN_NV04(push, NV30_3D(FP_REG_CONTROL), 1);
118 PUSH_DATA (push, 0x00010004);
119 BEGIN_NV04(push, NV30_3
[all...]
H A Dnv30_fragtex.c38 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
46 PUSH_RESET(push, BUFCTX_FRAGTEX(unit));
90 BEGIN_NV04(push, NV40_3D(TEX_SIZE1(unit)), 1);
91 PUSH_DATA (push, sv->npot_size1);
126 BEGIN_NV04(push, NV30_3D(TEX_OFFSET(unit)), 8);
127 PUSH_MTHDl(push, NV30_3D(TEX_OFFSET(unit)), BUFCTX_FRAGTEX(unit),
129 PUSH_MTHDs(push, NV30_3D(TEX_FORMAT(unit)), BUFCTX_FRAGTEX(unit),
133 PUSH_DATA (push, sv->wrap | (ss->wrap & sv->wrap_mask));
134 PUSH_DATA (push, enable);
135 PUSH_DATA (push, s
[all...]
H A Dnv30_vertprog.c55 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
188 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_CONST_ID), 5);
189 PUSH_DATA (push, vp->data->start + i);
190 PUSH_DATAp(push, data->value, 4);
195 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_FROM_ID), 1);
196 PUSH_DATA (push, vp->exec->start);
198 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_INST(0)), 4);
199 PUSH_DATAp(push, vp->insns[i].data, 4);
204 BEGIN_NV04(push, NV30_3D(VP_START_FROM_ID), 1);
205 PUSH_DATA (push, v
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_context.c49 struct nouveau_pushbuf *push = nv50_context(pipe)->base.pushbuf; local
51 BEGIN_NV04(push, SUBC_3D(NV50_GRAPH_SERIALIZE), 1);
52 PUSH_DATA (push, 0);
53 BEGIN_NV04(push, NV50_3D(TEX_CACHE_CTL), 1);
54 PUSH_DATA (push, 0x20);
58 nv50_default_kick_notify(struct nouveau_pushbuf *push) argument
60 struct nv50_screen *screen = push->user_priv;
H A Dnv50_tex.c202 struct nouveau_pushbuf *push = nv50->base.pushbuf; local
212 BEGIN_NV04(push, NV50_3D(BIND_TIC(s)), 1);
213 PUSH_DATA (push, (i << 1) | 0);
221 BEGIN_NV04(push, NV50_2D(DST_FORMAT), 2);
222 PUSH_DATA (push, NV50_SURFACE_FORMAT_R8_UNORM);
223 PUSH_DATA (push, 1);
224 BEGIN_NV04(push, NV50_2D(DST_PITCH), 5);
225 PUSH_DATA (push, 262144);
226 PUSH_DATA (push, 65536);
227 PUSH_DATA (push,
289 struct nouveau_pushbuf *push = nv50->base.pushbuf; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_context.c50 struct nouveau_pushbuf *push = nvc0_context(pipe)->base.pushbuf; local
52 IMMED_NVC0(push, NVC0_3D(SERIALIZE), 0);
53 IMMED_NVC0(push, NVC0_3D(TEX_CACHE_CTL), 0);
106 nvc0_default_kick_notify(struct nouveau_pushbuf *push) argument
108 struct nvc0_screen *screen = push->user_priv;
H A Dnvc0_shader_state.c34 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
48 BEGIN_NVC0(push, NVC0_3D(CB_SIZE), 3);
50 PUSH_DATA (push, align(prog->immd_size, 0x100));
51 PUSH_DATAh(push, nvc0->screen->text->offset + prog->immd_base);
52 PUSH_DATA (push, nvc0->screen->text->offset + prog->immd_base);
53 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
54 PUSH_DATA (push, (14 << 4) | 1);
59 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
60 PUSH_DATA (push, (14 << 4) | 0);
87 struct nouveau_pushbuf *push local
107 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
135 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
161 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
185 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
214 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_driver.c62 struct nouveau_pushbuf *push = context_push(ctx); local
64 PUSH_KICK(push);
80 struct nouveau_pushbuf *push = context_push(ctx); local
86 if (!nouveau_pushbuf_space(push, 16, 0, 0) &&
87 !nouveau_pushbuf_refn(push, &refn, 1)) {
88 PUSH_DATA(push, 0);
89 PUSH_KICK(push);
H A Dnouveau_render_t.c104 struct nouveau_pushbuf *push = context_push(ctx); local
114 struct nouveau_pushbuf *push = context_push(ctx); local
124 struct nouveau_pushbuf *push = context_push(ctx); local
H A Dnv04_context.c53 struct nouveau_pushbuf *push = context_push(ctx); local
69 BEGIN_NV04(push, NV01_SUBC(3D, OBJECT), 1);
70 PUSH_DATA (push, fahrenheit->handle);
81 struct nouveau_pushbuf *push = context_push(ctx); local
84 BEGIN_NV04(push, NV01_SUBC(SURF, OBJECT), 1);
85 PUSH_DATA (push, hw->surf3d->handle);
86 BEGIN_NV04(push, NV04_SF3D(DMA_NOTIFY), 3);
87 PUSH_DATA (push, hw->ntfy->handle);
88 PUSH_DATA (push, fifo->vram);
89 PUSH_DATA (push, fif
[all...]
H A Dnv10_state_tex.c41 struct nouveau_pushbuf *push = context_push(ctx); local
51 BEGIN_NV04(push, NV10_3D(TEX_GEN_COEFF(i, j)), 4);
52 PUSH_DATAp(push, k, 4);
55 BEGIN_NV04(push, NV10_3D(TEX_GEN_MODE(i,j)), 1);
56 PUSH_DATA (push, nvgl_texgen_mode(coord->Mode));
59 BEGIN_NV04(push, NV10_3D(TEX_GEN_MODE(i,j)), 1);
60 PUSH_DATA (push, 0);
72 struct nouveau_pushbuf *push = context_push(ctx); local
77 BEGIN_NV04(push, NV10_3D(TEX_MATRIX_ENABLE(i)), 1);
78 PUSH_DATA (push,
158 struct nouveau_pushbuf *push = context_push(ctx); local
[all...]
H A Dnv20_state_fb.c57 struct nouveau_pushbuf *push = context_push(ctx); local
70 BEGIN_NV04(push, NV25_3D(HIERZ_PITCH), 1);
71 PUSH_DATA (push, pitch);
72 BEGIN_NV04(push, NV25_3D(HIERZ_OFFSET), 1);
73 PUSH_MTHDl(push, NV25_3D(HIERZ_OFFSET), BUFCTX_FB,
80 struct nouveau_pushbuf *push = context_push(ctx); local
90 PUSH_RESET(push, BUFCTX_FB);
100 BEGIN_NV04(push, NV20_3D(COLOR_OFFSET), 1);
101 PUSH_MTHDl(push, NV20_3D(COLOR_OFFSET), BUFCTX_FB,
113 BEGIN_NV04(push, NV20_3
136 struct nouveau_pushbuf *push = context_push(ctx); local
[all...]
H A Dnv20_state_tex.c41 struct nouveau_pushbuf *push = context_push(ctx); local
51 BEGIN_NV04(push, NV20_3D(TEX_GEN_COEFF(i, j)), 4);
52 PUSH_DATAp(push, k, 4);
55 BEGIN_NV04(push, NV20_3D(TEX_GEN_MODE(i, j)), 1);
56 PUSH_DATA (push, nvgl_texgen_mode(coord->Mode));
59 BEGIN_NV04(push, NV20_3D(TEX_GEN_MODE(i, j)), 1);
60 PUSH_DATA (push, 0);
70 struct nouveau_pushbuf *push = context_push(ctx); local
74 BEGIN_NV04(push, NV20_3D(TEX_MATRIX_ENABLE(i)), 1);
75 PUSH_DATA (push,
162 struct nouveau_pushbuf *push = context_push(ctx); local
261 struct nouveau_pushbuf *push = context_push(ctx); local
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/src/
H A DSkTDStackNester.h118 T* push() { function in class:SkTDStackNester
134 void push(const T& elem) { *this->push() = elem; } function in class:SkTDStackNester
164 * than push() has been called in total or since the last call to nest().
/external/chromium_org/third_party/skia/include/core/
H A DSkTDStack.h37 T* push() { function in class:SkTDStack
49 void push(const T& elem) { *this->push() = elem; } function in class:SkTDStack
/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype-misc.js65 return array.push(elt);
314 Array.prototype.push.apply([], [1].splice(0, -(-1 % 5)));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-builtinbust-6.js11 Array.prototype.push.call(v);
35 test_receiver(42, "Array.prototype.push.call(42, 'y')");
/external/icu/icu4c/source/common/
H A Duvector.h320 void* push(void* obj, UErrorCode &status);
322 int32_t push(int32_t i, UErrorCode &status);
401 inline void* UStack::push(void* obj, UErrorCode &status) { function in class:UStack
406 inline int32_t UStack::push(int32_t i, UErrorCode &status) { function in class:UStack

Completed in 762 milliseconds

1234567891011>>