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

1 23 4 5 6 7 8 91011>>

  /external/llvm/test/MC/X86/
intel-syntax-ambiguous.s 32 push [eax] label
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_context.c 37 nv30_context_kick_notify(struct nouveau_pushbuf *push)
42 if (!push->user_priv)
44 nv30 = container_of(push->user_priv, nv30, bufctx);
50 if (push->bufctx) {
52 LIST_FOR_EACH_ENTRY(bref, &push->bufctx->current, thead) {
75 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
81 PUSH_KICK(push);
197 struct nouveau_pushbuf *push; local
218 push = screen->base.pushbuf;
219 nv30->base.pushbuf = push;
    [all...]
nv40_verttex.c 32 struct nouveau_pushbuf *push = nv30->base.pushbuf; local
42 BEGIN_NV04(push, NV40_3D(VTXTEX_ENABLE(unit)), 1);
43 PUSH_DATA (push, 0);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_render_t.c 104 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
nv04_state_fb.c 52 struct nouveau_pushbuf *push = context_push(ctx); local
62 PUSH_RESET(push, BUFCTX_FB);
72 BEGIN_NV04(push, NV04_SF3D(OFFSET_COLOR), 1);
73 PUSH_MTHDl(push, NV04_SF3D(OFFSET_COLOR), BUFCTX_FB,
84 BEGIN_NV04(push, NV04_SF3D(OFFSET_ZETA), 1);
85 PUSH_MTHDl(push, NV04_SF3D(OFFSET_ZETA), BUFCTX_FB,
89 BEGIN_NV04(push, NV04_SF3D(FORMAT), 1);
90 PUSH_DATA (push, rt_format);
91 BEGIN_NV04(push, NV04_SF3D(PITCH), 1);
92 PUSH_DATA (push, zeta_pitch << 16 | rt_pitch)
102 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv10_state_polygon.c 37 struct nouveau_pushbuf *push = context_push(ctx); local
40 BEGIN_NV04(push, NV10_3D(CULL_FACE_ENABLE), 1);
41 PUSH_DATAb(push, ctx->Polygon.CullFlag);
43 BEGIN_NV04(push, NV10_3D(CULL_FACE), 1);
44 PUSH_DATA (push, (mode == GL_FRONT ? NV10_3D_CULL_FACE_FRONT :
52 struct nouveau_pushbuf *push = context_push(ctx); local
54 BEGIN_NV04(push, NV10_3D(FRONT_FACE), 1);
55 PUSH_DATA (push, ctx->Polygon.FrontFace == GL_CW ?
62 struct nouveau_pushbuf *push = context_push(ctx); local
66 BEGIN_NV04(push, NV10_3D(LINE_WIDTH), 1)
81 struct nouveau_pushbuf *push = context_push(ctx); local
93 struct nouveau_pushbuf *push = context_push(ctx); local
106 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv10_state_raster.c 40 struct nouveau_pushbuf *push = context_push(ctx); local
42 BEGIN_NV04(push, NV10_3D(ALPHA_FUNC_ENABLE), 1);
43 PUSH_DATAb(push, ctx->Color.AlphaEnabled);
45 BEGIN_NV04(push, NV10_3D(ALPHA_FUNC_FUNC), 2);
46 PUSH_DATA (push, nvgl_comparison_op(ctx->Color.AlphaFunc));
47 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.AlphaRef));
53 struct nouveau_pushbuf *push = context_push(ctx); local
55 BEGIN_NV04(push, NV10_3D(BLEND_COLOR), 1);
56 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 |
65 struct nouveau_pushbuf *push = context_push(ctx) local
77 struct nouveau_pushbuf *push = context_push(ctx); local
87 struct nouveau_pushbuf *push = context_push(ctx); local
99 struct nouveau_pushbuf *push = context_push(ctx); local
113 struct nouveau_pushbuf *push = context_push(ctx); local
122 struct nouveau_pushbuf *push = context_push(ctx); local
135 struct nouveau_pushbuf *push = context_push(ctx); local
145 struct nouveau_pushbuf *push = context_push(ctx); local
159 struct nouveau_pushbuf *push = context_push(ctx); local
168 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv20_context.c 42 struct nouveau_pushbuf *push = context_push(ctx); local
48 nouveau_pushbuf_bufctx(push, nctx->hw.bufctx);
49 if (nouveau_pushbuf_validate(push)) {
50 nouveau_pushbuf_bufctx(push, NULL);
67 BEGIN_NV04(push, NV20_3D(CLEAR_VALUE), 1);
68 PUSH_DATA (push, pack_rgba_clamp_f(s->format, ctx->Color.ClearColor.f));
82 BEGIN_NV04(push, NV20_3D(CLEAR_DEPTH_VALUE), 1);
83 PUSH_DATA (push, pack_zs_f(s->format, ctx->Depth.Clear,
89 BEGIN_NV04(push, NV20_3D(CLEAR_BUFFERS), 1);
90 PUSH_DATA (push, clear)
99 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
nv20_state_frag.c 37 struct nouveau_pushbuf *push = context_push(ctx); local
42 BEGIN_NV04(push, NV20_3D(RC_IN_ALPHA(i)), 1);
43 PUSH_DATA (push, a_in);
44 BEGIN_NV04(push, NV20_3D(RC_OUT_ALPHA(i)), 1);
45 PUSH_DATA (push, a_out);
46 BEGIN_NV04(push, NV20_3D(RC_IN_RGB(i)), 1);
47 PUSH_DATA (push, c_in);
48 BEGIN_NV04(push, NV20_3D(RC_OUT_RGB(i)), 1);
49 PUSH_DATA (push, c_out);
50 BEGIN_NV04(push, NV20_3D(RC_CONSTANT_COLOR0(i)), 1)
59 struct nouveau_pushbuf *push = context_push(ctx); local
    [all...]
  /external/python/cpython2/Lib/
code.py 243 more = self.push(line)
249 def push(self, line): member in class:InteractiveConsole
250 """Push a line to the interpreter.
multifile.py 14 fp.push(separator)
22 It is also allowed to use multiple push()...pop() sequences.
133 def push(self, sep): member in class:MultiFile
135 raise Error, 'bad MultiFile.push() call'
  /external/skqp/src/core/
SkThreadedBMPDevice.h 82 SK_ALWAYS_INLINE void push(const SkRect& rawDrawBounds, function in class:SkThreadedBMPDevice::DrawQueue
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/
NDC.java 45 public static void push(String val) { method in class:NDC
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/util/
ArrayStack.java 27 public void push(T obj) { method in class:ArrayStack
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/util/
ArrayStackTest.java 25 stack.push(new Integer(1));
26 stack.push(new Integer(2));
  /external/testng/src/main/java/org/testng/reporters/jq/
BannerPanel.java 13 xsb.push(D, C, "top-banner-root");
BaseMultiSuitePanel.java 18 xsb.push(D, C, "panel", "panel-name", getPanelName(s));
19 xsb.push(D, C, "main-panel-header rounded-window-top");
23 xsb.push(D, C, "main-panel-content rounded-window-bottom");
GroupPanel.java 30 xsb.push(D, C, "test-group");
35 xsb.push(D, C, "method-in-group");
IgnoredMethodsPanel.java 36 xsb.push(D, C, "ignored-class-div");
38 xsb.push(D, C, "ignored-methods-div");
ReporterPanel.java 36 xsb.push(D, C, "reporter-method-div");
38 xsb.push(D, C, "reporter-method-output-div");
  /external/vogar/src/vogar/
Target.java 41 public abstract void push(File local, File remote); method in class:Target
45 return new Task("push " + remote) {
47 push(local, remote);
  /external/vogar/src/vogar/tasks/
PrepareTarget.java 54 // push ~/.caliperrc to device if found
57 target.push(hostCaliperRc, new File(run.deviceUserHome, ".caliperrc"));
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 71 void push(T e) { function in class:android::LinkedBlockingQueue
  /frameworks/av/services/audioflinger/
StateQueue.cpp 94 template<typename T> bool StateQueue<T>::push(StateQueue<T>::block_t block) function in class:android::StateQueue
96 #define PUSH_BLOCK_ACK_NS 3000000L // 3 ms: time between checks for ack in push()
100 ALOG_ASSERT(!mInMutation, "push() called when in a mutation");
114 // wait for prior push to be acknowledged
157 // optionally wait for this push or a prior push to be acknowledged
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Stack.java 41 * @param object the object to push
43 public void push(T object) { method in class:Stack

Completed in 533 milliseconds

1 23 4 5 6 7 8 91011>>