Home
last modified time | relevance | path

Searched refs:__cmp (Results 1 – 5 of 5) sorted by relevance

/external/libnetfilter_conntrack/src/conntrack/
Dcompare.c13 static int __cmp(int attr, in __cmp() function
97 if (!__cmp(ATTR_ICMP_ID, ct1, ct2, flags, cmp_icmp_id, true)) in cmp_orig_l4proto()
99 if (!__cmp(ATTR_ICMP_CODE, ct1, ct2, flags, cmp_icmp_code, true)) in cmp_orig_l4proto()
101 if (!__cmp(ATTR_ICMP_TYPE, ct1, ct2, flags, cmp_icmp_type, true)) in cmp_orig_l4proto()
109 if (!__cmp(ATTR_ORIG_PORT_SRC, ct1, ct2, in cmp_orig_l4proto()
112 if (!__cmp(ATTR_ORIG_PORT_DST, ct1, ct2, in cmp_orig_l4proto()
165 if (!__cmp(ATTR_ORIG_L3PROTO, ct1, ct2, flags, cmp_orig_l3proto, true)) in __cmp_orig()
167 if (!__cmp(ATTR_ORIG_L4PROTO, ct1, ct2, flags, cmp_orig_l4proto, true)) in __cmp_orig()
169 if (!__cmp(ATTR_ORIG_IPV4_SRC, ct1, ct2, flags, cmp_orig_ipv4_src, true)) in __cmp_orig()
171 if (!__cmp(ATTR_ORIG_IPV4_DST, ct1, ct2, flags, cmp_orig_ipv4_dst, true)) in __cmp_orig()
[all …]
/external/llvm-project/clang/lib/Headers/
D__clang_cuda_device_functions.h356 __DEVICE__ int __iAtomicCAS(int *__p, int __cmp, int __v) { in __iAtomicCAS() argument
357 return __nvvm_atom_cas_gen_i(__p, __cmp, __v); in __iAtomicCAS()
359 __DEVICE__ int __iAtomicCAS_block(int *__p, int __cmp, int __v) { in __iAtomicCAS_block() argument
360 return __nvvm_atom_cta_cas_gen_i(__p, __cmp, __v); in __iAtomicCAS_block()
362 __DEVICE__ int __iAtomicCAS_system(int *__p, int __cmp, int __v) { in __iAtomicCAS_system() argument
363 return __nvvm_atom_sys_cas_gen_i(__p, __cmp, __v); in __iAtomicCAS_system()
552 __DEVICE__ unsigned int __uAtomicCAS(unsigned int *__p, unsigned int __cmp, in __uAtomicCAS() argument
554 return __nvvm_atom_cas_gen_i((int *)__p, __cmp, __v); in __uAtomicCAS()
557 __uAtomicCAS_block(unsigned int *__p, unsigned int __cmp, unsigned int __v) { in __uAtomicCAS_block() argument
558 return __nvvm_atom_cta_cas_gen_i((int *)__p, __cmp, __v); in __uAtomicCAS_block()
[all …]
/external/libcxx/include/
Dcompare569 constexpr bool is_eq(weak_equality __cmp) noexcept { return __cmp == 0; }
572 constexpr bool is_neq(weak_equality __cmp) noexcept { return __cmp != 0; }
575 constexpr bool is_lt(partial_ordering __cmp) noexcept { return __cmp < 0; }
578 constexpr bool is_lteq(partial_ordering __cmp) noexcept { return __cmp <= 0; }
581 constexpr bool is_gt(partial_ordering __cmp) noexcept { return __cmp > 0; }
584 constexpr bool is_gteq(partial_ordering __cmp) noexcept { return __cmp >= 0; }
/external/llvm-project/clang/lib/Headers/cuda_wrappers/
Dalgorithm80 max(const __T &__a, const __T &__b, __Cmp __cmp) {
81 return __cmp(__a, __b) ? __b : __a;
94 min(const __T &__a, const __T &__b, __Cmp __cmp) {
95 return __cmp(__b, __a) ? __b : __a;
/external/llvm-project/libcxx/include/
Dcompare657 constexpr bool is_eq(weak_equality __cmp) noexcept { return __cmp == 0; }
660 constexpr bool is_neq(weak_equality __cmp) noexcept { return __cmp != 0; }
663 constexpr bool is_lt(partial_ordering __cmp) noexcept { return __cmp < 0; }
666 constexpr bool is_lteq(partial_ordering __cmp) noexcept { return __cmp <= 0; }
669 constexpr bool is_gt(partial_ordering __cmp) noexcept { return __cmp > 0; }
672 constexpr bool is_gteq(partial_ordering __cmp) noexcept { return __cmp >= 0; }