Home
last modified time | relevance | path

Searched refs:line_length (Results 1 – 25 of 92) sorted by relevance

1234

/external/tensorflow/tensorflow/python/keras/utils/
Dlayer_utils.py111 def print_summary(model, line_length=None, positions=None, print_fn=None): argument
164 line_length = line_length or 65
167 positions = [int(line_length * p) for p in positions]
171 line_length = line_length or 98
174 positions = [int(line_length * p) for p in positions]
192 print_fn('_' * line_length)
194 print_fn('=' * line_length)
262 print_fn('=' * line_length)
264 print_fn('_' * line_length)
276 print_fn('_' * line_length)
/external/libpng/contrib/tools/
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/libkmsxx/utils/
Dfbtest.cpp37 var.yres_virtual * fix.line_length, in main()
44 ptr, var.yres_virtual * fix.line_length, fix.line_length, 0); in main()
50 fix.line_length); in main()
/external/OpenCL-CTS/test_conformance/compiler/
Dtest_build_helpers.cpp73 size_t line_length = strlen(sample_kernel_code_single_line[0]); in test_load_program_source() local
77 context, 1, sample_kernel_code_single_line, &line_length, &error); in test_load_program_source()
85 if (length != line_length + 1) in test_load_program_source()
89 length, line_length + 1); in test_load_program_source()
431 size_t line_length = strlen(sample_kernel_code_single_line[0]); in test_get_program_source() local
444 if (length != line_length + 1 && online_compilation) in test_get_program_source()
453 if (strlen(buffer) != line_length && online_compilation) in test_get_program_source()
462 if (strlen(buffer) != line_length && online_compilation) in test_get_program_source()
467 if (length != line_length + 1 && online_compilation) in test_get_program_source()
/external/libchrome/base/
Denvironment.cc155 size_t line_length = ParseEnvLine(line, &key); in AlterEnvironment() local
160 result.append(line, line_length); in AlterEnvironment()
162 cur_env += line_length; in AlterEnvironment()
195 size_t line_length = ParseEnvLine(env[i], &key); in AlterEnvironment() local
201 value_storage.append(env[i], line_length); in AlterEnvironment()
/external/cpuinfo/src/linux/
Dmultiline.c87 const size_t line_length = (size_t) (line_end - line_start); in cpuinfo_linux_parse_multiline_file() local
88 memmove(buffer, line_start, line_length); in cpuinfo_linux_parse_multiline_file()
89 data_start = &buffer[line_length]; in cpuinfo_linux_parse_multiline_file()
/external/pdfium/core/fxcodec/basic/
Dbasicmodule.cpp327 uint32_t line_length = 0; in A85Encode() local
337 line_length++; in A85Encode()
344 line_length += 5; in A85Encode()
346 if (line_length >= 75) { // Add a return. in A85Encode()
349 line_length = 0; in A85Encode()
/external/compiler-rt/lib/sanitizer_common/scripts/
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/
Dtest_gzip.py173 line_length = 0
175 L = f.readline(line_length)
176 if not L and line_length != 0: break
177 self.assertTrue(len(L) <= line_length)
178 line_length = (line_length + 1) % 50
/external/freetype/src/base/
Dftstroke.c767 FT_Fixed line_length; /* length of last lineto */ member
972 FT_Fixed line_length ) in ft_stroker_inside() argument
989 if ( !border->movable || line_length == 0 || in ft_stroker_inside()
1003 stroker->line_length >= min_length && in ft_stroker_inside()
1004 line_length >= min_length ); in ft_stroker_inside()
1038 FT_Fixed line_length ) in ft_stroker_outside() argument
1139 if ( line_length == 0 ) in ft_stroker_outside()
1170 if ( line_length == 0 ) in ft_stroker_outside()
1190 FT_Fixed line_length ) in ft_stroker_process_corner() argument
1208 error = ft_stroker_inside( stroker, inside_side, line_length ); in ft_stroker_process_corner()
[all …]
/external/vboot_reference/cgpt/
Dcgpt_find.c224 size_t line_length = 0; in scan_real_devs() local
226 while (getline(&line, &line_length, fp) != -1) { in scan_real_devs()
248 while (getline(&line, &line_length, fp) != -1) { in scan_real_devs()
/external/toybox/toys/pending/
Dlsof.c114 size_t line_length = 0; in scan_proc_net_file() local
118 if (!getline(&line, &line_length, fp)) return; // Skip header. in scan_proc_net_file()
120 while (getline(&line, &line_length, fp) > 0) { in scan_proc_net_file()
336 size_t line_length = 0; in visit_maps() local
342 while (getline(&line, &line_length, fp) > 0) { in visit_maps()
/external/python/apitools/apitools/base/py/
Dgzip_test.py202 line_length = 0
204 L = f.readline(line_length)
205 if not L and line_length != 0:
207 self.assertTrue(len(L) <= line_length)
208 line_length = (line_length + 1) % 50
/external/python/cpython2/Modules/_io/
Diobase.c630 Py_ssize_t line_length; in iobase_readlines() local
644 line_length = PyObject_Size(line); in iobase_readlines()
646 if (line_length < 0) { in iobase_readlines()
649 if (line_length > hint - length) in iobase_readlines()
651 length += line_length; in iobase_readlines()
/external/python/cpython3/Modules/_io/
Diobase.c715 Py_ssize_t line_length; in _io__IOBase_readlines_impl() local
729 line_length = PyObject_Size(line); in _io__IOBase_readlines_impl()
731 if (line_length < 0) { in _io__IOBase_readlines_impl()
734 if (line_length > hint - length) in _io__IOBase_readlines_impl()
736 length += line_length; in _io__IOBase_readlines_impl()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/
Dcssmin.py192 def wrap_css_lines(css, line_length): argument
199 if char == '}' and (i - line_start >= line_length):
/external/python/cpython3/Lib/test/
Dtest_gzip.py230 line_length = 0
232 L = f.readline(line_length)
233 if not L and line_length != 0: break
234 self.assertTrue(len(L) <= line_length)
235 line_length = (line_length + 1) % 50
/external/ImageMagick/scripts/
Dtxt2html513 ($line_length < $short_line_length) &&
876 $line_length = length($line); # Do this before tags go in
/external/wpa_supplicant_8/src/wps/
Dwps_upnp_ssdp.c92 static int line_length(const char *l) in line_length() function
529 data += line_length(data); in ssdp_parse_msearch()
532 for (; *data != '\0'; data += line_length(data)) { in ssdp_parse_msearch()
/external/libdrm/include/drm/
Dvia_drm.h265 __u32 line_length; member
/external/kernel-headers/original/uapi/drm/
Dvia_drm.h264 __u32 line_length; member
/external/igt-gpu-tools/include/drm-uapi/
Dvia_drm.h264 __u32 line_length; member
/external/llvm-project/compiler-rt/lib/sanitizer_common/scripts/
Dcheck_lint.sh22 COMMON_LIT_TEST_LINT_FILTER=-whitespace/indent,-whitespace/line_length,-runtime/arrays,-readability…
/external/openscreen/osp/impl/discovery/mdns/
Dmdns_responder_adapter_impl.cc177 uint8_t line_length = data[total_pos]; in ParseTxtResponse() local
178 if ((line_length > kMaxDnsStringLength) || in ParseTxtResponse()
179 (total_pos + line_length >= length)) { in ParseTxtResponse()
183 &data[total_pos + line_length + 1]); in ParseTxtResponse()
184 total_pos += line_length + 1; in ParseTxtResponse()
/external/kernel-headers/original/uapi/linux/
Dfb.h168 __u32 line_length; /* length of a line in bytes */ member

1234