Searched refs:stringlen (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_reverse_complement.rb12 stringlen=seq.length
13 0.step(stringlen-1,60) {|x| print seq.slice(x,60) , "\n"}
/macosx-10.10/tcpdump-61/tcpdump/
H A Dsmbutil.c28 static u_int32_t stringlen; variable
587 stringlen = buf[0];
588 printf("%u", stringlen);
594 stringlen = reverse ? EXTRACT_16BITS(buf) :
596 printf("%u", stringlen);
602 stringlen = reverse ? EXTRACT_32BITS(buf) :
604 printf("%u", stringlen);
660 TCHECK2(*buf, stringlen);
661 printf("%-*.*s", (int)stringlen, (int)stringlen, bu
[all...]
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_paramhlp.c64 size_t stringlen = 0; local
74 if((ptr = realloc(string, stringlen+buflen+1)) == NULL) {
79 strcpy(string+stringlen, buffer);
80 stringlen += buflen;
H A Dtool_urlglob.c583 size_t stringlen = 0; local
655 if(appendlen + stringlen >= allocsize) {
659 allocsize = (appendlen + stringlen) * 2;
667 memcpy(&target[stringlen], appendthis, appendlen);
668 stringlen += appendlen;
670 target[stringlen]= '\0';
/macosx-10.10/autofs-246/automountd/
H A Dautod_mount.c70 uint32_t stringlen; local
73 stringlen = (uint32_t)strlen(string);
75 stringlen = 0;
76 return ((uint32_t)sizeof (uint32_t) + stringlen);
82 uint32_t stringlen; local
85 stringlen = (uint32_t)strlen(string);
86 memcpy(outbuf, &stringlen, sizeof (uint32_t));
88 memcpy(outbuf, string, stringlen);
89 outbuf += stringlen;
91 stringlen
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dversados.c70 int stringlen; /* Len of string table (valid end of pass1). */ member in struct:versados_data_struct
262 VDATA (abfd)->stringlen += strlen (name) + 1;
297 VDATA (abfd)->stringlen += strlen (name) + 1;
460 VDATA (abfd)->stringlen = 0;
519 VDATA (abfd)->stringlen += strlen (esdid->section->name) + 1;
529 amt = VDATA (abfd)->stringlen;
533 || (VDATA (abfd)->strings == NULL && VDATA (abfd)->stringlen > 0))
/macosx-10.10/autofs-246/autofs_kext/
H A Dauto_subr.c776 uint32_t stringlen; local
782 memcpy(&stringlen, *inbufp, sizeof (uint32_t));
785 if (stringlen == 0xFFFFFFFF) {
789 if (*bytes_leftp < stringlen) {
793 MALLOC(*strp, char *, stringlen + 1, M_AUTOFS, M_WAITOK);
798 memcpy(*strp, *inbufp, stringlen);
799 (*strp)[stringlen] = '\0';
800 *inbufp += stringlen;
801 *bytes_leftp -= stringlen;
/macosx-10.10/zsh-61/zsh/Src/
H A Dpattern.c2014 * string is metafied; stringlen is the raw string length, and
2041 pattryrefs(Patprog prog, char *string, int stringlen, int unmetalen, argument
2060 if (stringlen < 0)
2061 stringlen = strlen(string);
2062 origlen = stringlen;
2074 unmetalen = ztrsub(string + stringlen, string);
2088 && (needfullpath || unmetalen != stringlen)) {
2131 stringlen = unmetalen;
2137 patinend = patinstart + stringlen;
2161 int lendiff = stringlen
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dxpointer.c2453 int stringlen; /* in bytes */ local
2467 stringlen = xmlStrlen(string);
2469 while (stringlen > 0) {
2470 if ((cur == *end) && (pos + stringlen > *endindex))
2475 if (len >= pos + stringlen) {
2476 match = (!xmlStrncmp(&cur->content[pos], string, stringlen));
2481 stringlen, pos + 1);
2486 *endindex = pos + stringlen;
2503 stringlen -= sub;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxpointer.c2457 int stringlen; /* in bytes */ local
2470 stringlen = xmlStrlen(string);
2472 while (stringlen > 0) {
2473 if ((cur == *end) && (pos + stringlen > *endindex))
2478 if (len >= pos + stringlen) {
2479 match = (!xmlStrncmp(&cur->content[pos], string, stringlen));
2484 stringlen, pos + 1);
2489 *endindex = pos + stringlen;
2506 stringlen -= sub;
/macosx-10.10/xnu-2782.1.97/bsd/netkey/
H A Dkey.c5154 int stringlen,
5161 len = PFKEY_ALIGN8(sizeof(struct sadb_ident)) + PFKEY_ALIGN8(stringlen);
5180 stringlen);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/GL/
H A Dglext.h7937 GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string);
7941 GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string);
7944 typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string);
7948 typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string);

Completed in 413 milliseconds