/third_party/mesa3d/src/util/ |
D | u_atomic.h | 75 #define p_atomic_cmpxchg(v, old, _new) \ argument 76 __sync_val_compare_and_swap((v), (old), (_new)) 99 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument 162 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument 163 …sizeof *(_v) == sizeof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), … 164 …sizeof *(_v) == sizeof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), … 165 …sizeof *(_v) == sizeof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), … 166 …sizeof *(_v) == sizeof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), … 230 #define p_atomic_cmpxchg(v, old, _new) (__typeof(*v))( \ argument 231 …sizeof(*v) == sizeof(uint8_t) ? atomic_cas_8 ((uint8_t *)(v), (uint8_t )(old), (uint8_t )(_new))… [all …]
|
/third_party/libwebsockets/lib/core/ |
D | logs.c | 327 lws_log_use_cx_file(struct lws_log_cx *cx, int _new) in lws_log_use_cx_file() argument 331 if (_new > 0 && cx->refcount == 1) { in lws_log_use_cx_file() 344 if (_new <= 0 && cx->refcount == 0 && fd >= 0) { in lws_log_use_cx_file() 507 lwsl_refcount_cx(lws_log_cx_t *cx, int _new) in lwsl_refcount_cx() argument 512 if (_new > 0) in lwsl_refcount_cx() 520 cx->refcount_cb(cx, _new); in lwsl_refcount_cx()
|
/third_party/gstreamer/gstplugins_base/tests/examples/fft/ |
D | fftrange.c | 39 ctx = gst_fft_ ##_t_ ##_new (num_samples, FALSE); \ 82 ctx = gst_fft_ ##_t_ ##_new (num_samples, FALSE); \
|
/third_party/openssl/crypto/asn1/ |
D | tasn_typ.c | 19 sname *sname##_new(void) \
|
/third_party/typescript/tests/baselines/reference/ |
D | jsDeclarationsFunctionKeywordPropExhaustive.js | 218 const _new: number; constant 219 export { _new as new };
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-logs.h | 74 typedef void (*lws_log_use_cx_t)(struct lws_log_cx *cx, int _new); 148 lws_log_use_cx_file(struct lws_log_cx *cx, int _new); 784 lwsl_refcount_cx(lws_log_cx_t *cx, int _new);
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/resources/ |
D | ldml2icu_supplemental.txt | 216 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/paradigmLocales[@locales="(%A… 217 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/matchVariable[@id="\$(%A)"][@… 219 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"… 220 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
|
/third_party/gstreamer/gstplugins_base/ext/gl/ |
D | gltestsrc.c | 630 G_PASTE(G_PASTE(_src_unicolor_,name),_new) (GstGLTestSrc * test) \ 638 G_PASTE(G_PASTE(_src_unicolor_,name),_new), \ 798 G_PASTE(G_PASTE(_src_checkers,spacing),_new) (GstGLTestSrc * test) \ 806 G_PASTE(G_PASTE(_src_checkers,spacing),_new), \
|
/third_party/node/deps/acorn/acorn/dist/ |
D | acorn.d.ts | 147 _new: TokenType
|
D | acorn.js | 232 _new: kw("new", {beforeExpr: true, startsExpr: true}), property 2592 case types._new:
|
D | acorn.mjs | 226 _new: kw("new", {beforeExpr: true, startsExpr: true}), property 2586 case types._new:
|
/third_party/openssl/include/openssl/ |
D | safestack.h | 35 static ossl_unused ossl_inline STACK_OF(t1) *sk_##t1##_new(sk_##t1##_compfunc compare) \
|
D | lhash.h | 123 …static ossl_unused ossl_inline LHASH_OF(type) *lh_##type##_new(unsigned long (*hfn)(const type *),…
|
D | asn1t.h | 811 pre stname *fname##_new(void) \ 821 stname *fname##_new(void) \
|
D | asn1.h | 248 type *name##_new(void); \
|
/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/gstreamer/gstreamer/tests/check/generic/ |
D | sinks.c | 33 GstState _old, _new, _pending; in pop_state_change_message() local 39 gst_message_parse_state_changed (message, &_old, &_new, &_pending); in pop_state_change_message() 44 fail_unless (new == _new, "Unexpected new state"); in pop_state_change_message()
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | mpg123audiodec.c | 126 ctx = gst_fft_##ffttag2##_new (num_samples, FALSE); \
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | audioresample.c | 1118 inctx = gst_fft_##ffttag2##_new (insamples, FALSE); \ 1119 outctx = gst_fft_##ffttag2##_new (outsamples, FALSE); \
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | porting-to-1.0.txt | 455 access to the buffer data with _map() and then use the _new() functions. 458 removed, get access to the buffer data and then use the _new() functions.
|
/third_party/libwebsockets/READMEs/ |
D | README.logging.md | 197 typedef void (*lws_log_use_cx_t)(struct lws_log_cx *cx, int _new);
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 3 .. _new-types-topics:
|
/third_party/python/Doc/whatsnew/ |
D | 2.6.rst | 328 .. _new-26-context-managers: 428 .. _new-module-contextlib: 1749 .. _new-26-interpreter:
|
D | 3.3.rst | 1090 .. _new-decimal: 1189 .. _new-email:
|
D | 3.10.rst | 707 .. _new-feat-related-type-hints:
|