Home
last modified time | relevance | path

Searched refs:sop (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/libevent/
Dselect.c97 static int select_resize(struct selectop *sop, int fdsz);
102 struct selectop *sop; in select_init() local
108 if (!(sop = calloc(1, sizeof(struct selectop)))) in select_init()
111 select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask)); in select_init()
115 return (sop); in select_init()
120 check_selectop(struct selectop *sop) in check_selectop() argument
123 for (i = 0; i <= sop->event_fds; ++i) { in check_selectop()
124 if (FD_ISSET(i, sop->event_readset_in)) { in check_selectop()
125 assert(sop->event_r_by_fd[i]); in check_selectop()
126 assert(sop->event_r_by_fd[i]->ev_events & EV_READ); in check_selectop()
[all …]
/external/valgrind/main/none/tests/
Dsem.c14 struct sembuf sop; in main() local
25 sop.sem_num = 0; in main()
26 sop.sem_op = 1; in main()
27 sop.sem_flg = 0; in main()
29 if (semop(semid, &sop, 1) < 0) in main()
54 sop.sem_num = 0; in main()
55 sop.sem_op = 0; in main()
56 sop.sem_flg = 0; in main()
61 if (semtimedop(semid, &sop, 1, &ts) < 0 && errno != EAGAIN) in main()
69 sop.sem_num = 0; in main()
[all …]
/external/llvm/lib/Support/
Dregcomp.c60 sop *strip; /* malloced strip */
100 static void doemit(struct parse *, sop, size_t);
101 static void doinsert(struct parse *, sop, size_t, sopno);
102 static void dofwd(struct parse *, sopno, sop);
131 #define EMIT(op, sopnd) doemit(p, (sop)(op), (size_t)(sopnd))
132 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
134 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos) argument
187 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp()
1324 (char *)(p->strip + start), (size_t)len*sizeof(sop)); in dupl()
1337 doemit(struct parse *p, sop op, size_t opnd) in doemit()
[all …]
Dregex2.h65 typedef unsigned long sop; /* strip operator */ typedef
132 sop *strip; /* malloced area for strip */
Dregengine.inc299 sopno ss; /* start sop of current subRE */
300 sopno es; /* end sop of current subRE */
305 sopno ssub; /* start sop of subsubRE */
306 sopno esub; /* end sop of subsubRE */
487 sopno ss; /* start sop of current subRE */
489 sopno ssub; /* start sop of subsubRE */
490 sopno esub; /* end sop of subsubRE */
495 sop s;
857 sop s;
/external/mesa3d/src/glx/apple/
Dglxreply.c104 __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen)
114 req->glxCode = sop;
/external/chromium_org/third_party/mesa/src/src/glx/apple/
Dglxreply.c104 __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen)
114 req->glxCode = sop;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
DglX_XML.py142 sop = child.nsProp( 'sop', None )
148 if sop:
149 self.glx_sop = int(sop)
Dgl_API.dtd67 sop NMTOKEN #IMPLIED attribute
123 sop - Opcode value for "single" commands
/external/mesa3d/src/mapi/glapi/gen/
DglX_XML.py142 sop = child.nsProp( 'sop', None )
148 if sop:
149 self.glx_sop = int(sop)
Dgl_API.dtd67 sop NMTOKEN #IMPLIED attribute
123 sop - Opcode value for "single" commands
/external/mesa3d/src/glx/
Dpixelstore.c49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname, in send_PixelStore() argument
55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen); in send_PixelStore()
/external/chromium_org/third_party/mesa/src/src/glx/
Dpixelstore.c49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname, in send_PixelStore() argument
55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen); in send_PixelStore()
/external/llvm/lib/Target/NVPTX/
DNVPTXVector.td477 SDNode an=add, SDNode mn=mul, NVPTXInst sop=NOP,
484 sop>,
491 sop>,
495 multiclass VMADV2Only<string asmstr, NVPTXRegClass regclass, NVPTXInst sop=NOP,
501 (mul regclass:$a, regclass:$b), regclass:$c))], sop>,
504 multiclass VFMADV2Only<string asmstr, NVPTXRegClass regclass, NVPTXInst sop=NOP,
510 (fmul regclass:$a, regclass:$b), regclass:$c))], sop>,
845 class Vec_Move<string asmstr, NVPTXRegClass vclass, NVPTXInst sop=NOP>
848 [], sop>;
926 class Vec_Select<NVPTXRegClass vclass, string asmstr, NVPTXInst sop>
[all …]
/external/valgrind/main/VEX/priv/
Dhost_arm64_isel.c1664 ARM64ShiftOp sop = 0; /* invalid */ in iselIntExpr_R_wrk() local
1717 case Iop_Shr64: sop = ARM64sh_SHR; goto sh_binop; in iselIntExpr_R_wrk()
1718 case Iop_Sar64: sop = ARM64sh_SAR; goto sh_binop; in iselIntExpr_R_wrk()
1719 case Iop_Shl64: case Iop_Shl32: sop = ARM64sh_SHL; goto sh_binop; in iselIntExpr_R_wrk()
1724 addInstr(env, ARM64Instr_Shift(dst, argL, argR, sop)); in iselIntExpr_R_wrk()
Dhost_arm_isel.c1266 ARMShiftOp sop = 0; /* invalid */ in iselIntExpr_R_wrk() local
1297 case Iop_Shl32: sop = ARMsh_SHL; goto sh_binop; in iselIntExpr_R_wrk()
1298 case Iop_Shr32: sop = ARMsh_SHR; goto sh_binop; in iselIntExpr_R_wrk()
1299 case Iop_Sar32: sop = ARMsh_SAR; goto sh_binop; in iselIntExpr_R_wrk()
1304 addInstr(env, ARMInstr_Shift(sop, dst, argL, argR)); in iselIntExpr_R_wrk()
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
Dindirect.h63 struct glx_context * gc, GLint sop, GLint cmdlen );
Dindirect.c137 __glXSetupSingleRequest( struct glx_context * gc, GLint sop, GLint cmdlen ) in __glXSetupSingleRequest() argument
147 req->glxCode = sop; in __glXSetupSingleRequest()
/external/chromium_org/third_party/d3/src/
Dd3.js6785 …vim = previousSibling, vom = node.parent.children[0], sip = vip._tree.mod, sop = vop._tree.mod, si…
6794 sop += shift;
6799 sop += vop._tree.mod;
6803 vop._tree.mod += sim - sop;
/external/bison/tests/
Dexisting.at1854 /* The rest of these rules are a compatibility sop. */
/external/chromium_org/third_party/sqlite/src/test/
Dfts1porter.test19022 sop sop
19026 sops sop