HomeSort by relevance Sort by last modified time
    Searched defs:push (Results 176 - 200 of 1457) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_screen.c 395 struct nouveau_pushbuf *push = screen->base.pushbuf; local
399 assert(PUSH_AVAIL(push) + push->rsvd_kick >= 3);
400 PUSH_DATA (push, NV30_3D_FENCE_OFFSET |
402 PUSH_DATA (push, 0);
403 PUSH_DATA (push, *sequence);
467 struct nouveau_pushbuf *push; local
550 push = screen->base.pushbuf;
551 push->rsvd_kick = 16;
617 BEGIN_NV04(push, NV01_SUBC(3D, OBJECT), 1)
    [all...]
nv30_vertprog.c 57 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
190 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_CONST_ID), 5);
191 PUSH_DATA (push, vp->data->start + i);
192 PUSH_DATAp(push, data->value, 4);
197 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_FROM_ID), 1);
198 PUSH_DATA (push, vp->exec->start);
200 BEGIN_NV04(push, NV30_3D(VP_UPLOAD_INST(0)), 4);
201 PUSH_DATAp(push, vp->insns[i].data, 4);
206 BEGIN_NV04(push, NV30_3D(VP_START_FROM_ID), 1);
207 PUSH_DATA (push, vp->exec->start)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_compute.c 34 struct nouveau_pushbuf *push)
70 BEGIN_NV04(push, SUBC_CP(NV01_SUBCHAN_OBJECT), 1);
71 PUSH_DATA (push, screen->compute->handle);
73 BEGIN_NV04(push, NV50_CP(UNK02A0), 1);
74 PUSH_DATA (push, 1);
75 BEGIN_NV04(push, NV50_CP(DMA_STACK), 1);
76 PUSH_DATA (push, fifo->vram);
77 BEGIN_NV04(push, NV50_CP(STACK_ADDRESS_HIGH), 2);
78 PUSH_DATAh(push, screen->stack_bo->offset);
79 PUSH_DATA (push, screen->stack_bo->offset)
198 struct nouveau_pushbuf *push = screen->base.pushbuf; local
247 struct nouveau_pushbuf *push = nv50->base.pushbuf; local
    [all...]
nv50_query.c 79 struct nouveau_pushbuf *push = nv50->base.pushbuf; local
123 PUSH_SPACE(push, 2);
124 BEGIN_NV04(push, NV50_3D(COND_MODE), 1);
125 PUSH_DATA (push, cond);
129 PUSH_SPACE(push, 9);
132 BEGIN_NV04(push, SUBC_3D(NV50_GRAPH_SERIALIZE), 1);
133 PUSH_DATA (push, 0);
136 PUSH_REFN (push, hq->bo, NOUVEAU_BO_GART | NOUVEAU_BO_RD);
137 BEGIN_NV04(push, NV50_3D(COND_ADDRESS_HIGH), 3);
138 PUSH_DATAh(push, hq->bo->offset + hq->offset)
    [all...]
nv98_video.c 89 struct nouveau_pushbuf **push; local
128 push = dec->pushbuf;
160 BEGIN_NV04(push[0], SUBC_BSP(NV01_SUBCHAN_OBJECT), 1);
161 PUSH_DATA (push[0], dec->bsp->handle);
163 BEGIN_NV04(push[0], SUBC_BSP(0x180), 5);
165 PUSH_DATA (push[0], nv04_data.vram);
167 BEGIN_NV04(push[1], SUBC_VP(NV01_SUBCHAN_OBJECT), 1);
168 PUSH_DATA (push[1], dec->vp->handle);
170 BEGIN_NV04(push[1], SUBC_VP(0x180), 6);
172 PUSH_DATA (push[1], nv04_data.vram)
    [all...]
nv98_video_bsp.c 42 struct nouveau_pushbuf *push = dec->pushbuf[0]; local
110 nouveau_pushbuf_space(push, 32, num_refs, 0);
111 nouveau_pushbuf_refn(push, bo_refs, num_refs);
123 BEGIN_NV04(push, SUBC_BSP(0x700), 5);
124 PUSH_DATA (push, caps); // 700 cmd
125 PUSH_DATA (push, bsp_addr + 1); // 704 strparm_bsp
126 PUSH_DATA (push, bsp_addr + 7); // 708 str addr
127 PUSH_DATA (push, comm_addr); // 70c comm
128 PUSH_DATA (push, comm_seq); // 710 seq
137 BEGIN_NV04(push, SUBC_BSP(0x400), mpeg12 ? 5 : 7)
    [all...]
nv98_video_vp.c 73 struct nouveau_pushbuf *push = dec->pushbuf[1]; local
114 nouveau_pushbuf_space(push, 32 + codec_extra, num_refs, 0);
116 nouveau_pushbuf_refn(push, bo_refs, num_refs);
130 BEGIN_NV04(push, SUBC_VP(0x700), 7);
131 PUSH_DATA (push, caps); // 700
132 PUSH_DATA (push, comm_seq); // 704
133 PUSH_DATA (push, 0); // 708 fuc targets, ignored for nv98
134 PUSH_DATA (push, dec->fw_sizes); // 70c
135 PUSH_DATA (push, bsp_addr+(VP_OFFSET>>8)); // 710 picparm_addr
136 PUSH_DATA (push, inter_addr); // 714 inter_par
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_query.c 101 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
145 PUSH_SPACE(push, 2);
146 IMMED_NVC0(push, NVC0_3D(COND_MODE), cond);
148 IMMED_NVC0(push, NVC0_CP(COND_MODE), cond);
155 PUSH_SPACE(push, 10);
156 PUSH_REFN (push, hq->bo, NOUVEAU_BO_GART | NOUVEAU_BO_RD);
157 BEGIN_NVC0(push, NVC0_3D(COND_ADDRESS_HIGH), 3);
158 PUSH_DATAh(push, hq->bo->offset + hq->offset);
159 PUSH_DATA (push, hq->bo->offset + hq->offset);
160 PUSH_DATA (push, cond)
    [all...]
nvc0_shader_state.c 70 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
77 BEGIN_NVC0(push, NVC0_3D(SP_SELECT(1)), 2);
78 PUSH_DATA (push, 0x11);
79 PUSH_DATA (push, vp->code_base);
80 BEGIN_NVC0(push, NVC0_3D(SP_GPR_ALLOC(1)), 1);
81 PUSH_DATA (push, vp->num_gprs);
83 // BEGIN_NVC0(push, NVC0_3D_(0x163c), 1);
84 // PUSH_DATA (push, 0);
90 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
132 BEGIN_NVC0(push, NVC0_3D(SHADE_MODEL), 1)
166 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
194 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
218 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
244 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
257 struct nouveau_pushbuf *push = nvc0->base.pushbuf; local
    [all...]
nvc0_video.c 95 struct nouveau_pushbuf **push; local
167 push = dec->pushbuf;
187 BEGIN_NVC0(push[0], SUBC_BSP(NV01_SUBCHAN_OBJECT), 1);
188 PUSH_DATA (push[0], dec->bsp->handle);
190 BEGIN_NVC0(push[1], SUBC_VP(NV01_SUBCHAN_OBJECT), 1);
191 PUSH_DATA (push[1], dec->vp->handle);
193 BEGIN_NVC0(push[2], SUBC_PPP(NV01_SUBCHAN_OBJECT), 1);
194 PUSH_DATA (push[2], dec->ppp->handle);
274 BEGIN_NVC0(push[0], SUBC_BSP(0x200), 2);
275 PUSH_DATA (push[0], codec)
    [all...]
nvc0_video_bsp.c 139 struct nouveau_pushbuf *push = dec->pushbuf[0]; local
163 nouveau_pushbuf_space(push, 32, num_refs, 0);
164 nouveau_pushbuf_refn(push, bo_refs, num_refs);
176 BEGIN_NVC0(push, SUBC_BSP(0x700), 5);
177 PUSH_DATA (push, caps); // 700 cmd
178 PUSH_DATA (push, bsp_addr + 1); // 704 strparm_bsp
179 PUSH_DATA (push, bsp_addr + 7); // 708 str addr
180 PUSH_DATA (push, comm_addr); // 70c comm
181 PUSH_DATA (push, comm_seq); // 710 seq
189 BEGIN_NVC0(push, SUBC_BSP(0x400), 6)
    [all...]
nvc0_video_vp.c 73 struct nouveau_pushbuf *push = dec->pushbuf[1]; local
114 nouveau_pushbuf_space(push, 32 + codec_extra, num_refs, 0);
116 nouveau_pushbuf_refn(push, bo_refs, num_refs);
130 BEGIN_NVC0(push, SUBC_VP(0x700), 7);
131 PUSH_DATA (push, caps); // 700
132 PUSH_DATA (push, comm_seq); // 704
133 PUSH_DATA (push, 0); // 708 fuc targets, ignored for nvc0
134 PUSH_DATA (push, dec->fw_sizes); // 70c
135 PUSH_DATA (push, bsp_addr+(VP_OFFSET>>8)); // 710 picparm_addr
136 PUSH_DATA (push, inter_addr); // 714 inter_par
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_driver.c 70 struct nouveau_pushbuf *push = context_push(ctx); local
72 PUSH_KICK(push);
89 struct nouveau_pushbuf *push = context_push(ctx); local
95 if (!nouveau_pushbuf_space(push, 16, 0, 0) &&
96 !nouveau_pushbuf_refn(push, &refn, 1)) {
97 PUSH_DATA(push, 0);
98 PUSH_KICK(push);
nv10_context.c 147 struct nouveau_pushbuf *push = context_push(ctx); local
154 BEGIN_NV04(push, NV17_3D(HIERZ_FILL_VALUE), 1);
155 PUSH_DATA (push, pack_zs_f(s->format, ctx->Depth.Clear, 0));
156 BEGIN_NV04(push, NV17_3D(HIERZ_BUFFER_CLEAR), 1);
157 PUSH_DATA (push, 1);
176 struct nouveau_pushbuf *push = context_push(ctx); local
180 nouveau_pushbuf_bufctx(push, nctx->hw.bufctx);
181 if (nouveau_pushbuf_validate(push)) {
182 nouveau_pushbuf_bufctx(push, NULL);
196 nouveau_pushbuf_bufctx(push, NULL)
203 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv10_state_fb.c 57 struct nouveau_pushbuf *push = context_push(ctx); local
75 PUSH_SPACE(push, 11);
76 BEGIN_NV04(push, NV17_3D(HIERZ_OFFSET), 1);
77 PUSH_MTHDl(push, NV17_3D(HIERZ_OFFSET), BUFCTX_FB,
79 BEGIN_NV04(push, NV17_3D(HIERZ_WINDOW_X), 4);
80 PUSH_DATAf(push, - 1792);
81 PUSH_DATAf(push, - 2304 + fb->Height);
82 PUSH_DATAf(push, fb->_DepthMaxF / 2);
83 PUSH_DATAf(push, 0);
85 BEGIN_NV04(push, NV17_3D(HIERZ_PITCH), 1)
95 struct nouveau_pushbuf *push = context_push(ctx); local
166 struct nouveau_pushbuf *push = context_push(ctx); local
179 struct nouveau_pushbuf *push = context_push(ctx); local
205 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv10_state_tex.c 41 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, 1)
158 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv20_state_tex.c 41 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, 1)
162 struct nouveau_pushbuf *push = context_push(ctx); local
261 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/progress/
ArgumentMatcherStorageImpl.java 28 matcherStack.push(new LocalizedMatcher(matcher));
  /external/okhttp/okio/okio/src/main/java/okio/
Segment.java 93 public Segment push(Segment segment) { method in class:Segment
114 prev.push(prefix);
  /external/python/cpython2/Lib/idlelib/idle_test/
test_io.py 46 def push(self, lines): member in class:MockShell
188 shell.push(['one\n', 'two\n', ''])
190 shell.push(['one\n', 'two\n', ''])
192 shell.push(['one\n', 'two\n', ''])
194 shell.push(['one\n', 'two\n', 'three\n', ''])
199 shell.push(['one\n', 'two\n'])
208 shell.push(['one\n', 'two\n', 'three\n', 'four\n'])
212 shell.push(['one\ntwo\n'])
215 shell.push(['one', 'two', 'three'])
218 shell.push(['one\n', 'two\n', 'three\n']
    [all...]
  /external/python/cpython3/Lib/
asynchat.py 192 def push(self, data): member in class:async_chat
contextlib.py 286 self.push(_exit_wrapper)
288 def push(self, exit): member in class:ExitStack
318 self.push(_exit_wrapper)
  /external/python/cpython3/Lib/idlelib/idle_test/
test_iomenu.py 37 def push(self, lines): member in class:MockShell
158 shell.push(['one\n', 'two\n', ''])
160 shell.push(['one\n', 'two\n', ''])
162 shell.push(['one\n', 'two\n', ''])
164 shell.push(['one\n', 'two\n', 'three\n', ''])
169 shell.push(['one\n', 'two\n'])
178 shell.push(['one\n', 'two\n', 'three\n', 'four\n'])
182 shell.push(['one\ntwo\n'])
185 shell.push(['one', 'two', 'three'])
188 shell.push(['one\n', 'two\n', 'three\n']
    [all...]
  /external/python/cpython3/Lib/turtledemo/
sorting_animate.py 49 def push(self, d): member in class:Shelf
174 s.push(Block(i))
  /external/python/cpython3/Parser/
parser.c 120 push(stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) function
254 /* Push non-terminal */
259 if ((err = push(&ps->p_stack, nt, d1,
261 D(printf(" MemError: push\n"));
264 D(printf(" Push ...\n"));

Completed in 243 milliseconds

1 2 3 4 5 6 78 91011>>