Searched refs:len (Results 26 - 37 of 37) sorted by path

12

/scripts/kconfig/
H A Dutil.c85 gs.len = 64;
96 gs.len = strlen(s) + 1;
107 gs->len = 0;
116 if (l > gs->len) {
118 gs->len = l;
H A Dzconf.tab.c_shipped2357 int len;
2361 len = p - str;
2362 if (len)
2363 fprintf(out, "%.*s", len, str);
2446 int len = strlen(menu->help);
2447 while (menu->help[--len] == '\n')
2448 menu->help[len] = 0;
H A Dzconf.y592 int len;
596 len = p - str;
597 if (len)
598 fprintf(out, "%.*s", len, str);
681 int len = strlen(menu->help);
682 while (menu->help[--len] == '\n')
683 menu->help[len] = 0;
/scripts/
H A Dkernel-doc1914 my $len = length($prototype);
1916 $len = 0; # skip the for-loop
1918 for (my $ix = 0; $ix < $len; $ix++) {
H A Drecordmcount.c436 int len; local
443 len = strlen(file);
444 if (len >= ftrace_size &&
445 strcmp(file + (len - ftrace_size), ftrace) == 0)
H A Dunifdef.c722 size_t len = cp - tline; local
723 if (fgets(tline + len, MAXLINE - len, input) == NULL) {
725 strcpy(tline + len, newline);
/scripts/mod/
H A Dfile2alias.c113 int len = strlen(str); local
115 if (str[len - 1] != '*')
116 strcat(str + len, "*");
615 int len; local
617 len = sprintf (alias, "of:N%sT%s",
622 sprintf (&alias[len], "%sC%s",
H A Dmodpost.c365 size_t len = 0; local
376 len++;
378 if (len > 4095)
1760 int len; local
1764 len = vsnprintf(tmp, SZ, fmt, ap);
1765 buf_write(buf, tmp, len);
1769 void buf_write(struct buffer *buf, const char *s, int len) argument
1771 if (buf->size - buf->pos < len) {
1772 buf->size += len + SZ;
1775 strncpy(buf->p + buf->pos, s, len);
[all...]
H A Dmodpost.h103 buf_write(struct buffer *buf, const char *s, int len);
H A Dsumversion.c170 const unsigned char *data, unsigned int len)
174 mctx->byte_count += len;
176 if (avail > len) {
178 data, len);
187 len -= avail;
189 while (len >= sizeof(mctx->block)) {
193 len -= sizeof(mctx->block);
196 memcpy(mctx->block, data, len);
199 static void md4_final_ascii(struct md4_ctx *mctx, char *out, unsigned int len) argument
221 snprintf(out, len, "
169 md4_update(struct md4_ctx *mctx, const unsigned char *data, unsigned int len) argument
230 parse_string(const char *file, unsigned long len, struct md4_ctx *md) argument
244 parse_comment(const char *file, unsigned long len) argument
259 unsigned long i, len; local
296 int len = strlen(objfile); local
403 unsigned long len; local
484 unsigned int len, full_len; local
[all...]
/scripts/rt-tester/
H A Drt-tester.py137 if not len(line):
143 if not parts or len(parts) < 1:
146 if len(parts[0]) == 0:
/scripts/tracing/
H A Ddraw_functrace.py79 while i < len(self._children):
80 if i != len(self._children) - 1:

Completed in 317 milliseconds

12