Home
last modified time | relevance | path

Searched refs:desired (Results 1 – 25 of 718) sorted by relevance

12345678910>>...29

/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/
H A Dstdatomic.h126 #define atomic_init(obj, desired) __c11_atomic_init(obj, desired) argument
128 #define atomic_store_explicit(obj, desired, order) \ argument
129 __c11_atomic_store(obj, desired, order)
138 #define atomic_compare_exchange_strong_explicit(obj, expected, desired, succ, \ argument
140 __c11_atomic_compare_exchange_strong_explicit(obj, expected, desired, \
142 #define atomic_compare_exchange_weak_explicit(obj, expected, desired, succ, \ argument
144 __c11_atomic_compare_exchange_weak_explicit(obj, expected, desired, \
146 #define atomic_exchange_explicit(obj, desired, order) \ argument
147 __c11_atomic_exchange_explicit(obj, desired, order)
149 #define atomic_init(obj, desired) (*obj = desired) argument
[all …]
/netbsd-src/external/mpl/dhcp/bind/include/isc/
H A Dstdatomic.h124 #define atomic_init(obj, desired) __c11_atomic_init(obj, desired) argument
126 #define atomic_store_explicit(obj, desired, order) \ argument
127 __c11_atomic_store(obj, desired, order)
136 #define atomic_compare_exchange_strong_explicit(obj, expected, desired, succ, \ argument
138 __c11_atomic_compare_exchange_strong_explicit(obj, expected, desired, \
140 #define atomic_compare_exchange_weak_explicit(obj, expected, desired, succ, \ argument
142 __c11_atomic_compare_exchange_weak_explicit(obj, expected, desired, \
144 #define atomic_exchange_explicit(obj, desired, order) \ argument
147 #define atomic_init(obj, desired) (*obj = desired) argument
149 #define atomic_store_explicit(obj, desired, order) \ argument
[all …]
/netbsd-src/external/mpl/bind/dist/lib/isc/include/isc/
H A Dstdatomic.h
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A Dstdatomic.h117 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) argument
123 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) argument
126 …ompare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, exp… argument
129 …c_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expe… argument
/netbsd-src/external/bsd/file/dist/tests/
H A Dtest.c86 char *desired = NULL; in main() local
148 desired = slurp(fp, &desired_len); in main()
151 if (strcmp(result, desired) != 0) { in main()
155 desired_len, desired); in main()
160 free(desired); in main()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d39 immutable desired = b.length + delta; in expand() local
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
49 assert(newSize >= desired); in expand()
51 b = b.ptr[0 .. desired]; in expand()
/netbsd-src/sys/dev/dtv/
H A Ddtv_math.c188 uint32_t desired = (uint32_t)(log10((double)x) in main() local
191 int32_t err_abs = actual - desired; in main()
197 x, desired, actual, err_abs, err_rel); in main()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d44 immutable desired = b.length + delta; in expand() local
45 if (desired > curLength) // check to see if the current block can't hold the data in expand()
47 immutable sizeRequest = desired - curLength; in expand()
54 assert(newSize >= desired); in expand()
56 b = b.ptr[0 .. desired]; in expand()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Datomic.c194 void *desired, int success, int failure) { in __atomic_compare_exchange_c() argument
197 *(type*)desired, success, failure) in __atomic_compare_exchange_c()
203 memcpy(ptr, desired, size); in __atomic_compare_exchange_c()
283 int __atomic_compare_exchange_##n(type *ptr, type *expected, type desired,\
286 return __c11_atomic_compare_exchange_strong((_Atomic(type)*)ptr, expected, desired,\
291 *ptr = desired;\
/netbsd-src/external/bsd/jemalloc/dist/include/jemalloc/internal/
H A Datomic_msvc.h90 type *expected, type desired, atomic_memory_order_t success_mo, \
95 (ATOMIC_INTERLOCKED_REPR(lg_size))desired; \
109 type *expected, type desired, atomic_memory_order_t success_mo, \
113 desired, success_mo, failure_mo); \
/netbsd-src/external/bsd/jemalloc/include/jemalloc/internal/
H A Datomic_msvc.h90 type *expected, type desired, atomic_memory_order_t success_mo, \
95 (ATOMIC_INTERLOCKED_REPR(lg_size))desired; \
109 type *expected, type desired, atomic_memory_order_t success_mo, \
113 desired, success_mo, failure_mo); \
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64InstrGISel.td271 def : Pat<(atomic_cmp_swap_8 GPR64:$addr, GPR32:$desired, GPR32:$new),
272 (CMP_SWAP_8 GPR64:$addr, GPR32:$desired, GPR32:$new)>;
274 def : Pat<(atomic_cmp_swap_16 GPR64:$addr, GPR32:$desired, GPR32:$new),
275 (CMP_SWAP_16 GPR64:$addr, GPR32:$desired, GPR32:$new)>;
277 def : Pat<(atomic_cmp_swap_32 GPR64:$addr, GPR32:$desired, GPR32:$new),
278 (CMP_SWAP_32 GPR64:$addr, GPR32:$desired, GPR32:$new)>;
280 def : Pat<(atomic_cmp_swap_64 GPR64:$addr, GPR64:$desired, GPR64:$new),
281 (CMP_SWAP_64 GPR64:$addr, GPR64:$desired, GPR64:$new)>;
/netbsd-src/external/apache2/llvm/dist/clang/utils/
H A Dconvert_arm_neon.py64 def get_resize(cur, desired): argument
66 while cur < desired:
69 while cur > desired:
/netbsd-src/common/lib/libc/atomic/
H A Datomic_c11_compare_exchange_cas_32.c45 void *expected, uint32_t desired, in __atomic_compare_exchange_4() argument
56 const uint32_t prev = atomic_cas_32(mem, old, desired); in __atomic_compare_exchange_4()
H A Datomic_c11_compare_exchange_cas_16.c45 void *expected, uint16_t desired, in __atomic_compare_exchange_2() argument
56 const uint16_t prev = atomic_cas_16(mem, old, desired); in __atomic_compare_exchange_2()
H A Datomic_c11_compare_exchange_cas_8.c45 void *expected, uint8_t desired, in __atomic_compare_exchange_1() argument
56 const uint8_t prev = atomic_cas_8(mem, old, desired); in __atomic_compare_exchange_1()
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/gcn/
H A Datomic.c64 TYPE desired, bool weak, \
77 newword |= ((unsigned int) desired) << ptrshift; \
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
H A Dgkrb5_err.et23 error_code KG_CCACHE_NOMATCH, "Principal in credential cache does not match desired name"
24 error_code KG_KEYTAB_NOMATCH, "No principal in keytab matches desired name"
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dbucketizer.d98 const desired = b.length + delta; in Bucketizer() local
99 if (available < desired) return false; in Bucketizer()
100 b = b.ptr[0 .. desired]; in Bucketizer()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dvec.c160 vec_prefix::calculate_allocation_1 (unsigned alloc, unsigned desired) in calculate_allocation_1() argument
163 gcc_assert (alloc < desired); in calculate_allocation_1()
176 if (alloc < desired) in calculate_allocation_1()
177 alloc = desired; in calculate_allocation_1()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dvec.cc150 vec_prefix::calculate_allocation_1 (unsigned alloc, unsigned desired) in calculate_allocation_1() argument
153 gcc_assert (alloc < desired); in calculate_allocation_1()
166 if (alloc < desired) in calculate_allocation_1()
167 alloc = desired; in calculate_allocation_1()
/netbsd-src/lib/libc/gdtoa/test/
H A DREADME19 whose sum is the desired value
23 Lines that begin with "r" specify or interrogate the desired rounding
41 internal representation of the desired number.
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/arm/
H A Dfreebsd-atomic.c101 TYPE desired) \
125 : "r" (expected), "r" (desired), "m" (*mem), \
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/arm/
H A Dfreebsd-atomic.c101 TYPE desired) \
125 : "r" (expected), "r" (desired), "m" (*mem), \
/netbsd-src/crypto/external/bsd/heimdal/dist/po/heim_com_err35224064/
H A Dheim_com_err35224064.pot184 msgid "Principal in credential cache does not match desired name"
189 msgid "No principal in keytab matches desired name"

12345678910>>...29