Searched refs:linelen (Results 1 - 11 of 11) sorted by relevance

/external/e2fsprogs/
H A Dwordwrap.pl11 $linelen = 0;
17 if ($linelen > 0) {
21 $linelen += $len;
22 if ($linelen > 78) {
24 $linelen = 1+$len;
/external/mksh/src/
H A Dedit.c3340 ssize_t linelen; member in struct:edstate
3523 undobuf.linelen = ebuf.linelen = 0;
3574 if (es->linelen == 0) {
3591 if (c == -1 || (ssize_t)LINE <= es->linelen)
3595 memcpy(buf, es->cbuf, es->linelen);
3597 buf[es->linelen++] = '\n';
3599 return (es->linelen);
3645 es->linelen = 0;
3654 es->linelen
[all...]
/external/openssl/crypto/asn1/
H A Dasn_mime.c103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
923 static int mime_bound_check(char *line, int linelen, char *bound, int blen) argument
925 if(linelen == -1) linelen = strlen(line);
928 if(blen + 2 > linelen) return 0;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsysinfo.cc358 const int linelen = strlen(line); local
359 const int bytes_to_read = sizeof(line)-1 - linelen;
361 chars_read = read(fd, line + linelen, bytes_to_read);
362 line[linelen + chars_read] = '\0';
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsysinfo.cc343 const int linelen = strlen(line); local
344 const int bytes_to_read = sizeof(line)-1 - linelen;
346 chars_read = read(fd, line + linelen, bytes_to_read);
347 line[linelen + chars_read] = '\0';
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.cpp830 int linelen = 0; local
831 while (i + linelen < len && text[i + linelen] != newlineCharacter)
832 linelen++;
834 if (linelen) {
835 lastLineMaxWidth = widthFromCache(f, i, linelen, leadWidth + lastLineMaxWidth, direction, 0, 0);
841 i += linelen;
/external/chromium_org/third_party/libxml/src/
H A Dxmlwriter.c1550 int linelen; local
1557 linelen = 0;
1587 if (linelen >= B64LINELEN) {
1592 linelen = 0;
1599 linelen += 4;
/external/libxml2/
H A Dxmlwriter.c1554 int linelen; local
1561 linelen = 0;
1591 if (linelen >= B64LINELEN) {
1596 linelen = 0;
1603 linelen += 4;
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js1041 function clipToLen(pos, linelen) {
1043 if (ch == null || ch > linelen) return Pos(pos.line, linelen);
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js1041 function clipToLen(pos, linelen) {
1043 if (ch == null || ch > linelen) return Pos(pos.line, linelen);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcodemirror.js1057 function clipToLen(pos, linelen) {
1059 if (ch == null || ch > linelen) return Pos(pos.line, linelen);

Completed in 830 milliseconds