HomeSort by relevance Sort by last modified time
    Searched refs:ISSET (Results 1 - 25 of 28) sorted by null

1 2

  /bionic/libc/bionic/
fts.c 63 #define ISSET(opt) (sp->fts_options & (opt))
66 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
96 if (ISSET(FTS_LOGICAL))
124 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW), -1);
167 if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = open(".", O_RDONLY, 0)) < 0)
227 rfd = ISSET(FTS_NOCHDIR) ? -1 : sp->fts_rfd;
266 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
291 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
305 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) {
317 if (sp->fts_child && ISSET(FTS_NAMEONLY))
    [all...]
  /external/llvm/lib/Support/
regexec.c 63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0)
89 #undef ISSET
110 #define ISSET(v, n) ((v)[n])
regengine.inc 743 if (ISSET(st, stopst) || p == stop)
758 if (ISSET(st, stopst))
826 if (ISSET(st, stopst))
979 if (ISSET(st, i)) {
  /external/swiftshader/third_party/LLVM/lib/Support/
regexec.c 63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0)
89 #undef ISSET
110 #define ISSET(v, n) ((v)[n])
regengine.inc 743 if (ISSET(st, stopst) || p == stop)
758 if (ISSET(st, stopst))
826 if (ISSET(st, stopst))
979 if (ISSET(st, i)) {
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regexec.c 63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0)
89 #undef ISSET
110 #define ISSET(v, n) ((v)[n])
regengine.inc 743 if (ISSET(st, stopst) || p == stop)
758 if (ISSET(st, stopst))
826 if (ISSET(st, stopst))
979 if (ISSET(st, i)) {
  /external/ipsec-tools/src/racoon/
var.h 42 #define ISSET(exp, bit) (((exp) & (bit)) == (bit))
isakmp_quick.c 334 if (!ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E)) {
621 if (ISSET(iph2->flags, ISAKMP_FLAG_C)) {
653 if (ISSET(iph2->flags, ISAKMP_FLAG_C)) {
711 if (!ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E)) {
858 if (!ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E)) {
    [all...]
isakmp_agg.c 1340 if (ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E))
    [all...]
isakmp_ident.c 688 if (!ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E)) {
1359 if (!ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E)) {
    [all...]
isakmp_inf.c 143 encrypted = ISSET(((struct isakmp *)msg0->v)->flags, ISAKMP_FLAG_E);
1003 if (ISSET(isakmp->flags, ISAKMP_FLAG_E)) {
    [all...]
isakmp_cfg.c 1252 if (ISSET(isakmp->flags, ISAKMP_FLAG_E)) {
    [all...]
isakmp.c 453 if (ISSET(isakmp->flags, ISAKMP_FLAG_C)) {
715 if (ISSET(isakmp->flags, ISAKMP_FLAG_C))
    [all...]
  /external/mksh/src/
var.c 105 if ((vq = global(vp->name))->flag & ISSET)
144 tp->flag = DEFINED|ISSET;
278 vp->flag |= ISSET|INTEGER;
286 vp->flag &= ~(ISSET|INTEGER);
299 vp->flag &= ~(ISSET|INTEGER);
384 if (!(vp->flag&ISSET))
477 vq->flag &= ~(ISSET|ALLOC);
492 vq->flag |= ISSET;
504 vtemp->flag = (ISSET|INTEGER);
512 vq->flag |= ISSET;
    [all...]
exec.c 448 vp_pipest->flag = DEFINED | ISSET | INTEGER | RDONLY |
606 (ext_cmd->flag & ISSET)))
703 if (!(tp->flag & ISSET)) {
717 !(ftp->flag & ISSET)) {
820 if (!(tp->flag&ISSET)) {
1072 if (tp->flag & ISSET)
1088 tp->flag &= ~(ISSET|ALLOC|FKSH);
1099 tp->flag |= (ISSET|ALLOC);
1190 if (tp && !(tp->flag & ISSET)) {
1203 if (tp && (tp->flag & ISSET) &
    [all...]
funcs.c 671 if (tp && !(tp->flag & ISSET))
699 if (!(tp->flag & ISSET)) {
710 if (tp->flag & ISSET) {
843 if ((ap->flag & (ISSET|xflag)) == (ISSET|xflag)) {
873 if (ap != NULL && (ap->flag&ISSET)) {
893 ap->flag &= ~(ALLOC|ISSET);
902 ap->flag |= ALLOC|ISSET;
904 ap->flag &= ~ISSET;
958 ap->flag &= ~(ALLOC|ISSET);
    [all...]
eval.c 361 v.flag = DEFINED|ISSET|INTEGER;
1151 if (vp->flag & (ISSET|ARRAY))
1154 if (vp->flag & ISSET)
1317 if (!(vp->flag&ISSET))
    [all...]
expr.c 670 vp->flag = ISSET|INTEGER;
686 (vp->flag & (ISSET|INTEGER|EXPRLVALUE)) == (ISSET|INTEGER))
jobs.c 1268 vp->flag = DEFINED | ISSET | INTEGER | RDONLY | ARRAY | INT_U;
1285 vp->flag = DEFINED | ISSET | INTEGER | RDONLY |
    [all...]
syn.c 845 p->flag |= DEFINED|ISSET;
lex.c 1033 (p->flag & ISSET)) {
    [all...]
main.c 441 if (!(vp->flag & ISSET) ||
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regexec.c 114 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0)
140 #undef ISSET
161 #define ISSET(v, n) ((v)[n])
engine.c 840 if (ISSET(st, stopst) || p == stop)
855 if (ISSET(st, stopst))
933 if (ISSET(st, stopst))
1114 if (ISSET(st, i)) {

Completed in 929 milliseconds

1 2