/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_winsys.h | 50 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHDl() argument 53 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHDl() 59 PUSH_MTHDo(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHDo() argument 62 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHDo() 71 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHDs() argument 75 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHDs() 84 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHD() argument 89 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHD() 103 PUSH_RESRC(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_RESRC() argument 107 PUSH_MTHD(push, subc, mthd, bin, r->bo, r->offset + data, in PUSH_RESRC() [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_winsys.h | 74 NVC0_FIFO_PKHDR_SQ(int subc, int mthd, unsigned size) in NVC0_FIFO_PKHDR_SQ() argument 76 return 0x20000000 | (size << 16) | (subc << 13) | (mthd >> 2); in NVC0_FIFO_PKHDR_SQ() 80 NVC0_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) in NVC0_FIFO_PKHDR_NI() argument 82 return 0x60000000 | (size << 16) | (subc << 13) | (mthd >> 2); in NVC0_FIFO_PKHDR_NI() 86 NVC0_FIFO_PKHDR_IL(int subc, int mthd, uint16_t data) in NVC0_FIFO_PKHDR_IL() argument 89 return 0x80000000 | (data << 16) | (subc << 13) | (mthd >> 2); in NVC0_FIFO_PKHDR_IL() 93 NVC0_FIFO_PKHDR_1I(int subc, int mthd, unsigned size) in NVC0_FIFO_PKHDR_1I() argument 95 return 0xa0000000 | (size << 16) | (subc << 13) | (mthd >> 2); in NVC0_FIFO_PKHDR_1I() 113 BEGIN_NVC0(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) in BEGIN_NVC0() argument 118 PUSH_DATA (push, NVC0_FIFO_PKHDR_SQ(subc, mthd, size)); in BEGIN_NVC0() [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_winsys.h | 66 NV50_FIFO_PKHDR(int subc, int mthd, unsigned size) in NV50_FIFO_PKHDR() argument 68 return 0x00000000 | (size << 18) | (subc << 13) | mthd; in NV50_FIFO_PKHDR() 72 NV50_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) in NV50_FIFO_PKHDR_NI() argument 74 return 0x40000000 | (size << 18) | (subc << 13) | mthd; in NV50_FIFO_PKHDR_NI() 78 NV50_FIFO_PKHDR_L(int subc, int mthd) in NV50_FIFO_PKHDR_L() argument 80 return 0x00030000 | (subc << 13) | mthd; in NV50_FIFO_PKHDR_L() 98 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) in BEGIN_NV04() argument 103 PUSH_DATA (push, NV50_FIFO_PKHDR(subc, mthd, size)); in BEGIN_NV04() 107 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) in BEGIN_NI04() argument 112 PUSH_DATA (push, NV50_FIFO_PKHDR_NI(subc, mthd, size)); in BEGIN_NI04() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_local.h | 102 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHDl() argument 105 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHDl() 111 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHDs() argument 115 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHDs() 125 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin, in PUSH_MTHD() argument 129 nouveau_bufctx_mthd(BUFCTX(push), bin, (1 << 18) | (subc << 13) | mthd, in PUSH_MTHD() 146 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, int size) in BEGIN_NV04() argument 149 PUSH_DATA (push, 0x00000000 | (size << 18) | (subc << 13) | mthd); in BEGIN_NV04() 153 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, int size) in BEGIN_NI04() argument 156 PUSH_DATA (push, 0x40000000 | (size << 18) | (subc << 13) | mthd); in BEGIN_NI04() [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_video.h | 58 NV04_FIFO_PKHDR(int subc, int mthd, unsigned size) in NV04_FIFO_PKHDR() argument 60 return 0x00000000 | (size << 18) | (subc << 13) | mthd; in NV04_FIFO_PKHDR() 64 NV04_FIFO_PKHDR_NI(int subc, int mthd, unsigned size) in NV04_FIFO_PKHDR_NI() argument 66 return 0x40000000 | (size << 18) | (subc << 13) | mthd; in NV04_FIFO_PKHDR_NI() 70 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) in BEGIN_NV04() argument 73 PUSH_DATA (push, NV04_FIFO_PKHDR(subc, mthd, size)); in BEGIN_NV04() 77 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size) in BEGIN_NI04() argument 80 PUSH_DATA (push, NV04_FIFO_PKHDR_NI(subc, mthd, size)); in BEGIN_NI04() 84 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, in PUSH_MTHDl() argument 88 nouveau_bufctx_mthd(ctx, bin, NV04_FIFO_PKHDR(subc, mthd, 1), in PUSH_MTHDl()
|
/third_party/grpc/third_party/upb/upb/ |
D | sink.c | 5 void *subc; in upb_bufsrc_putbuf() local 9 ret = upb_bytessink_start(sink, len, &subc); in upb_bufsrc_putbuf() 11 ret = (upb_bytessink_putbuf(sink, subc, buf, len, &handle) >= len); in upb_bufsrc_putbuf()
|
D | sink.h | 409 void **subc) { in upb_bytessink_start() argument 412 *subc = s.closure; in upb_bytessink_start() 417 *subc = start(s.closure, in upb_bytessink_start() 420 return *subc != NULL; in upb_bytessink_start() 423 UPB_INLINE size_t upb_bytessink_putbuf(upb_bytessink s, void *subc, in upb_bytessink_putbuf() argument 432 return putbuf(subc, s.handler->table[UPB_STRING_SELECTOR].attr.handler_data, in upb_bytessink_putbuf() 477 bool Start(size_t size_hint, void **subc) { in Start() argument 478 return upb_bytessink_start(sink_, size_hint, subc); in Start() 481 size_t PutBuffer(void *subc, const char *buf, size_t len, in PutBuffer() argument 483 return upb_bytessink_putbuf(sink_, subc, buf, len, handle); in PutBuffer()
|
/third_party/grpc/third_party/upb/upb/pb/ |
D | textprinter.c | 26 void *subc; member 40 upb_bytessink_putbuf(p->output_, p->subc, " ", 2, NULL); in indent() 46 upb_bytessink_putbuf(p->output_, p->subc, &ch, 1, NULL); in endfield() 65 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL); in putescaped() 93 upb_bytessink_putbuf(p->output_, p->subc, dstbuf, dst - dstbuf, NULL); in putescaped() 119 ok = upb_bytessink_putbuf(p->output_, p->subc, str, len, NULL); in putf() 131 upb_bytessink_start(p->output_, 0, &p->subc); in textprinter_startmsg() 246 upb_bytessink_putbuf(p->output_, p->subc, "}", 1, NULL); in textprinter_endsubmsg()
|
D | encoder.c | 103 void *subc; member 131 size_t n = upb_bytessink_putbuf(e->output_, e->subc, buf, len, NULL); in putbuf() 357 upb_bytessink_start(e->output_, 0, &e->subc); in startmsg() 557 e->subc = output.closure; in upb_pb_encoder_create()
|
/third_party/mksh/ |
D | misc.c | 737 unsigned char c, subc; in has_globbing() local 785 subc = *s++; in has_globbing() 789 if (c == subc && ISMAGIC(*s) && in has_globbing() 1014 unsigned char c, subc, lc; in gmatch_cclass() local 1050 subc = *p++; in gmatch_cclass() 1056 if (c == subc && ISMAGIC(*p) && in gmatch_cclass() 1070 if (ord(subc) == ORD(':')) { in gmatch_cclass() 1125 subc = 0; in gmatch_cclass() 1142 subc = *p++; in gmatch_cclass() 1148 if (c == subc && ISMAGIC(*p) && in gmatch_cclass() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
D | MSP430InstrInfo.td | 549 defm SUBC : Arith<0b0111, "subc", sube, 0, [SR]>; 1015 def : Pat<(subc GR16:$src, GR16:$src2), 1017 def : Pat<(subc GR16:$src, (load addr:$src2)), 1019 def : Pat<(subc GR16:$src, imm:$src2), 1021 def : Pat<(store (subc (load addr:$dst), GR16:$src), addr:$dst), 1023 def : Pat<(store (subc (load addr:$dst), (i16 (load addr:$src))), addr:$dst), 1026 def : Pat<(subc GR8:$src, GR8:$src2), 1028 def : Pat<(subc GR8:$src, (load addr:$src2)), 1030 def : Pat<(subc GR8:$src, imm:$src2), 1032 def : Pat<(store (subc (load addr:$dst), GR8:$src), addr:$dst), [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrInfo.td | 348 defm SUB_F_ : ALUarith<0b010, "sub.f", subc, i32lo16z, i32hi16>; 354 def : Pat<(subc GPR:$Rs1, i32lo16z:$imm), 360 def : Pat<(subc GPR:$Rs1, i32hi16:$imm),
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.h | 5605 void **subc) { 5608 *subc = s.closure; 5613 *subc = start(s.closure, 5616 return *subc != NULL; 5619 UPB_INLINE size_t upb_bytessink_putbuf(upb_bytessink s, void *subc, 5628 return putbuf(subc, s.handler->table[UPB_STRING_SELECTOR].attr.handler_data, 5673 bool Start(size_t size_hint, void **subc) { 5674 return upb_bytessink_start(sink_, size_hint, subc); 5677 size_t PutBuffer(void *subc, const char *buf, size_t len, 5679 return upb_bytessink_putbuf(sink_, subc, buf, len, handle);
|
D | upb.c | 5978 void *subc; in upb_bufsrc_putbuf() local 5982 ret = upb_bytessink_start(sink, len, &subc); in upb_bufsrc_putbuf() 5984 ret = (upb_bytessink_putbuf(sink, subc, buf, len, &handle) >= len); in upb_bufsrc_putbuf() 8083 void *subc; member 8111 size_t n = upb_bytessink_putbuf(e->output_, e->subc, buf, len, NULL); in putbuf() 8337 upb_bytessink_start(e->output_, 0, &e->subc); in startmsg() 8541 e->subc = output.closure; in upb_pb_encoder_create() 8573 void *subc; member 8587 upb_bytessink_putbuf(p->output_, p->subc, " ", 2, NULL); in indent() 8593 upb_bytessink_putbuf(p->output_, p->subc, &ch, 1, NULL); in endfield() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
D | AVRInstrInfo.td | 2028 def : Pat<(subc i8:$src, i8:$src2), 2030 def : Pat<(subc i16:$src, i16:$src2), 2032 def : Pat<(subc i8:$src, imm:$src2), 2034 def : Pat<(subc i16:$src, imm:$src2),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1665 for (const Value *subc : c->operand_values()) { in isManifestConstant() local 1666 if (!isManifestConstant(cast<Constant>(subc))) in isManifestConstant()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcInstrAliases.td | 503 def : MnemonicAlias<"subc", "subx">, Requires<[HasV9]>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCInstr64Bit.td | 577 [(set i64:$rD, (subc imm64SExt16:$imm, i64:$rA))]>; 581 [(set i64:$rT, (subc i64:$rB, i64:$rA))]>,
|
D | PPCInstrInfo.td | 2322 [(set i32:$rD, (subc imm32SExt16:$imm, i32:$rA))]>; 2906 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>, 4560 def : InstAlias<"subc $rA, $rB, $rC", (SUBFC8 g8rc:$rA, g8rc:$rC, g8rc:$rB)>; 4561 def : InstAlias<"subc. $rA, $rB, $rC", (SUBFC8_rec g8rc:$rA, g8rc:$rC, g8rc:$rB)>;
|
/third_party/json/test/thirdparty/doctest/ |
D | doctest.h | 5256 void subcase_start(const SubcaseSignature& subc) override { 5258 subcasesStack.push_back(subc);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | Mips64InstrInfo.td | 860 def : MipsPat<(subc GPR64:$lhs, GPR64:$rhs),
|
D | MicroMipsInstrInfo.td | 1251 def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
|
D | MicroMips32r6InstrInfo.td | 1738 def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 381 def subc : SDNode<"ISD::SUBC" , SDTIntBinOp,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.td | 527 defm SUBCC : ADD_SUB_INT_32<"sub.cc", subc>; 531 defm SUBCCC : ADD_SUB_INT_32<"subc.cc", sube>;
|