HomeSort by relevance Sort by last modified time
    Searched refs:sop (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/libevent/
select.c 97 static int select_resize(struct selectop *sop, int fdsz);
102 struct selectop *sop; local
108 if (!(sop = calloc(1, sizeof(struct selectop))))
111 select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask));
115 return (sop);
120 check_selectop(struct selectop *sop)
123 for (i = 0; i <= sop->event_fds; ++i) {
124 if (FD_ISSET(i, sop->event_readset_in)) {
125 assert(sop->event_r_by_fd[i]);
126 assert(sop->event_r_by_fd[i]->ev_events & EV_READ)
149 struct selectop *sop = arg; local
268 struct selectop *sop = arg; local
318 struct selectop *sop = arg; local
346 struct selectop *sop = arg; local
    [all...]
  /external/valgrind/main/none/tests/
sem.c 14 struct sembuf sop; local
25 sop.sem_num = 0;
26 sop.sem_op = 1;
27 sop.sem_flg = 0;
29 if (semop(semid, &sop, 1) < 0)
54 sop.sem_num = 0;
55 sop.sem_op = 0;
56 sop.sem_flg = 0;
61 if (semtimedop(semid, &sop, 1, &ts) < 0 && errno != EAGAIN)
69 sop.sem_num = 0
    [all...]
  /external/chromium_org/v8/src/compiler/
common-operator-unittest.cc 68 const SharedOperator& sop = GetParam(); local
71 EXPECT_EQ((common1.*sop.constructor)(), (common2.*sop.constructor)());
77 const SharedOperator& sop = GetParam(); local
78 const Operator* op = (common.*sop.constructor)();
80 EXPECT_EQ(sop.value_input_count, OperatorProperties::GetValueInputCount(op));
81 EXPECT_EQ(sop.effect_input_count,
83 EXPECT_EQ(sop.control_input_count,
86 sop.value_input_count + sop.effect_input_count + sop.control_input_count
99 const SharedOperator& sop = GetParam(); local
107 const SharedOperator& sop = GetParam(); local
    [all...]
  /external/llvm/lib/Support/
regcomp.c 60 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)
187 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
    [all...]
regex2.h 65 typedef unsigned long sop; /* strip operator */ typedef
72 #define SOP(op, opnd) ((op)|(opnd))
132 sop *strip; /* malloced area for strip */
regengine.inc 299 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;
598 while (m->g->strip[ss] != SOP(O_BACK, i))
857 sop s
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 59 sop *strip; /* malloced strip */
99 static void doemit(struct parse *, sop, size_t);
100 static void doinsert(struct parse *, sop, size_t, sopno);
101 static void dofwd(struct parse *, sopno, sop);
130 #define EMIT(op, sopnd) doemit(p, (sop)(op), (size_t)(sopnd))
131 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
133 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos)
179 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
    [all...]
regex2.h 62 typedef unsigned long sop; /* strip operator */ typedef
69 #define SOP(op, opnd) ((op)|(opnd))
129 sop *strip; /* malloced area for strip */
engine.c 294 sopno ss; /* start sop of current subRE */
295 sopno es; /* end sop of current subRE */
300 sopno ssub; /* start sop of subsubRE */
301 sopno esub; /* end sop of subsubRE */
478 sopno ss; /* start sop of current subRE */
480 sopno ssub; /* start sop of subsubRE */
481 sopno esub; /* end sop of subsubRE */
486 sop s;
589 while (m->g->strip[ss] != SOP(O_BACK, i))
846 sop s
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regex2.h 112 typedef u_int32_t sop; /* strip operator */ typedef
119 #define SOP(op, opnd) ((op)|(opnd))
181 sop *strip; /* malloced area for strip */
regcomp.c 112 sop *strip; /* malloced strip */
163 static void doemit(struct parse *p, sop op, sopno opnd);
164 static void doinsert(struct parse *p, sop op, sopno opnd, sopno pos);
199 #define EMIT(op, sopnd) doemit(p, (sop)(op), sopnd)
200 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
202 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos)
218 (p)->ssize * sizeof(sop))
270 p->strip = malloc(p->ssize * sizeof(sop));
    [all...]
engine.c 361 sopno ss; /* start sop of current subRE */
362 sopno es; /* end sop of current subRE */
367 sopno ssub; /* start sop of subsubRE */
368 sopno esub; /* end sop of subsubRE */
571 sopno ss; /* start sop of current subRE */
573 sopno ssub; /* start sop of subsubRE */
574 sopno esub; /* end sop of subsubRE */
579 sop s;
686 while (m->g->strip[ss] != SOP(O_BACK, i))
976 sop s
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
glxreply.c 104 __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen)
114 req->glxCode = sop;
  /external/mesa3d/src/glx/apple/
glxreply.c 104 __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen)
114 req->glxCode = sop;
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncStorageEngineTest.java 114 SyncOperation sop = new SyncOperation(account1, local
120 engine.insertIntoPending(sop);
128 assertEquals(sop.target.account, popRetrieved.target.account);
129 assertEquals(sop.target.provider, popRetrieved.target.provider);
130 assertEquals(sop.target.service, popRetrieved.target.service);
131 assertEquals(sop.target.userId, popRetrieved.target.userId);
132 assertEquals(sop.reason, popRetrieved.reason);
133 assertEquals(sop.syncSource, popRetrieved.syncSource);
134 assertEquals(sop.isExpedited(), popRetrieved.expedited);
135 assert(android.content.PeriodicSync.syncExtrasEquals(sop.extras, popRetrieved.extras))
142 SyncOperation sop = new SyncOperation(account1, local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
pixelstore.c 42 * \param sop Either \c X_GLsop_PixelStoref or \c X_GLsop_PixelStorei
49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname,
55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen);
  /external/mesa3d/src/glx/
pixelstore.c 42 * \param sop Either \c X_GLsop_PixelStoref or \c X_GLsop_PixelStorei
49 send_PixelStore(struct glx_context * gc, unsigned sop, GLenum pname,
55 GLubyte const *pc = __glXSetupSingleRequest(gc, sop, cmdlen);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_XML.py 142 sop = child.nsProp( 'sop', None )
148 if sop:
149 self.glx_sop = int(sop)
  /external/mesa3d/src/mapi/glapi/gen/
glX_XML.py 142 sop = child.nsProp( 'sop', None )
148 if sop:
149 self.glx_sop = int(sop)
  /external/valgrind/main/VEX/priv/
host_arm64_isel.c 1664 ARM64ShiftOp sop = 0; \/* invalid *\/ local
    [all...]
host_arm_isel.c 1266 ARMShiftOp sop = 0; \/* invalid *\/ local
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
indirect.h 63 struct glx_context * gc, GLint sop, GLint cmdlen );
    [all...]
indirect.c 137 __glXSetupSingleRequest( struct glx_context * gc, GLint sop, GLint cmdlen )
147 req->glxCode = sop;
    [all...]
  /external/chromium_org/third_party/d3/src/
d3.js     [all...]

Completed in 842 milliseconds