/third_party/mesa3d/src/util/ |
D | u_atomic.h | 77 #define p_atomic_cmpxchg(v, old, _new) \ argument 78 __sync_val_compare_and_swap((v), (old), (_new)) 79 #define p_atomic_cmpxchg_ptr(v, old, _new) p_atomic_cmpxchg(v, old, _new) argument 103 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument 104 #define p_atomic_cmpxchg_ptr(_v, _old, _new) p_atomic_cmpxchg(_v, _old, _new) argument 172 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument 173 …sizeof *(_v) == sizeof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), … 174 …sizeof *(_v) == sizeof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), … 175 …sizeof *(_v) == sizeof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), … 176 …sizeof *(_v) == sizeof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), … [all …]
|
/third_party/rust/crates/proc-macro2/src/ |
D | lib.rs | 197 fn _new(inner: imp::TokenStream) -> Self { in _new() method 213 TokenStream::_new(imp::TokenStream::new()) in new() 246 Ok(TokenStream::_new(e)) in from_str() 254 TokenStream::_new(inner.into()) in from() 268 TokenStream::_new(imp::TokenStream::from(token)) in from() 288 TokenStream::_new(streams.into_iter().collect()) in from_iter() 293 TokenStream::_new(streams.into_iter().map(|i| i.inner).collect()) in from_iter() 316 Span::_new(self.inner.span()) in span() 347 fn _new(inner: imp::SourceFile) -> Self { in _new() method 393 fn _new(inner: imp::Span) -> Self { in _new() method [all …]
|
D | extra.rs | 56 DelimSpanEnum::Compiler { join, .. } => Span::_new(imp::Span::Compiler(*join)), in join() 65 DelimSpanEnum::Compiler { open, .. } => Span::_new(imp::Span::Compiler(*open)), in open() 74 DelimSpanEnum::Compiler { close, .. } => Span::_new(imp::Span::Compiler(*close)), in close()
|
D | fallback.rs | 905 Literal::_new(format!(concat!("{}", stringify!($kind)), n)) 913 Literal::_new(n.to_string()) 919 pub(crate) fn _new(repr: String) -> Self { in _new() method 927 Literal::_new(repr.to_owned()) in from_str_unchecked() 968 Literal::_new(s) in f32_unsuffixed() 976 Literal::_new(s) in f64_unsuffixed() 1004 Literal::_new(repr) in string() 1017 Literal::_new(repr) in character() 1043 Literal::_new(escaped) in byte_string()
|
D | parse.rs | 276 let repr = crate::Literal::_new_fallback(Literal::_new(ERROR.to_owned())); in leaf_token() 303 let ident = crate::Ident::_new(crate::imp::Ident::new_unchecked( in ident_any() 315 let ident = crate::Ident::_new(crate::imp::Ident::new_raw_unchecked( in ident_any() 344 Ok((rest, Literal::_new(input.rest[..end].to_string()))) in literal() 944 let doc_ident = crate::Ident::_new(crate::imp::Ident::new_unchecked("doc", fallback_span)); in doc_comment()
|
D | wrapper.rs | 336 proc_macro::TokenTree::Group(tt) => crate::Group::_new(Group::Compiler(tt)).into(), in next() 343 o.set_span(crate::Span::_new(Span::Compiler(tt.span()))); in next() 346 proc_macro::TokenTree::Ident(s) => crate::Ident::_new(Ident::Compiler(s)).into(), in next() 347 proc_macro::TokenTree::Literal(l) => crate::Literal::_new(Literal::Compiler(l)).into(), in next() 518 crate::Span::_new(Span::Compiler(proc_span)) in from()
|
/third_party/libwebsockets/lib/core/ |
D | logs.c | 337 lws_log_use_cx_file(struct lws_log_cx *cx, int _new) in lws_log_use_cx_file() argument 341 if (_new > 0 && cx->refcount == 1) { in lws_log_use_cx_file() 354 if (_new <= 0 && cx->refcount == 0 && fd >= 0) { in lws_log_use_cx_file() 517 lwsl_refcount_cx(lws_log_cx_t *cx, int _new) in lwsl_refcount_cx() argument 537 if (_new > 0) in lwsl_refcount_cx() 545 cx->refcount_cb(cx, _new); in lwsl_refcount_cx()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
D | addr.rs | 26 path.into_with_c_str(Self::_new) in new() 30 fn _new(path: &CStr) -> io::Result<Self> { in _new() method
|
/third_party/openssl/doc/man3/ |
D | X509_dup.pod | 350 B<I<TYPE>_new>() allocates an empty object of the indicated type. 353 B<I<TYPE>_new_ex>() is similiar to B<I<TYPE>_new>() but also passes the 371 B<I<TYPE>_new>(), B<I<TYPE>_new_ex>() and B<I<TYPE>_dup>() return a pointer to
|
D | OPENSSL_LH_COMPFUNC.pod | 64 B<lh_I<TYPE>_new>() creates a new B<LHASH_OF>(B<I<TYPE>>) structure to store 79 B<lh_I<TYPE>_new>() as shown in this example: 109 htable = B<lh_I<TYPE>_new>(LHASH_HASH_FN(stuff), LHASH_COMP_FN(stuff)); 182 OPENSSL_LH_new() is the same as the B<lh_I<TYPE>_new>() except that it is not 196 B<lh_I<TYPE>_new>() and OPENSSL_LH_new() return NULL on error, otherwise a
|
/third_party/node/deps/acorn/acorn/dist/ |
D | acorn.d.ts | 185 _new: TokenType 276 _new: TokenType
|
/third_party/typescript/tests/baselines/reference/ |
D | jsDeclarationsFunctionKeywordPropExhaustive.js | 218 const _new: number; constant 219 export { _new as new };
|
/third_party/rust/crates/rustix/src/backend/libc/net/ |
D | addr.rs | 39 path.into_with_c_str(Self::_new) in new() 43 fn _new(path: &CStr) -> io::Result<Self> { in _new() method
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | tasn_typ.c | 19 sname *sname##_new(void) \
|
/third_party/openssl/crypto/asn1/ |
D | tasn_typ.c | 19 sname *sname##_new(void) \
|
/third_party/rust/crates/libc/src/unix/nto/ |
D | neutrino.rs | 1250 pub fn ClockTime(__id: ::clockid_t, _new: *const u64, __old: *mut u64) -> ::c_int; in ClockTime() 1251 pub fn ClockTime_r(__id: ::clockid_t, _new: *const u64, __old: *mut u64) -> ::c_int; in ClockTime_r() 1254 _new: *const ::_clockadjust, in ClockAdjust() 1259 _new: *const ::_clockadjust, in ClockAdjust_r() 1264 _new: *const ::_clockperiod, in ClockPeriod() 1270 _new: *const ::_clockperiod, in ClockPeriod_r()
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-logs.h | 74 typedef void (*lws_log_use_cx_t)(struct lws_log_cx *cx, int _new); 156 lws_log_use_cx_file(struct lws_log_cx *cx, int _new); 792 lwsl_refcount_cx(lws_log_cx_t *cx, int _new);
|
/third_party/openssl/include/crypto/ |
D | sparse_array.h | 26 ossl_sa_##type##_new(void) \
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
D | sparse_array.h | 26 ossl_sa_##type##_new(void) \
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/resources/ |
D | ldml2icu_supplemental.txt | 221 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/paradigmLocales[@locales="(%A… 222 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/matchVariable[@id="\$(%A)"][@… 224 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"… 225 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
|
/third_party/openssl/doc/internal/man3/ |
D | OPENSSL_SA.pod | 61 B<ossl_sa_I<TYPE>_new>() allocates a new empty sparse array. 110 B<ossl_sa_I<TYPE>_new>() returns an empty sparse array or NULL if an error
|
D | ossl_cmp_msg_create.pod | 96 Thus, the I<ctx> may be modified by this and related ossl_cmp_*_new() functions.
|
/third_party/openssl/test/ |
D | cmp_ctx_test.c | 512 TYPE *, NULL, IS_0, TYPE##_new(), TYPE##_free) 529 TYPE *, NULL, DEFAULT, TYPE##_new(), TYPE##_free) 718 IS_0, TYPE##_new(), TYPE##_free)
|
/third_party/python/Lib/ |
D | ast.py | 538 def _new(cls, *args, **kwargs): function 552 __new__ = _new 556 __new__ = _new 560 __new__ = _new 563 __new__ = _new
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | lhash.h | 123 …static ossl_unused ossl_inline LHASH_OF(type) *lh_##type##_new(unsigned long (*hfn)(const type *),…
|