| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_flag_parser.cc | 85 uptr value_start = ++pos_; local 91 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 97 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| sanitizer_flag_parser.cc | 85 uptr value_start = ++pos_; local 91 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 97 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_flag_parser.cpp | 97 uptr value_start = ++pos_; local 103 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 109 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| sanitizer_flag_parser.cpp | 97 uptr value_start = ++pos_; local 103 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 109 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| plugin.cc | 255 const char *ptr, *name_start = arg, *key_start = NULL, *value_start = NULL; local 282 value_start = ptr + 1; 301 if (!value_start) 322 if (value_start) 325 strncpy (value, value_start, value_len);
|
| plugin.cc | 255 const char *ptr, *name_start = arg, *key_start = NULL, *value_start = NULL; local 282 value_start = ptr + 1; 301 if (!value_start) 322 if (value_start) 325 strncpy (value, value_start, value_len);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_flag_parser.cpp | 99 uptr value_start = ++pos_; local 105 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 111 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| sanitizer_flag_parser.cpp | 99 uptr value_start = ++pos_; local 105 value = ll_strndup(buf_ + value_start + 1, pos_ - value_start - 1); 111 value = ll_strndup(buf_ + value_start, pos_ - value_start);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| plugin.cc | 257 const char *ptr, *name_start = arg, *key_start = NULL, *value_start = NULL; local 284 value_start = ptr + 1; 303 if (!value_start) 324 if (value_start) 327 strncpy (value, value_start, value_len);
|
| plugin.cc | 257 const char *ptr, *name_start = arg, *key_start = NULL, *value_start = NULL; local 284 value_start = ptr + 1; 303 if (!value_start) 324 if (value_start) 327 strncpy (value, value_start, value_len);
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| gettext-po.c | 340 const char *value_start; local 344 value_start = line + field_len + 2; 345 value_end = strchr (value_start, '\n'); 347 value_end = value_start + strlen (value_start); 349 value = (char *) xmalloc (value_end - value_start + 1); 350 memcpy (value, value_start, value_end - value_start); 351 value[value_end - value_start] = '\0';
|
| gettext-po.c | 340 const char *value_start; local 344 value_start = line + field_len + 2; 345 value_end = strchr (value_start, '\n'); 347 value_end = value_start + strlen (value_start); 349 value = (char *) xmalloc (value_end - value_start + 1); 350 memcpy (value, value_start, value_end - value_start); 351 value[value_end - value_start] = '\0';
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| msginit.c | 1294 const char *value_start; local 1298 value_start = line + len + 2; 1299 value_end = strchr (value_start, '\n'); 1301 value_end = value_start + strlen (value_start); 1303 value = (char *) xmalloc (value_end - value_start + 1); 1304 memcpy (value, value_start, value_end - value_start); 1305 value[value_end - value_start] = '\0'; 1334 const char *value_start; local [all...] |
| msginit.c | 1294 const char *value_start; local 1298 value_start = line + len + 2; 1299 value_end = strchr (value_start, '\n'); 1301 value_end = value_start + strlen (value_start); 1303 value = (char *) xmalloc (value_end - value_start + 1); 1304 memcpy (value, value_start, value_end - value_start); 1305 value[value_end - value_start] = '\0'; 1334 const char *value_start; local [all...] |
| /src/external/gpl3/gdb/dist/gdbserver/ |
| server.cc | 1674 const char *value_start = skip_spaces (end); local 1675 if (*value_start == '\0') 1679 const char *after_value = skip_to_space (value_start); 1686 std::string value (value_start, after_value - value_start);
|
| server.cc | 1674 const char *value_start = skip_spaces (end); local 1675 if (*value_start == '\0') 1679 const char *after_value = skip_to_space (value_start); 1686 std::string value (value_start, after_value - value_start);
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| server.cc | 1669 const char *value_start = skip_spaces (end); local 1670 if (*value_start == '\0') 1674 const char *after_value = skip_to_space (value_start); 1681 std::string value (value_start, after_value - value_start);
|
| server.cc | 1669 const char *value_start = skip_spaces (end); local 1670 if (*value_start == '\0') 1674 const char *after_value = skip_to_space (value_start); 1681 std::string value (value_start, after_value - value_start);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| breakpoint.c | 10320 const char *value_start; 10336 value_start = tok + 1; 10369 thr = parse_thread_id (value_start, &endp); 10370 if (value_start == endp) 10388 task = strtol (value_start, &tmp, 0); 10389 if (tmp == value_start) 10412 mask_value = parse_to_comma_and_eval (&value_start); 10312 const char *value_start; local
|
| breakpoint.c | 10320 const char *value_start; 10336 value_start = tok + 1; 10369 thr = parse_thread_id (value_start, &endp); 10370 if (value_start == endp) 10388 task = strtol (value_start, &tmp, 0); 10389 if (tmp == value_start) 10412 mask_value = parse_to_comma_and_eval (&value_start); 10312 const char *value_start; local
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| breakpoint.c | 10329 const char *value_start; 10345 value_start = tok + 1; 10378 thr = parse_thread_id (value_start, &endp); 10379 if (value_start == endp) 10397 task = strtol (value_start, &tmp, 0); 10398 if (tmp == value_start) 10421 mask_value = parse_to_comma_and_eval (&value_start); 10321 const char *value_start; local
|
| breakpoint.c | 10329 const char *value_start; 10345 value_start = tok + 1; 10378 thr = parse_thread_id (value_start, &endp); 10379 if (value_start == endp) 10397 task = strtol (value_start, &tmp, 0); 10398 if (tmp == value_start) 10421 mask_value = parse_to_comma_and_eval (&value_start); 10321 const char *value_start; local
|