Home
last modified time | relevance | path

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

123

/external/libpng/contrib/tools/
Dchkfmt83 line_length=100;;
88 line_length=132;;
91 line_length=96;;
94 line_length=80;;
104 splt="`fold -$line_length "$file".$$ | diff -c "$file".$$ -`"
/external/libchrome/base/
Denvironment.cc156 size_t line_length = ParseEnvLine(line, &key); in AlterEnvironment() local
161 result.append(line, line_length); in AlterEnvironment()
163 cur_env += line_length; in AlterEnvironment()
196 size_t line_length = ParseEnvLine(env[i], &key); in AlterEnvironment() local
202 value_storage.append(env[i], line_length); in AlterEnvironment()
/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/freetype/src/base/
Dftstroke.c766 FT_Fixed line_length; /* length of last lineto */ member
986 FT_Fixed line_length ) in ft_stroker_inside() argument
1003 if ( !border->movable || line_length == 0 || in ft_stroker_inside()
1014 stroker->line_length >= min_length && in ft_stroker_inside()
1015 line_length >= min_length ); in ft_stroker_inside()
1051 FT_Fixed line_length ) in ft_stroker_outside() argument
1160 if ( line_length == 0 ) in ft_stroker_outside()
1191 if ( line_length == 0 ) in ft_stroker_outside()
1211 FT_Fixed line_length ) in ft_stroker_process_corner() argument
1229 error = ft_stroker_inside( stroker, inside_side, line_length ); in ft_stroker_process_corner()
[all …]
/external/pdfium/third_party/freetype/src/base/
Dftstroke.c776 FT_Fixed line_length; /* length of last lineto */ member
996 FT_Fixed line_length ) in ft_stroker_inside() argument
1013 if ( !border->movable || line_length == 0 || in ft_stroker_inside()
1024 stroker->line_length >= min_length && in ft_stroker_inside()
1025 line_length >= min_length ); in ft_stroker_inside()
1061 FT_Fixed line_length ) in ft_stroker_outside() argument
1170 if ( line_length == 0 ) in ft_stroker_outside()
1201 if ( line_length == 0 ) in ft_stroker_outside()
1221 FT_Fixed line_length ) in ft_stroker_process_corner() argument
1239 error = ft_stroker_inside( stroker, inside_side, line_length ); in ft_stroker_process_corner()
[all …]
/external/toybox/toys/pending/
Dlsof.c130 size_t line_length = 0; in scan_proc_net_file() local
134 if (!getline(&line, &line_length, fp)) return 0; // Skip header. in scan_proc_net_file()
136 while (getline(&line, &line_length, fp) > 0) { in scan_proc_net_file()
334 size_t line_length = 0; in visit_maps() local
340 while (getline(&line, &line_length, fp) > 0) { in visit_maps()
/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/mesa3d/src/gallium/winsys/sw/fbdev/
Dfbdev_sw_winsys.c224 fbdev->rows = fbdev->finfo.smem_len / fbdev->finfo.line_length; in fbdev_create_sw_winsys()
225 fbdev->stride = fbdev->finfo.line_length; in fbdev_create_sw_winsys()
/external/chromium-trace/catapult/third_party/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/vixl/
DCPPLINT.cfg45 filter=+whitespace/line_length
/external/autotest/scheduler/
Drdb.py370 line_length = len(hosts)
372 (float(failed_leasing)/line_length) * 100)
/external/wpa_supplicant_8/src/wps/
Dwps_upnp_ssdp.c92 static int line_length(const char *l) in line_length() function
535 data += line_length(data); in ssdp_parse_msearch()
538 for (; *data != '\0'; data += line_length(data)) { in ssdp_parse_msearch()
/external/mesa3d/src/gallium/state_trackers/vega/
Dbezier.c140 len = len + line_length(bez->x1, bez->y1, bez->x2, bez->y2); in add_if_close()
141 len = len + line_length(bez->x2, bez->y2, bez->x3, bez->y3); in add_if_close()
142 len = len + line_length(bez->x3, bez->y3, bez->x4, bez->y4); in add_if_close()
144 chord = line_length(bez->x1, bez->y1, bez->x4, bez->y4); in add_if_close()
Dmatrix.h418 static INLINE VGfloat line_length(VGfloat x1, VGfloat y1, in line_length() function
/external/libdrm/include/drm/
Dvia_drm.h261 __u32 line_length; member
/external/kernel-headers/original/uapi/drm/
Dvia_drm.h263 __u32 line_length; member
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc568 string::size_type line_length = in ~MemoryOutputStream() local
570 memcpy(target_ptr, data_.data() + data_pos, line_length); in ~MemoryOutputStream()
571 target_ptr += line_length; in ~MemoryOutputStream()
572 data_pos += line_length; in ~MemoryOutputStream()
/external/kernel-headers/original/uapi/linux/
Dfb.h167 __u32 line_length; /* length of a line in bytes */ member
/external/libevent/
Dhttp.c1727 size_t line_length; in evhttp_parse_firstline() local
1729 line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF); in evhttp_parse_firstline()
1739 line_length > req->evcon->max_headers_size) { in evhttp_parse_firstline()
1744 req->headers_size = line_length; in evhttp_parse_firstline()
1794 size_t line_length; in evhttp_parse_headers() local
1795 while ((line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF)) in evhttp_parse_headers()
1799 req->headers_size += line_length; in evhttp_parse_headers()
/external/opencv3/modules/viz/include/opencv2/viz/
Dwidgets.hpp660 WTrajectorySpheres(InputArray path, double line_length = 0.05, double radius = 0.007,
/external/opencv3/modules/viz/src/
Dshapes.cpp1026 cv::viz::WTrajectorySpheres::WTrajectorySpheres(InputArray _path, double line_length, double radius… in WTrajectorySpheres() argument
1059 if(norm(lvec) > line_length) in WTrajectorySpheres()
1060 lvec = normalize(lvec) * line_length; in WTrajectorySpheres()
/external/mockftpserver/tags/1.2.3/.settings/
Dorg.eclipse.jdt.core.prefs70 org.eclipse.jdt.core.formatter.comment.line_length=100
/external/mockftpserver/tags/1.2/.settings/
Dorg.eclipse.jdt.core.prefs70 org.eclipse.jdt.core.formatter.comment.line_length=100
/external/mockftpserver/tags/2.5/.settings/
Dorg.eclipse.jdt.core.prefs70 org.eclipse.jdt.core.formatter.comment.line_length=100
/external/mockftpserver/tags/2.0-rc1/.settings/
Dorg.eclipse.jdt.core.prefs70 org.eclipse.jdt.core.formatter.comment.line_length=100

123