Searched defs:subc (Results 1 - 13 of 13) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_statebuf.h23 static inline uint32_t sb_header(unsigned subc, unsigned mthd, unsigned size) argument
25 return (size << 18) | (subc << 13) | mthd;
H A Dnouveau_video.h58 NV04_FIFO_PKHDR(int subc, int mthd, unsigned size) argument
60 return 0x00000000 | (size << 18) | (subc << 13) | mthd;
64 NV04_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) argument
66 return 0x40000000 | (size << 18) | (subc << 13) | mthd;
70 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) argument
73 PUSH_DATA (push, NV04_FIFO_PKHDR(subc, mthd, size));
77 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) argument
80 PUSH_DATA (push, NV04_FIFO_PKHDR_NI(subc, mthd, size));
84 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, argument
88 nouveau_bufctx_mthd(ctx, bin, NV04_FIFO_PKHDR(subc, mth
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js365 * @param {Function} subc the object to modify
372 extend: function(subc, superc, overrides) {
373 if (!superc||!subc) {
379 subc.prototype=new F(); class
380 subc.prototype.constructor=subc;
381 subc.superclass=superc.prototype;
388 subc.prototype[i]=overrides[i];
391 org.antlr.lang._IEEnumFix(subc.prototype, overrides);
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_winsys.h66 NV50_FIFO_PKHDR(int subc, int mthd, unsigned size) argument
68 return 0x00000000 | (size << 18) | (subc << 13) | mthd;
72 NV50_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) argument
74 return 0x40000000 | (size << 18) | (subc << 13) | mthd;
78 NV50_FIFO_PKHDR_L(int subc, int mthd) argument
80 return 0x00030000 | (subc << 13) | mthd;
98 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) argument
103 PUSH_DATA (push, NV50_FIFO_PKHDR(subc, mthd, size));
107 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) argument
112 PUSH_DATA (push, NV50_FIFO_PKHDR_NI(subc, mth
117 BEGIN_NL50(struct nouveau_pushbuf *push, int subc, int mthd, uint32_t size) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_winsys.h74 NVC0_FIFO_PKHDR_SQ(int subc, int mthd, unsigned size) argument
76 return 0x20000000 | (size << 16) | (subc << 13) | (mthd >> 2);
80 NVC0_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) argument
82 return 0x60000000 | (size << 16) | (subc << 13) | (mthd >> 2);
86 NVC0_FIFO_PKHDR_IL(int subc, int mthd, uint16_t data) argument
89 return 0x80000000 | (data << 16) | (subc << 13) | (mthd >> 2);
93 NVC0_FIFO_PKHDR_1I(int subc, int mthd, unsigned size)
95 return 0xa0000000 | (size << 16) | (subc << 13) | (mthd >> 2);
113 BEGIN_NVC0(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size)
118 PUSH_DATA (push, NVC0_FIFO_PKHDR_SQ(subc, mth
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_winsys.h50 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
53 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
59 PUSH_MTHDo(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
62 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
71 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
75 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
84 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
89 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
103 PUSH_RESRC(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
107 PUSH_MTHD(push, subc, mth
112 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, int size) argument
119 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, int size) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_local.h102 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
105 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd,
111 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
115 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd,
125 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin, argument
129 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd,
146 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, int size) argument
149 PUSH_DATA (push, 0x00000000 | (size << 18) | (subc << 13) | mthd);
153 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, int size) argument
156 PUSH_DATA (push, 0x40000000 | (size << 18) | (subc << 1
[all...]
/external/mksh/src/
H A Dmisc.c685 unsigned char c, subc; local
733 subc = *s++;
737 if (c == subc && ISMAGIC(*s) &&
962 unsigned char c, subc, lc; local
998 subc = *p++;
1004 if (c == subc && ISMAGIC(*p) &&
1018 if (ord(subc) == ORD(':')) {
1073 subc = 0;
1090 subc = *p++;
1096 if (c == subc
[all...]
/external/v8/src/ppc/
H A Dassembler-ppc.cc904 void Assembler::subc(Register dst, Register src1, Register src2, OEBit o, function in class:v8::internal::Assembler
/external/protobuf/php/ext/google/protobuf/
H A Dupb.c8603 void *subc; member in struct:upb_pb_encoder
8631 size_t n = upb_bytessink_putbuf(e->output_, e->subc, buf, len, NULL);
8858 upb_bytessink_start(e->output_, 0, &e->subc);
9058 e->subc = output->closure;
9176 void *subc; member in struct:upb_textprinter
9190 upb_bytessink_putbuf(p->output_, p->subc, " ", 2, NULL);
9196 upb_bytessink_putbuf(p->output_, p->subc, &ch, 1, NULL);
9215 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL);
9243 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL);
9269 ok = upb_bytessink_putbuf(p->output_, p->subc, st
[all...]
H A Dupb.h5538 bool Start(size_t size_hint, void **subc);
5539 size_t PutBuffer(void *subc, const char *buf, size_t len,
5589 void **subc) {
5592 *subc = s->closure;
5597 *subc = start(s->closure, upb_handlerattr_handlerdata(
5600 return *subc != NULL;
5603 UPB_INLINE size_t upb_bytessink_putbuf(upb_bytessink *s, void *subc, argument
5612 return putbuf(subc, upb_handlerattr_handlerdata(
5631 void *subc; local
5636 ret = upb_bytessink_start(sink, len, &subc);
5588 upb_bytessink_start(upb_bytessink *s, size_t size_hint, void **subc) argument
5872 Start(size_t size_hint, void **subc) argument
5875 PutBuffer(void *subc, const char *buf, size_t len, const BufferHandle *handle) argument
[all...]
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c9314 void *subc; member in struct:upb_pb_encoder
9342 size_t n = upb_bytessink_putbuf(e->output_, e->subc, buf, len, NULL);
9569 upb_bytessink_start(e->output_, 0, &e->subc);
9769 e->subc = output->closure;
9850 void *subc; member in struct:upb_textprinter
9864 upb_bytessink_putbuf(p->output_, p->subc, " ", 2, NULL);
9870 upb_bytessink_putbuf(p->output_, p->subc, &ch, 1, NULL);
9889 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL);
9917 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL);
9943 ok = upb_bytessink_putbuf(p->output_, p->subc, st
[all...]
H A Dupb.h5973 bool Start(size_t size_hint, void **subc);
5974 size_t PutBuffer(void *subc, const char *buf, size_t len,
6024 void **subc) {
6027 *subc = s->closure;
6032 *subc = start(s->closure, upb_handlerattr_handlerdata(
6035 return *subc != NULL;
6038 UPB_INLINE size_t upb_bytessink_putbuf(upb_bytessink *s, void *subc, argument
6047 return putbuf(subc, upb_handlerattr_handlerdata(
6066 void *subc; local
6071 ret = upb_bytessink_start(sink, len, &subc);
6023 upb_bytessink_start(upb_bytessink *s, size_t size_hint, void **subc) argument
6307 Start(size_t size_hint, void **subc) argument
6310 PutBuffer(void *subc, const char *buf, size_t len, const BufferHandle *handle) argument
[all...]

Completed in 903 milliseconds