Searched defs:attributes (Results 1 - 2 of 2) sorted by relevance

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

Completed in 48 milliseconds