Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/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()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinAttributes.h415 ElementIterator<T> value_end() const {
446 ElementIterator<T> value_end() const {
470 ElementIterator<StringRef> value_end() const {
482 value_end<Attribute>()};
489 AttributeElementIterator value_end() const {
522 return {value_end<Attribute>()};
542 BoolElementIterator value_end() const {
563 IntElementIterator value_end() const {
582 ComplexIntElementIterator value_end() const {
600 FloatElementIterator value_end() const {
[all …]
H A DBuiltinAttributeInterfaces.td102 auto it = attr.value_begin<uint64_t>(), e = attr.value_end<uint64_t>();
124 auto it = *safeIt, e = attr.value_end<uint64_t>();
352 return {Attribute::getType(), value_begin<T>(), value_end<T>()};
357 DefaultValueCheckT<T, iterator<T>> value_end() const {
380 DerivedAttrValueIterator<T> value_end() const {
381 return {value_end<Attribute>(), nullptr};
393 value_end<T>());
/llvm-project-15.0.7/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.cpp354 auto SI = Suspend->value_begin(), SE = Suspend->value_end(); in buildFrom()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h993 value_iterator value_end() const { return ValueList+NumValues; }
995 return llvm::make_range(value_begin(), value_end());
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp411 nested.value_end<Attribute>()); in getConstantAsAttr()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp5206 ArrayRef<EVT> Res(Intr->value_begin() + 1, Intr->value_end()); in LowerBRCOND()