Home
last modified time | relevance | path

Searched refs:value_end (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_flag_parser.h117 const char *value_end; in Parse() local
118 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
119 bool ok = *value_end == 0; in Parse()
132 const char *value_end; in Parse() local
133 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
134 bool ok = *value_end == 0; in Parse()
147 const char *value_end; in Parse() local
148 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
149 bool ok = *value_end == 0; in Parse()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_flag_parser.h82 const char *value_end; in Parse() local
83 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
84 bool ok = *value_end == 0; in Parse()
91 const char *value_end; in Parse() local
92 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
93 bool ok = *value_end == 0; in Parse()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h84 const char *value_end; in Parse() local
85 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
86 bool ok = *value_end == 0; in Parse()
93 const char *value_end; in Parse() local
94 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
95 bool ok = *value_end == 0; in Parse()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsginit.c1295 const char *value_end; in get_field() local
1299 value_end = strchr (value_start, '\n'); in get_field()
1300 if (value_end == NULL) in get_field()
1301 value_end = value_start + strlen (value_start); in get_field()
1303 value = (char *) xmalloc (value_end - value_start + 1); in get_field()
1304 memcpy (value, value_start, value_end - value_start); in get_field()
1305 value[value_end - value_start] = '\0'; in get_field()
1335 const char *value_end; in put_field() local
1338 value_end = strchr (value_start, '\n'); in put_field()
1339 if (value_end == NULL) in put_field()
[all …]
/netbsd-src/external/mpl/bind/dist/lib/isc/
H A Dpicohttpparser.c375 const char *value_end = value + value_len; in parse_headers() local
376 for (; value_end != value; --value_end) { in parse_headers()
377 const char c = *(value_end - 1); in parse_headers()
383 headers[*num_headers].value_len = value_end - value; in parse_headers()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dgettext-po.c341 const char *value_end; in po_header_field() local
345 value_end = strchr (value_start, '\n'); in po_header_field()
346 if (value_end == NULL) in po_header_field()
347 value_end = value_start + strlen (value_start); in po_header_field()
349 value = (char *) xmalloc (value_end - value_start + 1); in po_header_field()
350 memcpy (value, value_start, value_end - value_start); in po_header_field()
351 value[value_end - value_start] = '\0'; in po_header_field()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h571 op_iterator value_end() { return arg_end(); } in value_end() function
572 const_op_iterator value_end() const { return arg_end(); } in value_end() function
575 return make_range(value_begin(), value_end()); in value_operands()
578 return make_range(value_begin(), value_end()); in value_operands()
H A DCoroutines.cpp436 auto SI = Suspend->value_begin(), SE = Suspend->value_end(); in buildFrom()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h980 value_iterator value_end() const { return ValueList+NumValues; }
982 return llvm::make_range(value_begin(), value_end());
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp5013 ArrayRef<EVT> Res(Intr->value_begin() + 1, Intr->value_end()); in LowerBRCOND()