Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 2 of 2) sorted by relevance

/art/compiler/llvm/
Dintrinsic_helper.cc158 std::vector< ::llvm::Attribute::AttrKind> attributes; in IntrinsicHelper() local
159 attributes.push_back(::llvm::Attribute::NoCapture); in IntrinsicHelper()
160 attributes.push_back(::llvm::Attribute::NoAlias); in IntrinsicHelper()
163 attributes); in IntrinsicHelper()
/art/runtime/
Dutils.cc100 pthread_attr_t attributes; in GetThreadStack() local
101 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__); in GetThreadStack()
102 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
103 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()
105 pthread_attr_t attributes; in GetThreadStack()
106 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__); in GetThreadStack()
107 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__); in GetThreadStack()
108 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); in GetThreadStack()
109 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); in GetThreadStack()