HomeSort by relevance Sort by last modified time
    Searched full:slen (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/clearsilver/cgi/
html.h 34 NEOERR *convert_text_html_alloc (const char *src, int slen, char **out);
35 NEOERR *convert_text_html_alloc_options (const char *src, int slen,
38 NEOERR *html_escape_alloc (const char *src, int slen, char **out);
39 NEOERR *html_strip_alloc(const char *src, int slen, char **out);
html.c 25 static int has_space_formatting(const char *src, int slen)
32 for (x = 0; x < slen; x++)
103 static NEOERR *split_and_convert (const char *src, int slen,
159 while ((x < slen) && !((email_match.rm_so == -1) && (url_match.rm_so == -1)))
173 if (x < slen)
207 if (x < slen)
238 while (x < slen)
265 x = slen;
528 NEOERR *convert_text_html_alloc (const char *src, int slen,
531 return nerr_pass(convert_text_html_alloc_options(src, slen, out, NULL))
    [all...]
  /external/clearsilver/util/
neo_rand.h 19 int neo_rand_string (char *s, int slen);
20 int neo_rand_word (char *s, int slen);
  /external/openssl/crypto/rsa/
rsa_pss.c 74 const EVP_MD *Hash, const unsigned char *EM, int sLen)
86 * Negative sLen has special meanings:
87 * -1 sLen == hLen
91 if (sLen == -1) sLen = hLen;
92 else if (sLen == -2) sLen = -2;
93 else if (sLen < -2)
111 if (emLen < (hLen + sLen + 2)) /* sLen can be small negative *
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
PSSSigner.java 30 private int sLen;
42 * @param sLen the length of the salt to use (in bytes).
47 int sLen)
49 this(cipher, digest, sLen, TRAILER_IMPLICIT);
55 int sLen,
61 this.sLen = sLen;
62 this.salt = new byte[sLen];
63 this.mDash = new byte[8 + sLen + hLen];
145 if (emBits < (8 * hLen + 8 * sLen + 9)
    [all...]
  /bionic/libc/string/
strndup.c 33 size_t slen = (size_t)strlen(s); local
34 int len = slen < n ? slen : n;
  /external/openssl/crypto/asn1/
asn1_mac.h 111 c.slen = length;
125 (((c.inf&1) == 0)?(c.slen <= 0): \
126 (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
131 if (func(&(b),&c.p,c.slen) == NULL) \
133 c.slen-=(c.p-c.q);
138 if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL) \
140 c.slen-=(c.p-c.q);
145 if (func(&(b),&c.p,c.slen) < 0) \
147 c.slen-=(c.p-c.q);
150 if ((c.slen != 0) && ((M_ASN1_next & (~V_ASN1_CONSTRUCTED))
    [all...]
a_set.c 186 c.inf=ASN1_get_object(&c.p,&c.slen,&c.tag,&c.xclass,c.max-c.p);
198 if ((c.slen+c.p) > c.max)
206 c.slen=length+ *pp-c.p;
207 c.max=c.p+c.slen;
215 if ((s=func(NULL,&c.p,c.slen,c.max-c.p)) == NULL) */
216 if ((s=d2i(NULL,&c.p,c.slen)) == NULL)
evp_asn1.c 162 if ((ai=d2i_ASN1_INTEGER(NULL,&c.p,c.slen)) == NULL) goto err;
163 c.slen-=(c.p-c.q);
165 if ((os=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL) goto err;
166 c.slen-=(c.p-c.q);
a_d2i_fp.c 190 c.inf=ASN1_get_object(&(c.p),&(c.slen),&(c.tag),&(c.xclass),
211 else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC))
222 /* suck in c.slen bytes of data */
223 want=(int)c.slen;
245 off+=(int)c.slen;
  /external/openssl/include/openssl/
asn1_mac.h 111 c.slen = length;
125 (((c.inf&1) == 0)?(c.slen <= 0): \
126 (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
131 if (func(&(b),&c.p,c.slen) == NULL) \
133 c.slen-=(c.p-c.q);
138 if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL) \
140 c.slen-=(c.p-c.q);
145 if (func(&(b),&c.p,c.slen) < 0) \
147 c.slen-=(c.p-c.q);
150 if ((c.slen != 0) && ((M_ASN1_next & (~V_ASN1_CONSTRUCTED))
    [all...]
  /external/clearsilver/util/test/
hdftest.c 16 int rand_name (char *s, int slen)
23 neo_rand_word(s, slen);
33 if (rl && slen - l - rl > 1 && !strchr(buf, '.')) {
34 snprintf(s + l, slen - l, ".%s", buf);
  /external/icu4c/samples/legacy/
newcol.cpp 27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
oldcol.cpp 28 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) {
34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
  /external/openssl/crypto/pkcs7/
example.c 138 if ((os1=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL)
140 c.slen-=(c.p-c.q);
143 if ((os2=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL)
145 c.slen-=(c.p-c.q);
305 if ((os1=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL)
307 c.slen-=(c.p-c.q);
310 if ((os2=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL)
312 c.slen-=(c.p-c.q);
  /external/icu4c/test/cintltst/
nfsprep.c 216 int32_t pLen=0, sLen=0, reqLen=0,
247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status);
255 sLen = nfs4_prepare(suffix, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status);
258 reqLen = pLen+sLen+1 /* for the delimiter */;
264 memmove(dest+pLen, s, sLen);
  /frameworks/base/libs/ui/
EventRecurrence.cpp 341 if (name##Count != 0 || NO_ERROR != parse_int_list(s, slen, \
364 const size_t slen = i-start; local
366 String8 thestring(String16(s, slen));
372 lhsIndex = match_proc(LHSPROC, s, slen);
386 index = match_proc(FREQPROC, s, slen);
393 until.setTo(String16(s, slen));
397 || NO_ERROR != parse_int(s, slen,
404 || NO_ERROR != parse_int(s, slen,
420 parse_int_list(s, slen, &bydayCount,
450 index = match_proc(WEEKDAYPROC, s, slen);
    [all...]
  /system/extras/tests/bionic/libc/common/
test_udp.c 44 int s, i, slen=sizeof(si_other); local
89 if (recvfrom(s, buf, BUFLEN, 0, (struct sockaddr*)&si_other, (socklen_t*)&slen)==-1)
113 if (sendto(s, buf, BUFLEN, 0, (struct sockaddr*)&si_other, slen)==-1)
  /external/icu4c/test/intltest/
mnkytst.cpp 82 int32_t slen = checkValue((rand() - source.length()) % source.length()); local
86 source.extract(MIN(s, slen), MAX(s, slen), subs);
157 int32_t slen = checkValue((rand() - source.length()) % source.length()); local
161 source.extract(MIN(s, slen), MAX(s, slen), subs);
tscoll.h 52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
  /external/iptables/extensions/
libipt_comment.c 35 int slen = strlen(s); local
37 if (slen >= IPT_MAX_COMMENT_LEN) {
libipt_string.c 89 int i=0, slen, sindex=0, schar; local
93 slen = strlen(s);
95 if (slen == 0) {
100 while (i < slen) {
115 if (i+1 >= slen)
122 if (i+1 >= slen) {
130 if (i+1 >= slen) {
134 if (i+2 >= slen) {
  /system/core/adb/
utils.c 42 int slen = strlen(s); local
44 return buff_addb(buff, buffEnd, s, slen);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 114 static NJ_CHAR *get_string(NJ_CLASS *iwnn, NJ_DIC_HANDLE handle, NJ_UINT16 que_id, NJ_UINT8 *slen);
115 static NJ_CHAR *get_hyouki(NJ_CLASS *iwnn, NJ_DIC_HANDLE handle, NJ_UINT16 que_id, NJ_UINT8 *slen);
510 NJ_UINT8 slen; local
530 str = get_string(iwnn, handle, que_id, &slen);
535 que_yomilen = slen;
543 str = get_hyouki(iwnn, handle, que_id, &slen);
548 que_hyoukilen = slen;
601 NJ_UINT8 slen; local
629 str = get_string(iwnn, handle, que_id, &slen);
638 que_len = slen;
1205 NJ_UINT8 slen; local
1770 NJ_UINT8 slen; local
1809 NJ_UINT8 slen; local
1845 NJ_UINT8 slen; local
1959 NJ_UINT8 slen; local
2318 NJ_UINT8 slen; local
    [all...]
  /bionic/libc/stdio/
mktemp.c 45 mkstemps(char *path, int slen)
49 return (_gettemp(path, &fd, 0, slen) ? fd : -1);
85 _gettemp(char *path, int *doopen, int domkdir, int slen)
99 trv -= slen;

Completed in 64 milliseconds

1 2 3 4