HomeSort by: relevance | last modified time | path
    Searched defs:lastpos (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl2/lvm2/dist/libdm/regex/
parse_rx.h 46 dm_bitset_t lastpos; member in struct:rx_node
  /src/crypto/external/apache2/openssl/dist/crypto/cms/
cms_att.c 61 int CMS_signed_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos)
63 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos);
67 int lastpos)
69 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos);
118 int lastpos, int type)
120 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
129 int lastpos)
131 return X509at_get_attr_by_NID(si->unsignedAttrs, nid, lastpos);
135 const ASN1_OBJECT *obj, int lastpos)
137 return X509at_get_attr_by_OBJ(si->unsignedAttrs, obj, lastpos);
217 int lastpos = -1; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_lib.c 170 int lastpos, i; local
181 lastpos = *idx + 1;
183 lastpos = 0;
184 if (lastpos < 0)
185 lastpos = 0;
186 for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) {
  /src/crypto/external/bsd/openssl/dist/crypto/cms/
cms_att.c 75 int CMS_signed_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos)
77 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos);
81 int lastpos)
83 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos);
132 int lastpos, int type)
134 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
143 int lastpos)
145 return X509at_get_attr_by_NID(si->unsignedAttrs, nid, lastpos);
149 const ASN1_OBJECT *obj, int lastpos)
151 return X509at_get_attr_by_OBJ(si->unsignedAttrs, obj, lastpos);
231 int lastpos = -1; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_lib.c 165 int lastpos, i; local
176 lastpos = *idx + 1;
178 lastpos = 0;
179 if (lastpos < 0)
180 lastpos = 0;
181 for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/cms/
cms_att.c 74 int CMS_signed_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos)
76 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos);
80 int lastpos)
82 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos);
129 int lastpos, int type)
131 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
140 int lastpos)
142 return X509at_get_attr_by_NID(si->unsignedAttrs, nid, lastpos);
146 const ASN1_OBJECT *obj, int lastpos)
148 return X509at_get_attr_by_OBJ(si->unsignedAttrs, obj, lastpos);
228 int lastpos = -1; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_lib.c 165 int lastpos, i; local
176 lastpos = *idx + 1;
178 lastpos = 0;
179 if (lastpos < 0)
180 lastpos = 0;
181 for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) {
  /src/sys/arch/bebox/stand/boot/
vga.c 52 int lastpos; variable
102 if (lastpos != pos) {
107 lastpos = pos;
  /src/sys/arch/prep/stand/boot/
vga.c 53 int lastpos; variable
104 if (lastpos != pos) {
109 lastpos = pos;
  /src/external/bsd/tre/dist/lib/
tre-ast.h 50 tre_pos_and_tags_t *lastpos; member in struct:__anon8177
  /src/external/gpl3/gcc/dist/libgfortran/runtime/
environ.c 267 static char *lastpos; /* Auxiliary pointer, for backing up. */ variable
364 lastpos = p;
425 p = lastpos;
  /src/external/gpl3/gcc.old/dist/libgfortran/runtime/
environ.c 267 static char *lastpos; /* Auxiliary pointer, for backing up. */ variable
364 lastpos = p;
425 p = lastpos;
  /src/external/bsd/nvi/dist/regex/
engine.c 80 RCHAR_T **lastpos; /* [nplus+1] */ member in struct:match
186 m->lastpos = NULL;
234 if (g->nplus > 0 && m->lastpos == NULL)
235 m->lastpos = (RCHAR_T **)malloc((g->nplus+1) *
237 if (g->nplus > 0 && m->lastpos == NULL) {
250 assert(g->nplus == 0 || m->lastpos != NULL);
296 if (m->lastpos != NULL)
297 free((char *)m->lastpos);
634 assert(m->lastpos != NULL);
636 m->lastpos[lev+1] = sp
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/src/
write-mo.c 281 size_t lastpos; local
295 lastpos = 0;
303 pre->segments[i].segptr = str + lastpos;
304 pre->segments[i].segsize = intervals[m][i].startpos - lastpos;
338 lastpos = intervals[m][i].endpos;
340 pre->segments[i].segptr = str + lastpos;
341 pre->segments[i].segsize = str_len - lastpos;
  /src/lib/libc/regex/
engine.c 98 const char **lastpos; /* [nplus+1] */ member in struct:match
290 m->lastpos = NULL;
351 if (g->nplus > 0 && m->lastpos == NULL)
352 m->lastpos = malloc((g->nplus+1) *
354 if (g->nplus > 0 && m->lastpos == NULL) {
366 assert(g->nplus == 0 || m->lastpos != NULL);
418 if (m->lastpos != NULL) {
419 free(__UNCONST(m->lastpos));
420 m->lastpos = NULL;
805 assert(m->lastpos != NULL)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
x509.h 699 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos);
701 int lastpos);
810 * NOTE: you should be passing -1, not 0 as lastpos. The functions that use
811 * lastpos, search after that position on.
813 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos);
815 int lastpos);
853 int nid, int lastpos); variable
855 const ASN1_OBJECT *obj, int lastpos); variable
857 int crit, int lastpos); variable
864 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
915 int lastpos); variable
917 const ASN1_OBJECT *obj, int lastpos); variable
937 const ASN1_OBJECT *obj, int lastpos, int type); variable
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
dfa.c 1619 Lastpos: The lastpos of a node is the set of positions that could
1622 * EMPTY leaves have empty lastpos.
1623 * The lastpos of a nonempty leaf is that leaf itself.
1624 * The lastpos of a QMARK, STAR, or PLUS node is the lastpos of its
1626 * The lastpos of a CAT node is the lastpos of its right argument, union
1627 the lastpos of the left if the right argument is nullable.
1628 * The lastpos of an OR node is the union of the lastpos of each argument
1654 position *lastpos; \/* Array where lastpos elements are stored. *\/ local
    [all...]
  /src/external/gpl2/grep/dist/src/
dfa.c 1640 Lastpos: The lastpos of a node is the set of positions that could
1643 * EMPTY leaves have empty lastpos.
1644 * The lastpos of a nonempty leaf is that leaf itself.
1645 * The lastpos of a QMARK, STAR, or PLUS node is the lastpos of its
1647 * The lastpos of a CAT node is the lastpos of its right argument, union
1648 the lastpos of the left if the right argument is nullable.
1649 * The lastpos of an OR node is the union of the lastpos of each argument
1675 position *lastpos; \/* Array where lastpos elements are stored. *\/ local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-gen-builtins.cc 718 int lastpos = pos - 1; local
719 while (lastpos < LINELEN - 1
720 && (isalnum (linebuf[lastpos + 1]) || linebuf[lastpos + 1] == '_'))
721 ++lastpos;
723 if (lastpos >= LINELEN - 1)
725 diag (lastpos, "line length overrun.\n");
729 if (lastpos < pos)
732 char *buf = (char *) malloc (lastpos - pos + 2);
733 memcpy (buf, &linebuf[pos], lastpos - pos + 1)
749 int lastpos = pos - 1; local
775 int lastpos = pos - 1; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-gen-builtins.cc 718 int lastpos = pos - 1; local
719 while (lastpos < LINELEN - 1
720 && (isalnum (linebuf[lastpos + 1]) || linebuf[lastpos + 1] == '_'))
721 ++lastpos;
723 if (lastpos >= LINELEN - 1)
725 diag (lastpos, "line length overrun.\n");
729 if (lastpos < pos)
732 char *buf = (char *) malloc (lastpos - pos + 2);
733 memcpy (buf, &linebuf[pos], lastpos - pos + 1)
749 int lastpos = pos - 1; local
775 int lastpos = pos - 1; local
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_wwv.c 487 long lastpos; /* last max position */ member in struct:sync
1337 sp->lastpos = sp->pos;
1338 epoch = (sp->pos - sp->lastpos) % WWV_MIN;
1346 sp->mepoch = sp->lastpos = sp->pos;
1348 sp->lastpos = sp->pos;
  /src/external/gpl2/groff/dist/src/roff/troff/
env.cpp 2604 hunits lastpos = 0; local
2607 lastpos = tem->pos;
2615 hunits base = lastpos;
2618 lastpos = tem->pos;
2624 assert(lastpos > 0);
2625 base += lastpos;

Completed in 53 milliseconds