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

/external/libdrm/
H A Dxf86atomic.h108 static inline int atomic_add_unless(atomic_t *v, int add, int unless) argument
112 while (c != unless && (old = atomic_cmpxchg(v, c, c + add)) != c)
114 return c == unless;
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2095 /// Example matches Y (matcher = cxxRecordDecl(unless(hasName("X"))))
2102 const internal::VariadicOperatorMatcherFunc<1, 1> unless = { member in namespace:clang::ast_matchers
3730 /// unless(stmt(isInTemplateInstantiation()))

Completed in 73 milliseconds