Searched refs:line_length (Results 1 - 25 of 26) sorted by relevance

12

/external/toybox/toys/pending/
H A Dfmt.c34 int cols = 0, is_first = 1, indent_end = 0, line_length; local
36 while ((line_length = getline(&line, &allocated_length, fp)) > 0) {
39 while (b < line_length && isspace(line[b])) b++;
40 if (b == line_length) {
49 for (; b < line_length; b = e + 1) {
51 for (e = b + 1; e < line_length && !isspace(line[e]);) e++;
52 if (e >= line_length) break;
H A Dlsof.c114 size_t line_length = 0; local
118 if (!getline(&line, &line_length, fp)) return; // Skip header.
120 while (getline(&line, &line_length, fp) > 0) {
336 size_t line_length = 0; local
342 while (getline(&line, &line_length, fp) > 0) {
/external/libpng/contrib/tools/
H A Dchkfmt90 line_length=100;;
95 line_length=132;;
98 line_length=96;;
101 line_length=80;;
111 splt="`fold -$line_length "$file".$$ | diff -c "$file".$$ -`"
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
H A Dlayer_utils.py41 def print_summary(model, line_length=None, positions=None, print_fn=None):
46 line_length: Total length of printed lines
93 line_length = line_length or 65
96 positions = [int(line_length * p) for p in positions]
100 line_length = line_length or 98
103 positions = [int(line_length * p) for p in positions]
120 print_fn('_' * line_length)
122 print_fn('=' * line_length)
[all...]
/external/libchrome/base/
H A Denvironment.cc157 size_t line_length = ParseEnvLine(line, &key); local
162 result.append(line, line_length);
164 cur_env += line_length;
197 size_t line_length = ParseEnvLine(env[i], &key); local
203 value_storage.append(env[i], line_length);
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcheck_lint.sh24 ASAN_LIT_TEST_LINT_FILTER=${ASAN_TEST_LINT_FILTER},-whitespace/line_length
27 TSAN_LIT_TEST_LINT_FILTER=${TSAN_TEST_LINT_FILTER},-whitespace/line_length
30 LSAN_LIT_TEST_LINT_FILTER=${LSAN_RTL_LINT_FILTER},-whitespace/line_length
/external/python/cpython2/Lib/test/
H A Dtest_gzip.py172 line_length = 0
174 L = f.readline(line_length)
175 if not L and line_length != 0: break
176 self.assertTrue(len(L) <= line_length)
177 line_length = (line_length + 1) % 50
/external/vboot_reference/cgpt/
H A Dcgpt_find.c224 size_t line_length = 0; local
226 while (getline(&line, &line_length, fp) != -1) {
248 while (getline(&line, &line_length, fp) != -1) {
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec.cpp1488 uint32_t line_length = 0; local
1498 line_length++;
1505 line_length += 5;
1507 if (line_length >= 75) { // Add a return.
1510 line_length = 0;
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/
H A Dcssmin.py192 def wrap_css_lines(css, line_length):
199 if char == '}' and (i - line_start >= line_length):
/external/freetype/src/base/
H A Dftstroke.c777 FT_Fixed line_length; /* length of last lineto */ member in struct:FT_StrokerRec_
997 FT_Fixed line_length )
1012 /* lines are long enough (line_length is zero for curves). */
1014 if ( !border->movable || line_length == 0 ||
1025 stroker->line_length >= min_length &&
1026 line_length >= min_length );
1062 FT_Fixed line_length )
1170 /* (line_length is zero for curves) */
1171 if ( line_length == 0 )
1201 /* (line_length i
1304 FT_Fixed line_length; local
[all...]
/external/kernel-headers/original/uapi/drm/
H A Dvia_drm.h264 __u32 line_length; member in struct:drm_via_dmablit
/external/libdrm/include/drm/
H A Dvia_drm.h261 __u32 line_length; member in struct:drm_via_dmablit
/external/autotest/scheduler/
H A Drdb.py372 line_length = len(hosts)
374 (float(failed_leasing)/line_length) * 100)
/external/python/cpython3/Lib/test/
H A Dtest_gzip.py222 line_length = 0
224 L = f.readline(line_length)
225 if not L and line_length != 0: break
226 self.assertTrue(len(L) <= line_length)
227 line_length = (line_length + 1) % 50
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp_ssdp.c92 static int line_length(const char *l) function
529 data += line_length(data);
532 for (; *data != '\0'; data += line_length(data)) {
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp_ssdp.c92 static int line_length(const char *l) function
529 data += line_length(data);
532 for (; *data != '\0'; data += line_length(data)) {
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp_ssdp.c92 static int line_length(const char *l) function
529 data += line_length(data);
532 for (; *data != '\0'; data += line_length(data)) {
/external/kernel-headers/original/uapi/linux/
H A Dfb.h168 __u32 line_length; /* length of a line in bytes */ member in struct:fb_fix_screeninfo
/external/ImageMagick/scripts/
H A Dtxt2html80 # started adding tags. ($line_length)
513 ($line_length < $short_line_length) &&
876 $line_length = length($line); # Do this before tags go in
/external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
H A Dtopology.py1275 def summary(self, line_length=None, positions=None, print_fn=None):
1279 line_length: Total length of printed lines
1291 line_length=line_length,
/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc685 string::size_type line_length = local
687 memcpy(target_ptr, data_.data() + data_pos, line_length);
688 target_ptr += line_length;
689 data_pos += line_length;
/external/libevent/
H A Dhttp.c1983 size_t line_length; local
1985 line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF);
1995 line_length > req->evcon->max_headers_size) {
2000 req->headers_size = line_length;
2057 size_t line_length; local
2058 while ((line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF))
2062 req->headers_size += line_length;
/external/python/cpython3/Tools/clinic/
H A Dclinic.py4056 line_length = len(''.join(text))
4057 indent = " " * line_length
4059 nonlocal line_length
4066 if line_length + len(s) >= 72:
4069 line_length = len(indent)
4071 line_length += len(s)
/external/valgrind/include/vki/
H A Dvki-linux.h2136 __vki_u32 line_length; /* length of a line in bytes */ member in struct:vki_fb_fix_screeninfo

Completed in 947 milliseconds

12